{
  "contractName": "BetTermsProxyInterface",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "_terms",
          "type": "bytes32[]"
        }
      ],
      "name": "setTermsHash",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "_termsHash",
          "type": "bytes32"
        },
        {
          "name": "_status",
          "type": "uint256"
        }
      ],
      "name": "changePeriod",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_terms",
          "type": "bytes32[]"
        }
      ],
      "name": "getTermsHash",
      "outputs": [
        {
          "name": "",
          "type": "bytes32"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_termsHash",
          "type": "bytes32"
        }
      ],
      "name": "participationPeriod",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_termsHash",
          "type": "bytes32"
        }
      ],
      "name": "waitingPeriod",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_termsHash",
          "type": "bytes32"
        }
      ],
      "name": "retrievingPeriod",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "_termsHash",
          "type": "bytes32"
        }
      ],
      "name": "finishedPeriod",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.24;\n\n\ninterface BetTermsProxyInterface {\n\n    function setTermsHash(bytes32[] _terms)\n        public\n        returns(bool);\n\n    function changePeriod(bytes32 _termsHash, uint _status)\n        external;\n\n    function getTermsHash(bytes32[] _terms)\n        public\n        view\n        returns(bytes32);\n\n    function participationPeriod(bytes32 _termsHash)\n        external\n        view\n        returns(bool);\n\n    function waitingPeriod(bytes32 _termsHash)\n        external\n        view\n        returns(bool);\n\n    function retrievingPeriod(bytes32 _termsHash)\n        external\n        view\n        returns(bool);\n\n    function finishedPeriod(bytes32 _termsHash)\n        external\n        view\n        returns(bool);\n}\n",
  "sourcePath": "/Users/carlosgonzalezjuarez/Documents/Development/GuesserProtocol/contracts/ProxyInterfaces/BetTermsProxyInterface.sol",
  "ast": {
    "absolutePath": "/Users/carlosgonzalezjuarez/Documents/Development/GuesserProtocol/contracts/ProxyInterfaces/BetTermsProxyInterface.sol",
    "exportedSymbols": {
      "BetTermsProxyInterface": [
        3556
      ]
    },
    "id": 3557,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 3504,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:21"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 3556,
        "linearizedBaseContracts": [
          3556
        ],
        "name": "BetTermsProxyInterface",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 3512,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setTermsHash",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3508,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3507,
                  "name": "_terms",
                  "nodeType": "VariableDeclaration",
                  "scope": 3512,
                  "src": "89:16:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_bytes32_$dyn_memory_ptr",
                    "typeString": "bytes32[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 3505,
                      "name": "bytes32",
                      "nodeType": "ElementaryTypeName",
                      "src": "89:7:21",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      }
                    },
                    "id": 3506,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "89:9:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_bytes32_$dyn_storage_ptr",
                      "typeString": "bytes32[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "88:18:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3511,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3510,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3512,
                  "src": "138:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3509,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "138:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "137:6:21"
            },
            "scope": 3556,
            "src": "67:77:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3519,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "changePeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3517,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3514,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3519,
                  "src": "172:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3513,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "172:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 3516,
                  "name": "_status",
                  "nodeType": "VariableDeclaration",
                  "scope": 3519,
                  "src": "192:12:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 3515,
                    "name": "uint",
                    "nodeType": "ElementaryTypeName",
                    "src": "192:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "171:34:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3518,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "222:0:21"
            },
            "scope": 3556,
            "src": "150:73:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3527,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getTermsHash",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3523,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3522,
                  "name": "_terms",
                  "nodeType": "VariableDeclaration",
                  "scope": 3527,
                  "src": "251:16:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_bytes32_$dyn_memory_ptr",
                    "typeString": "bytes32[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 3520,
                      "name": "bytes32",
                      "nodeType": "ElementaryTypeName",
                      "src": "251:7:21",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      }
                    },
                    "id": 3521,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "251:9:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_bytes32_$dyn_storage_ptr",
                      "typeString": "bytes32[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "250:18:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3526,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3525,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3527,
                  "src": "313:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3524,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "313:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "312:9:21"
            },
            "scope": 3556,
            "src": "229:93:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3534,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "participationPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3530,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3529,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3534,
                  "src": "357:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3528,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "357:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "356:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3533,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3532,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3534,
                  "src": "423:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3531,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "423:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "422:6:21"
            },
            "scope": 3556,
            "src": "328:101:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3541,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "waitingPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3537,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3536,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3541,
                  "src": "458:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3535,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "458:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "457:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3540,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3539,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3541,
                  "src": "524:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3538,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "524:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "523:6:21"
            },
            "scope": 3556,
            "src": "435:95:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3548,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "retrievingPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3544,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3543,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3548,
                  "src": "562:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3542,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "562:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "561:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3547,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3546,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3548,
                  "src": "628:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3545,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "628:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "627:6:21"
            },
            "scope": 3556,
            "src": "536:98:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3555,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "finishedPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3551,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3550,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3555,
                  "src": "664:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3549,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "664:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "663:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3554,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3553,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3555,
                  "src": "730:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3552,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "730:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "729:6:21"
            },
            "scope": 3556,
            "src": "640:96:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 3557,
        "src": "27:711:21"
      }
    ],
    "src": "0:739:21"
  },
  "legacyAST": {
    "absolutePath": "/Users/carlosgonzalezjuarez/Documents/Development/GuesserProtocol/contracts/ProxyInterfaces/BetTermsProxyInterface.sol",
    "exportedSymbols": {
      "BetTermsProxyInterface": [
        3556
      ]
    },
    "id": 3557,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 3504,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:21"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 3556,
        "linearizedBaseContracts": [
          3556
        ],
        "name": "BetTermsProxyInterface",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 3512,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setTermsHash",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3508,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3507,
                  "name": "_terms",
                  "nodeType": "VariableDeclaration",
                  "scope": 3512,
                  "src": "89:16:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_bytes32_$dyn_memory_ptr",
                    "typeString": "bytes32[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 3505,
                      "name": "bytes32",
                      "nodeType": "ElementaryTypeName",
                      "src": "89:7:21",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      }
                    },
                    "id": 3506,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "89:9:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_bytes32_$dyn_storage_ptr",
                      "typeString": "bytes32[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "88:18:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3511,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3510,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3512,
                  "src": "138:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3509,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "138:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "137:6:21"
            },
            "scope": 3556,
            "src": "67:77:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3519,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "changePeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3517,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3514,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3519,
                  "src": "172:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3513,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "172:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 3516,
                  "name": "_status",
                  "nodeType": "VariableDeclaration",
                  "scope": 3519,
                  "src": "192:12:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 3515,
                    "name": "uint",
                    "nodeType": "ElementaryTypeName",
                    "src": "192:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "171:34:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3518,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "222:0:21"
            },
            "scope": 3556,
            "src": "150:73:21",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3527,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getTermsHash",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3523,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3522,
                  "name": "_terms",
                  "nodeType": "VariableDeclaration",
                  "scope": 3527,
                  "src": "251:16:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_bytes32_$dyn_memory_ptr",
                    "typeString": "bytes32[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 3520,
                      "name": "bytes32",
                      "nodeType": "ElementaryTypeName",
                      "src": "251:7:21",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      }
                    },
                    "id": 3521,
                    "length": null,
                    "nodeType": "ArrayTypeName",
                    "src": "251:9:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_bytes32_$dyn_storage_ptr",
                      "typeString": "bytes32[]"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "250:18:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3526,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3525,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3527,
                  "src": "313:7:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3524,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "313:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "312:9:21"
            },
            "scope": 3556,
            "src": "229:93:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3534,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "participationPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3530,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3529,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3534,
                  "src": "357:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3528,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "357:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "356:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3533,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3532,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3534,
                  "src": "423:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3531,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "423:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "422:6:21"
            },
            "scope": 3556,
            "src": "328:101:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3541,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "waitingPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3537,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3536,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3541,
                  "src": "458:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3535,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "458:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "457:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3540,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3539,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3541,
                  "src": "524:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3538,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "524:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "523:6:21"
            },
            "scope": 3556,
            "src": "435:95:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3548,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "retrievingPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3544,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3543,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3548,
                  "src": "562:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3542,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "562:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "561:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3547,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3546,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3548,
                  "src": "628:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3545,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "628:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "627:6:21"
            },
            "scope": 3556,
            "src": "536:98:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 3555,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "finishedPeriod",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 3551,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3550,
                  "name": "_termsHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 3555,
                  "src": "664:18:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 3549,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "664:7:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "663:20:21"
            },
            "payable": false,
            "returnParameters": {
              "id": 3554,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 3553,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 3555,
                  "src": "730:4:21",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 3552,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "730:4:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "729:6:21"
            },
            "scope": 3556,
            "src": "640:96:21",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 3557,
        "src": "27:711:21"
      }
    ],
    "src": "0:739:21"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.25+commit.59dbf8f1.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.0-beta.1",
  "updatedAt": "2018-11-01T18:10:50.807Z"
}