{
  "contractName": "ERC20Basic",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "totalSupply",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "who",
          "type": "address"
        }
      ],
      "name": "balanceOf",
      "outputs": [
        {
          "name": "",
          "type": "uint256"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "to",
          "type": "address"
        },
        {
          "name": "value",
          "type": "uint256"
        }
      ],
      "name": "transfer",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "from",
          "type": "address"
        },
        {
          "indexed": true,
          "name": "to",
          "type": "address"
        },
        {
          "indexed": false,
          "name": "value",
          "type": "uint256"
        }
      ],
      "name": "Transfer",
      "type": "event"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.11;\n\n\n/**\n * @title ERC20Basic\n * @dev Simpler version of ERC20 interface\n * @dev see https://github.com/ethereum/EIPs/issues/179\n */\ncontract ERC20Basic {\n  function totalSupply() public view returns (uint256);\n  function balanceOf(address who) public constant returns (uint256);\n  function transfer(address to, uint256 value) public returns (bool);\n  event Transfer(address indexed from, address indexed to, uint256 value);\n}\n",
  "sourcePath": "@aragon/os/contracts/lib/zeppelin/token/ERC20Basic.sol",
  "ast": {
    "attributes": {
      "absolutePath": "@aragon/os/contracts/lib/zeppelin/token/ERC20Basic.sol",
      "exportedSymbols": {
        "ERC20Basic": [
          12332
        ]
      }
    },
    "children": [
      {
        "attributes": {
          "literals": [
            "solidity",
            "^",
            "0.4",
            ".11"
          ]
        },
        "id": 12302,
        "name": "PragmaDirective",
        "src": "0:24:57"
      },
      {
        "attributes": {
          "baseContracts": [
            null
          ],
          "contractDependencies": [
            null
          ],
          "contractKind": "contract",
          "documentation": "@title ERC20Basic\n@dev Simpler version of ERC20 interface\n@dev see https://github.com/ethereum/EIPs/issues/179",
          "fullyImplemented": false,
          "linearizedBaseContracts": [
            12332
          ],
          "name": "ERC20Basic",
          "scope": 12333
        },
        "children": [
          {
            "attributes": {
              "body": null,
              "constant": true,
              "implemented": false,
              "isConstructor": false,
              "modifiers": [
                null
              ],
              "name": "totalSupply",
              "payable": false,
              "scope": 12332,
              "stateMutability": "view",
              "superFunction": null,
              "visibility": "public"
            },
            "children": [
              {
                "attributes": {
                  "parameters": [
                    null
                  ]
                },
                "children": [],
                "id": 12303,
                "name": "ParameterList",
                "src": "199:2:57"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "name": "",
                      "scope": 12307,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 12304,
                        "name": "ElementaryTypeName",
                        "src": "223:7:57"
                      }
                    ],
                    "id": 12305,
                    "name": "VariableDeclaration",
                    "src": "223:7:57"
                  }
                ],
                "id": 12306,
                "name": "ParameterList",
                "src": "222:9:57"
              }
            ],
            "id": 12307,
            "name": "FunctionDefinition",
            "src": "179:53:57"
          },
          {
            "attributes": {
              "body": null,
              "constant": true,
              "implemented": false,
              "isConstructor": false,
              "modifiers": [
                null
              ],
              "name": "balanceOf",
              "payable": false,
              "scope": 12332,
              "stateMutability": "view",
              "superFunction": null,
              "visibility": "public"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "name": "who",
                      "scope": 12314,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "type": "address"
                        },
                        "id": 12308,
                        "name": "ElementaryTypeName",
                        "src": "254:7:57"
                      }
                    ],
                    "id": 12309,
                    "name": "VariableDeclaration",
                    "src": "254:11:57"
                  }
                ],
                "id": 12310,
                "name": "ParameterList",
                "src": "253:13:57"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "name": "",
                      "scope": 12314,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 12311,
                        "name": "ElementaryTypeName",
                        "src": "292:7:57"
                      }
                    ],
                    "id": 12312,
                    "name": "VariableDeclaration",
                    "src": "292:7:57"
                  }
                ],
                "id": 12313,
                "name": "ParameterList",
                "src": "291:9:57"
              }
            ],
            "id": 12314,
            "name": "FunctionDefinition",
            "src": "235:66:57"
          },
          {
            "attributes": {
              "body": null,
              "constant": false,
              "implemented": false,
              "isConstructor": false,
              "modifiers": [
                null
              ],
              "name": "transfer",
              "payable": false,
              "scope": 12332,
              "stateMutability": "nonpayable",
              "superFunction": null,
              "visibility": "public"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "name": "to",
                      "scope": 12323,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "type": "address"
                        },
                        "id": 12315,
                        "name": "ElementaryTypeName",
                        "src": "322:7:57"
                      }
                    ],
                    "id": 12316,
                    "name": "VariableDeclaration",
                    "src": "322:10:57"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "name": "value",
                      "scope": 12323,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 12317,
                        "name": "ElementaryTypeName",
                        "src": "334:7:57"
                      }
                    ],
                    "id": 12318,
                    "name": "VariableDeclaration",
                    "src": "334:13:57"
                  }
                ],
                "id": 12319,
                "name": "ParameterList",
                "src": "321:27:57"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "name": "",
                      "scope": 12323,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "bool",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "bool",
                          "type": "bool"
                        },
                        "id": 12320,
                        "name": "ElementaryTypeName",
                        "src": "365:4:57"
                      }
                    ],
                    "id": 12321,
                    "name": "VariableDeclaration",
                    "src": "365:4:57"
                  }
                ],
                "id": 12322,
                "name": "ParameterList",
                "src": "364:6:57"
              }
            ],
            "id": 12323,
            "name": "FunctionDefinition",
            "src": "304:67:57"
          },
          {
            "attributes": {
              "anonymous": false,
              "name": "Transfer"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "indexed": true,
                      "name": "from",
                      "scope": 12331,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "type": "address"
                        },
                        "id": 12324,
                        "name": "ElementaryTypeName",
                        "src": "389:7:57"
                      }
                    ],
                    "id": 12325,
                    "name": "VariableDeclaration",
                    "src": "389:20:57"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "indexed": true,
                      "name": "to",
                      "scope": 12331,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "address",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "address",
                          "type": "address"
                        },
                        "id": 12326,
                        "name": "ElementaryTypeName",
                        "src": "411:7:57"
                      }
                    ],
                    "id": 12327,
                    "name": "VariableDeclaration",
                    "src": "411:18:57"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "indexed": false,
                      "name": "value",
                      "scope": 12331,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 12328,
                        "name": "ElementaryTypeName",
                        "src": "431:7:57"
                      }
                    ],
                    "id": 12329,
                    "name": "VariableDeclaration",
                    "src": "431:13:57"
                  }
                ],
                "id": 12330,
                "name": "ParameterList",
                "src": "388:57:57"
              }
            ],
            "id": 12331,
            "name": "EventDefinition",
            "src": "374:72:57"
          }
        ],
        "id": 12332,
        "name": "ContractDefinition",
        "src": "155:293:57"
      }
    ],
    "id": 12333,
    "name": "SourceUnit",
    "src": "0:449:57"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.18+commit.9cf6e910.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "1.0.1",
  "updatedAt": "2018-03-14T08:41:25.110Z"
}