contract ExampleContract {

	address public banker;

	constructor(address _banker) {
		banker = _banker;
	}
}