{
  "contractName": "IPermissionManager",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "getInitFunction",
      "outputs": [
        {
          "name": "",
          "type": "bytes4"
        }
      ],
      "payable": false,
      "stateMutability": "pure",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_amount",
          "type": "uint256"
        }
      ],
      "name": "takeFee",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "polyToken",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "securityToken",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "getPermissions",
      "outputs": [
        {
          "name": "",
          "type": "bytes32[]"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "factory",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "FEE_ADMIN",
      "outputs": [
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_delegate",
          "type": "address"
        },
        {
          "name": "_module",
          "type": "address"
        },
        {
          "name": "_perm",
          "type": "bytes32"
        }
      ],
      "name": "checkPermission",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_delegate",
          "type": "address"
        },
        {
          "name": "_module",
          "type": "address"
        },
        {
          "name": "_perm",
          "type": "bytes32"
        },
        {
          "name": "_valid",
          "type": "bool"
        }
      ],
      "name": "changePermission",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_delegate",
          "type": "address"
        }
      ],
      "name": "getDelegateDetails",
      "outputs": [
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.24;\n\nimport \"../../interfaces/IModule.sol\";\n\n/**\n * @title Interface to be implemented by all permission manager modules\n */\ncontract IPermissionManager is IModule {\n\n    function checkPermission(address _delegate, address _module, bytes32 _perm) public view returns(bool);\n\n    function changePermission(address _delegate, address _module, bytes32 _perm, bool _valid) public returns(bool);\n\n    function getDelegateDetails(address _delegate) public view returns(bytes32);\n\n}\n",
  "sourcePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/PermissionManager/IPermissionManager.sol",
  "ast": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/PermissionManager/IPermissionManager.sol",
    "exportedSymbols": {
      "IPermissionManager": [
        13324
      ]
    },
    "id": 13325,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 13289,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:36"
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/IModule.sol",
        "file": "../../interfaces/IModule.sol",
        "id": 13290,
        "nodeType": "ImportDirective",
        "scope": 13325,
        "sourceUnit": 9718,
        "src": "26:38:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 13291,
              "name": "IModule",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9717,
              "src": "177:7:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IModule_$9717",
                "typeString": "contract IModule"
              }
            },
            "id": 13292,
            "nodeType": "InheritanceSpecifier",
            "src": "177:7:36"
          }
        ],
        "contractDependencies": [
          9717
        ],
        "contractKind": "contract",
        "documentation": "@title Interface to be implemented by all permission manager modules",
        "fullyImplemented": false,
        "id": 13324,
        "linearizedBaseContracts": [
          13324,
          9717
        ],
        "name": "IPermissionManager",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 13303,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "checkPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13294,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "217:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13293,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "217:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13296,
                  "name": "_module",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "236:15:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13295,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "236:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13298,
                  "name": "_perm",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "253:13:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13297,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "253:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "216:51:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13302,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13301,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "288:4:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13300,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "287:6:36"
            },
            "scope": 13324,
            "src": "192:102:36",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 13316,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "changePermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13312,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13305,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "326:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13304,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "326:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13307,
                  "name": "_module",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "345:15:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13306,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "345:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13309,
                  "name": "_perm",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "362:13:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13308,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "362:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13311,
                  "name": "_valid",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "377:11:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13310,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "377:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "325:64:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13315,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13314,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "405:4:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13313,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "405:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "404:6:36"
            },
            "scope": 13324,
            "src": "300:111:36",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 13323,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getDelegateDetails",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13319,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13318,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13323,
                  "src": "445:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13317,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "445:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "444:19:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13322,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13321,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13323,
                  "src": "484:7:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13320,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "484:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "483:9:36"
            },
            "scope": 13324,
            "src": "417:76:36",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 13325,
        "src": "146:350:36"
      }
    ],
    "src": "0:497:36"
  },
  "legacyAST": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/modules/PermissionManager/IPermissionManager.sol",
    "exportedSymbols": {
      "IPermissionManager": [
        13324
      ]
    },
    "id": 13325,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 13289,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:36"
      },
      {
        "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/IModule.sol",
        "file": "../../interfaces/IModule.sol",
        "id": 13290,
        "nodeType": "ImportDirective",
        "scope": 13325,
        "sourceUnit": 9718,
        "src": "26:38:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 13291,
              "name": "IModule",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 9717,
              "src": "177:7:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_IModule_$9717",
                "typeString": "contract IModule"
              }
            },
            "id": 13292,
            "nodeType": "InheritanceSpecifier",
            "src": "177:7:36"
          }
        ],
        "contractDependencies": [
          9717
        ],
        "contractKind": "contract",
        "documentation": "@title Interface to be implemented by all permission manager modules",
        "fullyImplemented": false,
        "id": 13324,
        "linearizedBaseContracts": [
          13324,
          9717
        ],
        "name": "IPermissionManager",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 13303,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "checkPermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13294,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "217:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13293,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "217:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13296,
                  "name": "_module",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "236:15:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13295,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "236:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13298,
                  "name": "_perm",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "253:13:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13297,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "253:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "216:51:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13302,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13301,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13303,
                  "src": "288:4:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13300,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "288:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "287:6:36"
            },
            "scope": 13324,
            "src": "192:102:36",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 13316,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "changePermission",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13312,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13305,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "326:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13304,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "326:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13307,
                  "name": "_module",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "345:15:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13306,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "345:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13309,
                  "name": "_perm",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "362:13:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13308,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "362:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13311,
                  "name": "_valid",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "377:11:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13310,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "377:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "325:64:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13315,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13314,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13316,
                  "src": "405:4:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 13313,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "405:4:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "404:6:36"
            },
            "scope": 13324,
            "src": "300:111:36",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 13323,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getDelegateDetails",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 13319,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13318,
                  "name": "_delegate",
                  "nodeType": "VariableDeclaration",
                  "scope": 13323,
                  "src": "445:17:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13317,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "445:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "444:19:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 13322,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 13321,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 13323,
                  "src": "484:7:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13320,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "484:7:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "483:9:36"
            },
            "scope": 13324,
            "src": "417:76:36",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 13325,
        "src": "146:350:36"
      }
    ],
    "src": "0:497:36"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-08-21T09:48:12.454Z"
}