{
  "contractName": "IFundsDistributionToken",
  "abi": [
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "internalType": "address",
          "name": "by",
          "type": "address"
        },
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "fundsDistributed",
          "type": "uint256"
        }
      ],
      "name": "FundsDistributed",
      "type": "event"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "internalType": "address",
          "name": "by",
          "type": "address"
        },
        {
          "indexed": false,
          "internalType": "uint256",
          "name": "fundsWithdrawn",
          "type": "uint256"
        }
      ],
      "name": "FundsWithdrawn",
      "type": "event"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "owner",
          "type": "address"
        }
      ],
      "name": "withdrawableFundsOf",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "withdrawFunds",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.6.11+commit.5ef660b1\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"by\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fundsDistributed\",\"type\":\"uint256\"}],\"name\":\"FundsDistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"by\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fundsWithdrawn\",\"type\":\"uint256\"}],\"name\":\"FundsWithdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"withdrawFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdrawableFundsOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"FundsDistributed(address,uint256)\":{\"details\":\"This event emits when new funds are distributed\",\"params\":{\"by\":\"the address of the sender who distributed funds\",\"fundsDistributed\":\"the amount of funds received for distribution\"}},\"FundsWithdrawn(address,uint256)\":{\"details\":\"This event emits when distributed funds are withdrawn by a token holder.\",\"params\":{\"by\":\"the address of the receiver of funds\",\"fundsWithdrawn\":\"the amount of funds that were withdrawn\"}}},\"kind\":\"dev\",\"methods\":{\"withdrawFunds()\":{\"details\":\"Withdraws all available funds for a FundsDistributionToken holder.\"},\"withdrawableFundsOf(address)\":{\"details\":\"Returns the total amount of funds a given address is able to withdraw currently.\",\"params\":{\"owner\":\"Address of FundsDistributionToken holder\"},\"returns\":{\"_0\":\"A uint256 representing the available funds for a given account\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"/Users/johannes/Documents/dev/actus-protocol/ap-monorepo/packages/ap-contracts/contracts/FDT/IFundsDistributionToken.sol\":\"IFundsDistributionToken\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"/Users/johannes/Documents/dev/actus-protocol/ap-monorepo/packages/ap-contracts/contracts/FDT/IFundsDistributionToken.sol\":{\"keccak256\":\"0x357c01314146027ec6d250d5b29824bd795e00578b0b888b8c8063d1f49bfec8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4ba4486b5f8d60500cc1f8af3c9859c4bd0ee07a279f94b67ba1393391e54154\",\"dweb:/ipfs/QmNxYYnyPLh2vNJLzoPAVhHBxvuczBo24GDmRS61nD4ABv\"]}},\"version\":1}",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "immutableReferences": {},
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "// \"SPDX-License-Identifier: Apache-2.0\"\npragma solidity ^0.6.11;\n\n\ninterface IFundsDistributionToken {\n\n    /**\n     * @dev Returns the total amount of funds a given address is able to withdraw currently.\n     * @param owner Address of FundsDistributionToken holder\n     * @return A uint256 representing the available funds for a given account\n     */\n    function withdrawableFundsOf(address owner) external view returns (uint256);\n\n    /**\n     * @dev Withdraws all available funds for a FundsDistributionToken holder.\n     */\n    function withdrawFunds() external;\n\n    /**\n     * @dev This event emits when new funds are distributed\n     * @param by the address of the sender who distributed funds\n     * @param fundsDistributed the amount of funds received for distribution\n     */\n    event FundsDistributed(address indexed by, uint256 fundsDistributed);\n\n    /**\n     * @dev This event emits when distributed funds are withdrawn by a token holder.\n     * @param by the address of the receiver of funds\n     * @param fundsWithdrawn the amount of funds that were withdrawn\n     */\n    event FundsWithdrawn(address indexed by, uint256 fundsWithdrawn);\n}\n",
  "sourcePath": "/Users/johannes/Documents/dev/actus-protocol/ap-monorepo/packages/ap-contracts/contracts/FDT/IFundsDistributionToken.sol",
  "ast": {
    "absolutePath": "/Users/johannes/Documents/dev/actus-protocol/ap-monorepo/packages/ap-contracts/contracts/FDT/IFundsDistributionToken.sol",
    "exportedSymbols": {
      "IFundsDistributionToken": [
        18343
      ]
    },
    "id": 18344,
    "license": "Apache-2.0",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 18316,
        "literals": [
          "solidity",
          "^",
          "0.6",
          ".11"
        ],
        "nodeType": "PragmaDirective",
        "src": "41:24:49"
      },
      {
        "abstract": false,
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 18343,
        "linearizedBaseContracts": [
          18343
        ],
        "name": "IFundsDistributionToken",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": {
              "id": 18317,
              "nodeType": "StructuredDocumentation",
              "src": "109:243:49",
              "text": " @dev Returns the total amount of funds a given address is able to withdraw currently.\n @param owner Address of FundsDistributionToken holder\n @return A uint256 representing the available funds for a given account"
            },
            "functionSelector": "443bb293",
            "id": 18324,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "withdrawableFundsOf",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 18320,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18319,
                  "mutability": "mutable",
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18324,
                  "src": "386:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18318,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "386:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "385:15:49"
            },
            "returnParameters": {
              "id": 18323,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18322,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18324,
                  "src": "424:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18321,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "424:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "423:9:49"
            },
            "scope": 18343,
            "src": "357:76:49",
            "stateMutability": "view",
            "virtual": false,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": {
              "id": 18325,
              "nodeType": "StructuredDocumentation",
              "src": "439:90:49",
              "text": " @dev Withdraws all available funds for a FundsDistributionToken holder."
            },
            "functionSelector": "24600fc3",
            "id": 18328,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "withdrawFunds",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 18326,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "556:2:49"
            },
            "returnParameters": {
              "id": 18327,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "567:0:49"
            },
            "scope": 18343,
            "src": "534:34:49",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "external"
          },
          {
            "anonymous": false,
            "documentation": {
              "id": 18329,
              "nodeType": "StructuredDocumentation",
              "src": "574:213:49",
              "text": " @dev This event emits when new funds are distributed\n @param by the address of the sender who distributed funds\n @param fundsDistributed the amount of funds received for distribution"
            },
            "id": 18335,
            "name": "FundsDistributed",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 18334,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18331,
                  "indexed": true,
                  "mutability": "mutable",
                  "name": "by",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18335,
                  "src": "815:18:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18330,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "815:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18333,
                  "indexed": false,
                  "mutability": "mutable",
                  "name": "fundsDistributed",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18335,
                  "src": "835:24:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18332,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "835:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "814:46:49"
            },
            "src": "792:69:49"
          },
          {
            "anonymous": false,
            "documentation": {
              "id": 18336,
              "nodeType": "StructuredDocumentation",
              "src": "867:219:49",
              "text": " @dev This event emits when distributed funds are withdrawn by a token holder.\n @param by the address of the receiver of funds\n @param fundsWithdrawn the amount of funds that were withdrawn"
            },
            "id": 18342,
            "name": "FundsWithdrawn",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 18341,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18338,
                  "indexed": true,
                  "mutability": "mutable",
                  "name": "by",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18342,
                  "src": "1112:18:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18337,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1112:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18340,
                  "indexed": false,
                  "mutability": "mutable",
                  "name": "fundsWithdrawn",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18342,
                  "src": "1132:22:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18339,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1132:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1111:44:49"
            },
            "src": "1091:65:49"
          }
        ],
        "scope": 18344,
        "src": "68:1090:49"
      }
    ],
    "src": "41:1118:49"
  },
  "legacyAST": {
    "absolutePath": "/Users/johannes/Documents/dev/actus-protocol/ap-monorepo/packages/ap-contracts/contracts/FDT/IFundsDistributionToken.sol",
    "exportedSymbols": {
      "IFundsDistributionToken": [
        18343
      ]
    },
    "id": 18344,
    "license": "Apache-2.0",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 18316,
        "literals": [
          "solidity",
          "^",
          "0.6",
          ".11"
        ],
        "nodeType": "PragmaDirective",
        "src": "41:24:49"
      },
      {
        "abstract": false,
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 18343,
        "linearizedBaseContracts": [
          18343
        ],
        "name": "IFundsDistributionToken",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": {
              "id": 18317,
              "nodeType": "StructuredDocumentation",
              "src": "109:243:49",
              "text": " @dev Returns the total amount of funds a given address is able to withdraw currently.\n @param owner Address of FundsDistributionToken holder\n @return A uint256 representing the available funds for a given account"
            },
            "functionSelector": "443bb293",
            "id": 18324,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "withdrawableFundsOf",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 18320,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18319,
                  "mutability": "mutable",
                  "name": "owner",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18324,
                  "src": "386:13:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18318,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "386:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "385:15:49"
            },
            "returnParameters": {
              "id": 18323,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18322,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18324,
                  "src": "424:7:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18321,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "424:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "423:9:49"
            },
            "scope": 18343,
            "src": "357:76:49",
            "stateMutability": "view",
            "virtual": false,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": {
              "id": 18325,
              "nodeType": "StructuredDocumentation",
              "src": "439:90:49",
              "text": " @dev Withdraws all available funds for a FundsDistributionToken holder."
            },
            "functionSelector": "24600fc3",
            "id": 18328,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "withdrawFunds",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 18326,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "556:2:49"
            },
            "returnParameters": {
              "id": 18327,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "567:0:49"
            },
            "scope": 18343,
            "src": "534:34:49",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "external"
          },
          {
            "anonymous": false,
            "documentation": {
              "id": 18329,
              "nodeType": "StructuredDocumentation",
              "src": "574:213:49",
              "text": " @dev This event emits when new funds are distributed\n @param by the address of the sender who distributed funds\n @param fundsDistributed the amount of funds received for distribution"
            },
            "id": 18335,
            "name": "FundsDistributed",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 18334,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18331,
                  "indexed": true,
                  "mutability": "mutable",
                  "name": "by",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18335,
                  "src": "815:18:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18330,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "815:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18333,
                  "indexed": false,
                  "mutability": "mutable",
                  "name": "fundsDistributed",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18335,
                  "src": "835:24:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18332,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "835:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "814:46:49"
            },
            "src": "792:69:49"
          },
          {
            "anonymous": false,
            "documentation": {
              "id": 18336,
              "nodeType": "StructuredDocumentation",
              "src": "867:219:49",
              "text": " @dev This event emits when distributed funds are withdrawn by a token holder.\n @param by the address of the receiver of funds\n @param fundsWithdrawn the amount of funds that were withdrawn"
            },
            "id": 18342,
            "name": "FundsWithdrawn",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 18341,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 18338,
                  "indexed": true,
                  "mutability": "mutable",
                  "name": "by",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18342,
                  "src": "1112:18:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 18337,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1112:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 18340,
                  "indexed": false,
                  "mutability": "mutable",
                  "name": "fundsWithdrawn",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 18342,
                  "src": "1132:22:49",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 18339,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1132:7:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1111:44:49"
            },
            "src": "1091:65:49"
          }
        ],
        "scope": 18344,
        "src": "68:1090:49"
      }
    ],
    "src": "41:1118:49"
  },
  "compiler": {
    "name": "solc",
    "version": "0.6.11+commit.5ef660b1.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-08-12T09:47:18.080Z",
  "devdoc": {
    "events": {
      "FundsDistributed(address,uint256)": {
        "details": "This event emits when new funds are distributed",
        "params": {
          "by": "the address of the sender who distributed funds",
          "fundsDistributed": "the amount of funds received for distribution"
        }
      },
      "FundsWithdrawn(address,uint256)": {
        "details": "This event emits when distributed funds are withdrawn by a token holder.",
        "params": {
          "by": "the address of the receiver of funds",
          "fundsWithdrawn": "the amount of funds that were withdrawn"
        }
      }
    },
    "kind": "dev",
    "methods": {
      "withdrawFunds()": {
        "details": "Withdraws all available funds for a FundsDistributionToken holder."
      },
      "withdrawableFundsOf(address)": {
        "details": "Returns the total amount of funds a given address is able to withdraw currently.",
        "params": {
          "owner": "Address of FundsDistributionToken holder"
        },
        "returns": {
          "_0": "A uint256 representing the available funds for a given account"
        }
      }
    },
    "version": 1
  },
  "userdoc": {
    "kind": "user",
    "methods": {},
    "version": 1
  }
}