{
  "contractName": "ILendingPool",
  "abi": [
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "_reserve",
          "type": "address"
        }
      ],
      "name": "getReserveData",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "totalLiquidity",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "availableLiquidity",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "totalBorrowsStable",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "totalBorrowsVariable",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "liquidityRate",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "variableBorrowRate",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "stableBorrowRate",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "averageStableBorrowRate",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "utilizationRate",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "liquidityIndex",
          "type": "uint256"
        },
        {
          "internalType": "uint256",
          "name": "variableBorrowIndex",
          "type": "uint256"
        },
        {
          "internalType": "address",
          "name": "aTokenAddress",
          "type": "address"
        },
        {
          "internalType": "uint40",
          "name": "lastUpdateTimestamp",
          "type": "uint40"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "getReserves",
      "outputs": [
        {
          "internalType": "address[]",
          "name": "",
          "type": "address[]"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "_reserve",
          "type": "address"
        },
        {
          "internalType": "uint256",
          "name": "_amount",
          "type": "uint256"
        },
        {
          "internalType": "uint16",
          "name": "_referralCode",
          "type": "uint16"
        }
      ],
      "name": "deposit",
      "outputs": [],
      "stateMutability": "payable",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.6.8+commit.0bbfe453\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_reserve\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"uint16\",\"name\":\"_referralCode\",\"type\":\"uint16\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_reserve\",\"type\":\"address\"}],\"name\":\"getReserveData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalLiquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"availableLiquidity\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalBorrowsStable\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalBorrowsVariable\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"liquidityRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"variableBorrowRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stableBorrowRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"averageStableBorrowRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"utilizationRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"liquidityIndex\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"variableBorrowIndex\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"aTokenAddress\",\"type\":\"address\"},{\"internalType\":\"uint40\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint40\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getReserves\",\"outputs\":[{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"project:/contracts/interfaces/aave/ILendingPool.sol\":\"ILendingPool\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":10000},\"remappings\":[]},\"sources\":{\"project:/contracts/interfaces/aave/ILendingPool.sol\":{\"keccak256\":\"0x76704334081c8b6f39041a1d45ecfeee613aa1c44be7d9e91f3470a723172ef3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2d5acefb9157129cdb7bd3c5fe2f6ad5e4ea0336a303149a5f4e4e86313aed5e\",\"dweb:/ipfs/QmcQpmbq2rJjykYkGZcwkY5Z8mLjcY62yaihgwbqHgMTuC\"]}},\"version\":1}",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "immutableReferences": {},
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "// SPDX-License-Identifier: MIT\npragma solidity 0.6.8;\n\ninterface ILendingPool {\n\tfunction getReserveData(address _reserve)\n\t\texternal\n\t\tview\n\t\treturns (\n\t\t\t\tuint256 totalLiquidity,\n\t\t\t\tuint256 availableLiquidity,\n\t\t\t\tuint256 totalBorrowsStable,\n\t\t\t\tuint256 totalBorrowsVariable,\n\t\t\t\tuint256 liquidityRate,\n\t\t\t\tuint256 variableBorrowRate,\n\t\t\t\tuint256 stableBorrowRate,\n\t\t\t\tuint256 averageStableBorrowRate,\n\t\t\t\tuint256 utilizationRate,\n\t\t\t\tuint256 liquidityIndex,\n\t\t\t\tuint256 variableBorrowIndex,\n\t\t\t\taddress aTokenAddress,\n\t\t\t\tuint40 lastUpdateTimestamp\n\t\t);\n\n\tfunction getReserves() external view returns (address[] memory);\n\n\tfunction deposit(address _reserve, uint256 _amount, uint16 _referralCode) external payable;\n}\n",
  "sourcePath": "/home/thezviad_gmail_com/src/swappa/contracts/interfaces/aave/ILendingPool.sol",
  "ast": {
    "absolutePath": "project:/contracts/interfaces/aave/ILendingPool.sol",
    "exportedSymbols": {
      "ILendingPool": [
        1139
      ]
    },
    "id": 1140,
    "license": "MIT",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 1092,
        "literals": [
          "solidity",
          "0.6",
          ".8"
        ],
        "nodeType": "PragmaDirective",
        "src": "32:22:8"
      },
      {
        "abstract": false,
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 1139,
        "linearizedBaseContracts": [
          1139
        ],
        "name": "ILendingPool",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "functionSelector": "35ea6a75",
            "id": 1123,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "getReserveData",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 1095,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1094,
                  "mutability": "mutable",
                  "name": "_reserve",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "106:16:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1093,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "106:7:8",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "105:18:8"
            },
            "returnParameters": {
              "id": 1122,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1097,
                  "mutability": "mutable",
                  "name": "totalLiquidity",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "158:22:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1096,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "158:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1099,
                  "mutability": "mutable",
                  "name": "availableLiquidity",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "186:26:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1098,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "186:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1101,
                  "mutability": "mutable",
                  "name": "totalBorrowsStable",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "218:26:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1100,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "218:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1103,
                  "mutability": "mutable",
                  "name": "totalBorrowsVariable",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "250:28:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1102,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "250:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1105,
                  "mutability": "mutable",
                  "name": "liquidityRate",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "284:21:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1104,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "284:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1107,
                  "mutability": "mutable",
                  "name": "variableBorrowRate",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "311:26:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1106,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "311:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1109,
                  "mutability": "mutable",
                  "name": "stableBorrowRate",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "343:24:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1108,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "343:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1111,
                  "mutability": "mutable",
                  "name": "averageStableBorrowRate",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "373:31:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1110,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "373:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1113,
                  "mutability": "mutable",
                  "name": "utilizationRate",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "410:23:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1112,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "410:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1115,
                  "mutability": "mutable",
                  "name": "liquidityIndex",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "439:22:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1114,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "439:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1117,
                  "mutability": "mutable",
                  "name": "variableBorrowIndex",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "467:27:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1116,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "467:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1119,
                  "mutability": "mutable",
                  "name": "aTokenAddress",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "500:21:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1118,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "500:7:8",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1121,
                  "mutability": "mutable",
                  "name": "lastUpdateTimestamp",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1123,
                  "src": "527:26:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint40",
                    "typeString": "uint40"
                  },
                  "typeName": {
                    "id": 1120,
                    "name": "uint40",
                    "nodeType": "ElementaryTypeName",
                    "src": "527:6:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint40",
                      "typeString": "uint40"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "152:405:8"
            },
            "scope": 1139,
            "src": "82:476:8",
            "stateMutability": "view",
            "virtual": false,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "functionSelector": "0902f1ac",
            "id": 1129,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "getReserves",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 1124,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "581:2:8"
            },
            "returnParameters": {
              "id": 1128,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1127,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1129,
                  "src": "607:16:8",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                    "typeString": "address[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 1125,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "607:7:8",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "id": 1126,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "607:9:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                      "typeString": "address[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "606:18:8"
            },
            "scope": 1139,
            "src": "561:64:8",
            "stateMutability": "view",
            "virtual": false,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "functionSelector": "d2d0e066",
            "id": 1138,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "deposit",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 1136,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1131,
                  "mutability": "mutable",
                  "name": "_reserve",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1138,
                  "src": "645:16:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1130,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "645:7:8",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1133,
                  "mutability": "mutable",
                  "name": "_amount",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1138,
                  "src": "663:15:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 1132,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "663:7:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1135,
                  "mutability": "mutable",
                  "name": "_referralCode",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 1138,
                  "src": "680:20:8",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 1134,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "680:6:8",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "644:57:8"
            },
            "returnParameters": {
              "id": 1137,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "718:0:8"
            },
            "scope": 1139,
            "src": "628:91:8",
            "stateMutability": "payable",
            "virtual": false,
            "visibility": "external"
          }
        ],
        "scope": 1140,
        "src": "56:665:8"
      }
    ],
    "src": "32:690:8"
  },
  "legacyAST": {
    "attributes": {
      "absolutePath": "project:/contracts/interfaces/aave/ILendingPool.sol",
      "exportedSymbols": {
        "ILendingPool": [
          1139
        ]
      },
      "license": "MIT"
    },
    "children": [
      {
        "attributes": {
          "literals": [
            "solidity",
            "0.6",
            ".8"
          ]
        },
        "id": 1092,
        "name": "PragmaDirective",
        "src": "32:22:8"
      },
      {
        "attributes": {
          "abstract": false,
          "baseContracts": [
            null
          ],
          "contractDependencies": [
            null
          ],
          "contractKind": "interface",
          "documentation": null,
          "fullyImplemented": false,
          "linearizedBaseContracts": [
            1139
          ],
          "name": "ILendingPool",
          "scope": 1140
        },
        "children": [
          {
            "attributes": {
              "body": null,
              "documentation": null,
              "functionSelector": "35ea6a75",
              "implemented": false,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "getReserveData",
              "overrides": null,
              "scope": 1139,
              "stateMutability": "view",
              "virtual": false,
              "visibility": "external"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "_reserve",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "stateMutability": "nonpayable",
                          "type": "address"
                        },
                        "id": 1093,
                        "name": "ElementaryTypeName",
                        "src": "106:7:8"
                      }
                    ],
                    "id": 1094,
                    "name": "VariableDeclaration",
                    "src": "106:16:8"
                  }
                ],
                "id": 1095,
                "name": "ParameterList",
                "src": "105:18:8"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "totalLiquidity",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1096,
                        "name": "ElementaryTypeName",
                        "src": "158:7:8"
                      }
                    ],
                    "id": 1097,
                    "name": "VariableDeclaration",
                    "src": "158:22:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "availableLiquidity",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1098,
                        "name": "ElementaryTypeName",
                        "src": "186:7:8"
                      }
                    ],
                    "id": 1099,
                    "name": "VariableDeclaration",
                    "src": "186:26:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "totalBorrowsStable",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1100,
                        "name": "ElementaryTypeName",
                        "src": "218:7:8"
                      }
                    ],
                    "id": 1101,
                    "name": "VariableDeclaration",
                    "src": "218:26:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "totalBorrowsVariable",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1102,
                        "name": "ElementaryTypeName",
                        "src": "250:7:8"
                      }
                    ],
                    "id": 1103,
                    "name": "VariableDeclaration",
                    "src": "250:28:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "liquidityRate",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1104,
                        "name": "ElementaryTypeName",
                        "src": "284:7:8"
                      }
                    ],
                    "id": 1105,
                    "name": "VariableDeclaration",
                    "src": "284:21:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "variableBorrowRate",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1106,
                        "name": "ElementaryTypeName",
                        "src": "311:7:8"
                      }
                    ],
                    "id": 1107,
                    "name": "VariableDeclaration",
                    "src": "311:26:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "stableBorrowRate",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1108,
                        "name": "ElementaryTypeName",
                        "src": "343:7:8"
                      }
                    ],
                    "id": 1109,
                    "name": "VariableDeclaration",
                    "src": "343:24:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "averageStableBorrowRate",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1110,
                        "name": "ElementaryTypeName",
                        "src": "373:7:8"
                      }
                    ],
                    "id": 1111,
                    "name": "VariableDeclaration",
                    "src": "373:31:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "utilizationRate",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1112,
                        "name": "ElementaryTypeName",
                        "src": "410:7:8"
                      }
                    ],
                    "id": 1113,
                    "name": "VariableDeclaration",
                    "src": "410:23:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "liquidityIndex",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1114,
                        "name": "ElementaryTypeName",
                        "src": "439:7:8"
                      }
                    ],
                    "id": 1115,
                    "name": "VariableDeclaration",
                    "src": "439:22:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "variableBorrowIndex",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1116,
                        "name": "ElementaryTypeName",
                        "src": "467:7:8"
                      }
                    ],
                    "id": 1117,
                    "name": "VariableDeclaration",
                    "src": "467:27:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "aTokenAddress",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "stateMutability": "nonpayable",
                          "type": "address"
                        },
                        "id": 1118,
                        "name": "ElementaryTypeName",
                        "src": "500:7:8"
                      }
                    ],
                    "id": 1119,
                    "name": "VariableDeclaration",
                    "src": "500:21:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "lastUpdateTimestamp",
                      "overrides": null,
                      "scope": 1123,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint40",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint40",
                          "type": "uint40"
                        },
                        "id": 1120,
                        "name": "ElementaryTypeName",
                        "src": "527:6:8"
                      }
                    ],
                    "id": 1121,
                    "name": "VariableDeclaration",
                    "src": "527:26:8"
                  }
                ],
                "id": 1122,
                "name": "ParameterList",
                "src": "152:405:8"
              }
            ],
            "id": 1123,
            "name": "FunctionDefinition",
            "src": "82:476:8"
          },
          {
            "attributes": {
              "body": null,
              "documentation": null,
              "functionSelector": "0902f1ac",
              "implemented": false,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "getReserves",
              "overrides": null,
              "scope": 1139,
              "stateMutability": "view",
              "virtual": false,
              "visibility": "external"
            },
            "children": [
              {
                "attributes": {
                  "parameters": [
                    null
                  ]
                },
                "children": [],
                "id": 1124,
                "name": "ParameterList",
                "src": "581:2:8"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 1129,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "address[]",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "length": null,
                          "type": "address[]"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "address",
                              "stateMutability": "nonpayable",
                              "type": "address"
                            },
                            "id": 1125,
                            "name": "ElementaryTypeName",
                            "src": "607:7:8"
                          }
                        ],
                        "id": 1126,
                        "name": "ArrayTypeName",
                        "src": "607:9:8"
                      }
                    ],
                    "id": 1127,
                    "name": "VariableDeclaration",
                    "src": "607:16:8"
                  }
                ],
                "id": 1128,
                "name": "ParameterList",
                "src": "606:18:8"
              }
            ],
            "id": 1129,
            "name": "FunctionDefinition",
            "src": "561:64:8"
          },
          {
            "attributes": {
              "body": null,
              "documentation": null,
              "functionSelector": "d2d0e066",
              "implemented": false,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "deposit",
              "overrides": null,
              "scope": 1139,
              "stateMutability": "payable",
              "virtual": false,
              "visibility": "external"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "_reserve",
                      "overrides": null,
                      "scope": 1138,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "stateMutability": "nonpayable",
                          "type": "address"
                        },
                        "id": 1130,
                        "name": "ElementaryTypeName",
                        "src": "645:7:8"
                      }
                    ],
                    "id": 1131,
                    "name": "VariableDeclaration",
                    "src": "645:16:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "_amount",
                      "overrides": null,
                      "scope": 1138,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 1132,
                        "name": "ElementaryTypeName",
                        "src": "663:7:8"
                      }
                    ],
                    "id": 1133,
                    "name": "VariableDeclaration",
                    "src": "663:15:8"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "_referralCode",
                      "overrides": null,
                      "scope": 1138,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint16",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint16",
                          "type": "uint16"
                        },
                        "id": 1134,
                        "name": "ElementaryTypeName",
                        "src": "680:6:8"
                      }
                    ],
                    "id": 1135,
                    "name": "VariableDeclaration",
                    "src": "680:20:8"
                  }
                ],
                "id": 1136,
                "name": "ParameterList",
                "src": "644:57:8"
              },
              {
                "attributes": {
                  "parameters": [
                    null
                  ]
                },
                "children": [],
                "id": 1137,
                "name": "ParameterList",
                "src": "718:0:8"
              }
            ],
            "id": 1138,
            "name": "FunctionDefinition",
            "src": "628:91:8"
          }
        ],
        "id": 1139,
        "name": "ContractDefinition",
        "src": "56:665:8"
      }
    ],
    "id": 1140,
    "name": "SourceUnit",
    "src": "32:690:8"
  },
  "compiler": {
    "name": "solc",
    "version": "0.6.8+commit.0bbfe453.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.4.16",
  "updatedAt": "2025-02-07T17:50:42.765Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}