Latest 25 from a total of 25,908 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21250081 | 1 hr ago | IN | 0 ETH | 0.00040316 | ||||
Transfer | 21249931 | 1 hr ago | IN | 0 ETH | 0.00069394 | ||||
Transfer | 21249324 | 3 hrs ago | IN | 0 ETH | 0.00074697 | ||||
Approve | 21249062 | 4 hrs ago | IN | 0 ETH | 0.00048131 | ||||
Approve | 21249048 | 4 hrs ago | IN | 0 ETH | 0.00049054 | ||||
Transfer | 21248989 | 5 hrs ago | IN | 0 ETH | 0.00057204 | ||||
Transfer | 21248388 | 7 hrs ago | IN | 0 ETH | 0.00062086 | ||||
Transfer | 21248124 | 7 hrs ago | IN | 0 ETH | 0.00040934 | ||||
Transfer | 21247845 | 8 hrs ago | IN | 0 ETH | 0.00060486 | ||||
Transfer | 21247718 | 9 hrs ago | IN | 0 ETH | 0.0004248 | ||||
Approve | 21247511 | 9 hrs ago | IN | 0 ETH | 0.00064722 | ||||
Transfer | 21247396 | 10 hrs ago | IN | 0 ETH | 0.00060779 | ||||
Approve | 21247175 | 11 hrs ago | IN | 0 ETH | 0.00057681 | ||||
Approve | 21247124 | 11 hrs ago | IN | 0 ETH | 0.00060564 | ||||
Transfer | 21247088 | 11 hrs ago | IN | 0 ETH | 0.00090262 | ||||
Transfer | 21247013 | 11 hrs ago | IN | 0 ETH | 0.00047339 | ||||
Approve | 21246973 | 11 hrs ago | IN | 0 ETH | 0.00068115 | ||||
Transfer | 21246622 | 12 hrs ago | IN | 0 ETH | 0.00081624 | ||||
Approve | 21246595 | 13 hrs ago | IN | 0 ETH | 0.00064413 | ||||
Approve | 21246207 | 14 hrs ago | IN | 0 ETH | 0.00101748 | ||||
Approve | 21246074 | 14 hrs ago | IN | 0 ETH | 0.0009624 | ||||
Transfer | 21246043 | 14 hrs ago | IN | 0 ETH | 0.0011442 | ||||
Transfer | 21246011 | 14 hrs ago | IN | 0 ETH | 0.00123482 | ||||
Transfer | 21245870 | 15 hrs ago | IN | 0 ETH | 0.00091401 | ||||
Approve | 21245694 | 16 hrs ago | IN | 0 ETH | 0.00054923 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BAX_Token_2022
Compiler Version
v0.4.17+commit.bdeb9e52
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-12 */ pragma solidity ^0.4.17; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20Basic { uint public totalSupplyAlt; function totalSupply() public constant returns (uint); function balanceOf(address who) public constant returns (uint); function transfer(address to, uint value) public; event Transfer(address indexed from, address indexed to, uint value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint); function transferFrom(address from, address to, uint value) public; function approve(address spender, uint value) public; event Approval(address indexed owner, address indexed spender, uint value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is Ownable, ERC20Basic { using SafeMath for uint; mapping(address => uint) public balances; // additional variables for use if transaction fees ever became necessary uint public feeRate = 0; uint public feeLimit = 0; /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { require(!(msg.data.length < size + 4)); _; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) { uint fee = (_value.mul(feeRate)).div(10000); if (fee > feeLimit) { fee = feeLimit; } uint sendAmount = _value.sub(fee); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(msg.sender, owner, fee); } Transfer(msg.sender, _to, sendAmount); } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is BasicToken, ERC20 { mapping (address => mapping (address => uint)) public allowed; uint public constant MAX_UINT = 2**256 - 1; uint public constant MAX_CAP = 100000000000 * 10**18; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(feeRate)).div(10000); if (fee > feeLimit) { fee = feeLimit; } if (_allowance < MAX_UINT) { allowed[_from][msg.sender] = _allowance.sub(_value); } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(_from, owner, fee); } Transfer(_from, _to, sendAmount); } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require(!((_value != 0) && (allowed[msg.sender][_spender] != 0))); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } /** * @dev Function to check the amount of tokens than an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint remaining) { return allowed[_owner][_spender]; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public contractPaused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!contractPaused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(contractPaused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { contractPaused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { contractPaused = false; Unpause(); } } contract BlackList is Ownable, BasicToken { function checkFrozen(address _maker) external constant returns (bool) { return checkFrozenAlt[_maker]; } function ownerAlt() external constant returns (address) { return owner; } mapping (address => bool) public checkFrozenAlt; function freezeWallet (address _evilUser) public onlyOwner { checkFrozenAlt[_evilUser] = true; WalletFrozen(_evilUser); } function unfreezeWallet (address _clearedUser) public onlyOwner { checkFrozenAlt[_clearedUser] = false; WalletUnfrozen(_clearedUser); } function destroyFrozenFunds (address _blackListedUser) public onlyOwner { require(checkFrozenAlt[_blackListedUser]); uint dirtyFunds = balanceOf(_blackListedUser); balances[_blackListedUser] = 0; totalSupplyAlt -= dirtyFunds; DestroyedFrozenFunds(_blackListedUser, dirtyFunds); } event DestroyedFrozenFunds(address _blackListedUser, uint _balance); event WalletFrozen(address _user); event WalletUnfrozen(address _user); } contract UpgradedStandardToken is StandardToken{ // those methods are called by the legacy contract // and they must ensure msg.sender to be the contract address function transferByLegacy(address from, address to, uint value) public; function transferFromByLegacy(address sender, address from, address spender, uint value) public; function approveByLegacy(address from, address spender, uint value) public; } contract BAX_Token_2022 is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; address public upgradeContract; bool public upgradeApplied; // The contract can be initialized with a number of tokens // All the tokens are deposited to the owner address // // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals function BAX_Token_2022(uint _initialSupply, string _name, string _symbol, uint _decimals) public { totalSupplyAlt = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; upgradeApplied = false; } // Forward ERC20 methods to upgraded contract if this one is deprecated function transfer(address _to, uint _value) public whenNotPaused { require(!checkFrozenAlt[msg.sender]); if (upgradeApplied) { return UpgradedStandardToken(upgradeContract).transferByLegacy(msg.sender, _to, _value); } else { return super.transfer(_to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function transferFrom(address _from, address _to, uint _value) public whenNotPaused { require(!checkFrozenAlt[_from]); if (upgradeApplied) { return UpgradedStandardToken(upgradeContract).transferFromByLegacy(msg.sender, _from, _to, _value); } else { return super.transferFrom(_from, _to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public constant returns (uint) { if (upgradeApplied) { return UpgradedStandardToken(upgradeContract).balanceOf(who); } else { return super.balanceOf(who); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { if (upgradeApplied) { return UpgradedStandardToken(upgradeContract).approveByLegacy(msg.sender, _spender, _value); } else { return super.approve(_spender, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public constant returns (uint remaining) { if (upgradeApplied) { return StandardToken(upgradeContract).allowance(_owner, _spender); } else { return super.allowance(_owner, _spender); } } // deprecate current contract in favour of a new one function upgrade(address _upgradeContract) public onlyOwner { upgradeApplied = true; upgradeContract = _upgradeContract; Upgrade(_upgradeContract); } // deprecate current contract if favour of a new one function totalSupply() public constant returns (uint) { if (upgradeApplied) { return StandardToken(upgradeContract).totalSupply(); } else { return totalSupplyAlt; } } // Issue a new amount of tokens // these tokens are deposited into the owner address // // @param _amount Number of tokens to be issued function mint(uint amount) public onlyOwner { require(totalSupplyAlt + amount > totalSupplyAlt); require(balances[owner] + amount > balances[owner]); require(totalSupplyAlt + amount <= MAX_CAP); balances[owner] += amount; totalSupplyAlt += amount; Mint(amount); } // Redeem tokens. // These tokens are withdrawn from the owner address // if the balance must be enough to cover the redeem // or the call will fail. // @param _amount Number of tokens to be issued function burn(uint amount) public onlyOwner { require(totalSupplyAlt >= amount); require(balances[owner] >= amount); totalSupplyAlt -= amount; balances[owner] -= amount; Burn(amount); } function setFee(uint newBasisPoints, uint newMaxFee) public onlyOwner { // Ensure transparency by hardcoding limit beyond which fees can never be added require(newBasisPoints < 20); // require(newMaxFee < 50); feeRate = newBasisPoints; feeLimit = newMaxFee.mul(10**decimals); Params(feeRate, feeLimit); } // Called when new token are issued event Mint(uint amount); // Called when tokens are redeemed event Burn(uint amount); // Called when contract is deprecated event Upgrade(address newAddress); // Called if contract ever adds fees event Params(uint feeBasisPoints, uint maxFee); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyFrozenFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradeContract","type":"address"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeApplied","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"checkFrozenAlt","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"feeLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"unfreezeWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"freezeWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"checkFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ownerAlt","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyAlt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedFrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"WalletFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"WalletUnfrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"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"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]
Contract Creation Code
60606040526000805460a060020a60ff0219168155600381905560045534156200002857600080fd5b6040516200181138038062001811833981016040528080519190602001805182019190602001805182019190602001805160008054600160a060020a03191633600160a060020a0316179055600186905591506007905083805162000092929160200190620000dd565b506008828051620000a8929160200190620000dd565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000182565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012057805160ff191683800117855562000150565b8280016001018555821562000150579182015b828111156200015057825182559160200191906001019062000133565b506200015e92915062000162565b5090565b6200017f91905b808211156200015e576000815560010162000169565b90565b61167f80620001926000396000f300606060405236156101855763ffffffff60e060020a600035041663066104e7811461018a57806306fdde03146101ab5780630900f01014610235578063095ea7b314610254578063146b25921461027657806318160ddd1461029d5780631f4e1504146102c257806323b872dd146102f157806327e235e3146103195780632a9f496d14610338578063313ce567146103575780633f4ba83a1461036a57806342966c681461037d57806352f7c988146103935780635b193332146103ac5780635c658165146103bf57806360f588b7146103e457806370a08231146104035780638456cb59146104225780638a67456a146104355780638da5cb5b1461044857806395d89b411461045b578063978bbdb91461046e5780639f00116914610481578063a04a85c0146104a0578063a0712d68146104bf578063a9059cbb146104d5578063d5861c0a146104f7578063d669e1d41461050a578063dd62ed3e1461051d578063e354199714610542578063e5b5019a14610555578063f2fde38b14610568575b600080fd5b341561019557600080fd5b6101a9600160a060020a0360043516610587565b005b34156101b657600080fd5b6101be610645565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fa5780820151838201526020016101e2565b50505050905090810190601f1680156102275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024057600080fd5b6101a9600160a060020a03600435166106e3565b341561025f57600080fd5b6101a9600160a060020a0360043516602435610786565b341561028157600080fd5b610289610833565b604051901515815260200160405180910390f35b34156102a857600080fd5b6102b0610843565b60405190815260200160405180910390f35b34156102cd57600080fd5b6102d56108ca565b604051600160a060020a03909116815260200160405180910390f35b34156102fc57600080fd5b6101a9600160a060020a03600435811690602435166044356108d9565b341561032457600080fd5b6102b0600160a060020a036004351661099d565b341561034357600080fd5b610289600160a060020a03600435166109af565b341561036257600080fd5b6102b06109c4565b341561037557600080fd5b6101a96109ca565b341561038857600080fd5b6101a9600435610a49565b341561039e57600080fd5b6101a9600435602435610afa565b34156103b757600080fd5b6102b0610b83565b34156103ca57600080fd5b6102b0600160a060020a0360043581169060243516610b89565b34156103ef57600080fd5b6101a9600160a060020a0360043516610ba6565b341561040e57600080fd5b6102b0600160a060020a0360043516610c23565b341561042d57600080fd5b6101a9610cc4565b341561044057600080fd5b610289610d48565b341561045357600080fd5b6102d5610d58565b341561046657600080fd5b6101be610d67565b341561047957600080fd5b6102b0610dd2565b341561048c57600080fd5b6101a9600160a060020a0360043516610dd8565b34156104ab57600080fd5b610289600160a060020a0360043516610e58565b34156104ca57600080fd5b6101a9600435610e76565b34156104e057600080fd5b6101a9600160a060020a0360043516602435610f44565b341561050257600080fd5b6102d561101d565b341561051557600080fd5b6102b061102c565b341561052857600080fd5b6102b0600160a060020a036004358116906024351661103d565b341561054d57600080fd5b6102b06110e8565b341561056057600080fd5b6102b06110ee565b341561057357600080fd5b6101a9600160a060020a03600435166110f4565b6000805433600160a060020a039081169116146105a357600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156105ca57600080fd5b6105d382610c23565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507fffee10b7c5b2f96846691d743a6ac3805983e1711463455cc20fb5aebfe762e0908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b505050505081565b60005433600160a060020a039081169116146106fe57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557ff78721226efe9a1bb678189a16d1554928b9f2192e2cb93eeda83b79fa40007d81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561079657600080fd5b600a5460a060020a900460ff161561082457600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561080b57600080fd5b6102c65a03f1151561081c57600080fd5b50505061082e565b61082e838361114a565b505050565b600a5460a060020a900460ff1681565b600a5460009060a060020a900460ff16156108c257600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156108a057600080fd5b6102c65a03f115156108b157600080fd5b5050506040518051905090506108c7565b506001545b90565b600a54600160a060020a031681565b60005460a060020a900460ff16156108f057600080fd5b600160a060020a03831660009081526006602052604090205460ff161561091657600080fd5b600a5460a060020a900460ff161561099257600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561080b57600080fd5b61082e8383836111fc565b60026020526000908152604090205481565b60066020526000908152604090205460ff1681565b60095481565b60005433600160a060020a039081169116146109e557600080fd5b60005460a060020a900460ff1615156109fd57600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60005433600160a060020a03908116911614610a6457600080fd5b60015481901015610a7457600080fd5b60008054600160a060020a031681526002602052604090205481901015610a9a57600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610b1557600080fd5b60148210610b2257600080fd5b6003829055600954610b3e908290600a0a63ffffffff6113fb16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60045481565b600560209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610bc157600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd247131fabb99dc3ba793524f53f05a77eeef38f12b30119655ee340810b121090829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff1615610cb357600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c9157600080fd5b6102c65a03f11515610ca257600080fd5b505050604051805190509050610cbf565b610cbc82611431565b90505b919050565b60005433600160a060020a03908116911614610cdf57600080fd5b60005460a060020a900460ff1615610cf657600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60005460a060020a900460ff1681565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106db5780601f106106b0576101008083540402835291602001916106db565b60035481565b60005433600160a060020a03908116911614610df357600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557fc9710d20bdbf99ca92a03644a5a8f85ea6badb387ff0abca08eebdfbff50b77f90829051600160a060020a03909116815260200160405180910390a150565b600160a060020a031660009081526006602052604090205460ff1690565b60005433600160a060020a03908116911614610e9157600080fd5b60015481810111610ea157600080fd5b60008054600160a060020a031681526002602052604090205481810111610ec757600080fd5b6001546c01431e0fae6d7217caa00000009082011115610ee657600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846659082905190815260200160405180910390a150565b60005460a060020a900460ff1615610f5b57600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610f8157600080fd5b600a5460a060020a900460ff161561100f57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610ff657600080fd5b6102c65a03f1151561100757600080fd5b505050611019565b611019828261144c565b5050565b600054600160a060020a031690565b6c01431e0fae6d7217caa000000081565b600a5460009060a060020a900460ff16156110d557600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b15156110b357600080fd5b6102c65a03f115156110c457600080fd5b5050506040518051905090506110e2565b6110df83836115d0565b90505b92915050565b60015481565b60001981565b60005433600160a060020a0390811691161461110f57600080fd5b600160a060020a03811615611147576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6040604436101561115a57600080fd5b811580159061118d5750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561119757600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b600080806060606436101561121057600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611262906127109061125690889063ffffffff6113fb16565b9063ffffffff6115fb16565b92506004548311156112745760045492505b6000198410156112b65761128e848663ffffffff61161216565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6112c6858463ffffffff61161216565b600160a060020a0388166000908152600260205260409020549092506112f2908663ffffffff61161216565b600160a060020a038089166000908152600260205260408082209390935590881681522054611327908363ffffffff61162416565b600160a060020a0387166000908152600260205260408120919091558311156113bd5760008054600160a060020a0316815260026020526040902054611373908463ffffffff61162416565b60008054600160a060020a03908116825260026020526040808320939093559054811691908916906000805160206116348339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a03166000805160206116348339815191528460405190815260200160405180910390a350505050505050565b60008083151561140e576000915061142a565b5082820282848281151561141e57fe5b041461142657fe5b8091505b5092915050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561145f57600080fd5b61147a612710611256600354876113fb90919063ffffffff16565b925060045483111561148c5760045492505b61149c848463ffffffff61161216565b600160a060020a0333166000908152600260205260409020549092506114c8908563ffffffff61161216565b600160a060020a0333811660009081526002602052604080822093909355908716815220546114fd908363ffffffff61162416565b600160a060020a0386166000908152600260205260408120919091558311156115945760008054600160a060020a0316815260026020526040902054611549908463ffffffff61162416565b60008054600160a060020a0390811682526002602052604080832093909355905481169133909116906000805160206116348339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a03166000805160206116348339815191528460405190815260200160405180910390a35050505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600080828481151561160957fe5b04949350505050565b60008282111561161e57fe5b50900390565b60008282018381101561142657fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582005862e15def099ae783fade7ea7f32ab7fedd8a744467ccd63f75f69e3c6e7e800290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008424142422042415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034241580000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101855763ffffffff60e060020a600035041663066104e7811461018a57806306fdde03146101ab5780630900f01014610235578063095ea7b314610254578063146b25921461027657806318160ddd1461029d5780631f4e1504146102c257806323b872dd146102f157806327e235e3146103195780632a9f496d14610338578063313ce567146103575780633f4ba83a1461036a57806342966c681461037d57806352f7c988146103935780635b193332146103ac5780635c658165146103bf57806360f588b7146103e457806370a08231146104035780638456cb59146104225780638a67456a146104355780638da5cb5b1461044857806395d89b411461045b578063978bbdb91461046e5780639f00116914610481578063a04a85c0146104a0578063a0712d68146104bf578063a9059cbb146104d5578063d5861c0a146104f7578063d669e1d41461050a578063dd62ed3e1461051d578063e354199714610542578063e5b5019a14610555578063f2fde38b14610568575b600080fd5b341561019557600080fd5b6101a9600160a060020a0360043516610587565b005b34156101b657600080fd5b6101be610645565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fa5780820151838201526020016101e2565b50505050905090810190601f1680156102275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024057600080fd5b6101a9600160a060020a03600435166106e3565b341561025f57600080fd5b6101a9600160a060020a0360043516602435610786565b341561028157600080fd5b610289610833565b604051901515815260200160405180910390f35b34156102a857600080fd5b6102b0610843565b60405190815260200160405180910390f35b34156102cd57600080fd5b6102d56108ca565b604051600160a060020a03909116815260200160405180910390f35b34156102fc57600080fd5b6101a9600160a060020a03600435811690602435166044356108d9565b341561032457600080fd5b6102b0600160a060020a036004351661099d565b341561034357600080fd5b610289600160a060020a03600435166109af565b341561036257600080fd5b6102b06109c4565b341561037557600080fd5b6101a96109ca565b341561038857600080fd5b6101a9600435610a49565b341561039e57600080fd5b6101a9600435602435610afa565b34156103b757600080fd5b6102b0610b83565b34156103ca57600080fd5b6102b0600160a060020a0360043581169060243516610b89565b34156103ef57600080fd5b6101a9600160a060020a0360043516610ba6565b341561040e57600080fd5b6102b0600160a060020a0360043516610c23565b341561042d57600080fd5b6101a9610cc4565b341561044057600080fd5b610289610d48565b341561045357600080fd5b6102d5610d58565b341561046657600080fd5b6101be610d67565b341561047957600080fd5b6102b0610dd2565b341561048c57600080fd5b6101a9600160a060020a0360043516610dd8565b34156104ab57600080fd5b610289600160a060020a0360043516610e58565b34156104ca57600080fd5b6101a9600435610e76565b34156104e057600080fd5b6101a9600160a060020a0360043516602435610f44565b341561050257600080fd5b6102d561101d565b341561051557600080fd5b6102b061102c565b341561052857600080fd5b6102b0600160a060020a036004358116906024351661103d565b341561054d57600080fd5b6102b06110e8565b341561056057600080fd5b6102b06110ee565b341561057357600080fd5b6101a9600160a060020a03600435166110f4565b6000805433600160a060020a039081169116146105a357600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156105ca57600080fd5b6105d382610c23565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507fffee10b7c5b2f96846691d743a6ac3805983e1711463455cc20fb5aebfe762e0908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b505050505081565b60005433600160a060020a039081169116146106fe57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557ff78721226efe9a1bb678189a16d1554928b9f2192e2cb93eeda83b79fa40007d81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561079657600080fd5b600a5460a060020a900460ff161561082457600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561080b57600080fd5b6102c65a03f1151561081c57600080fd5b50505061082e565b61082e838361114a565b505050565b600a5460a060020a900460ff1681565b600a5460009060a060020a900460ff16156108c257600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156108a057600080fd5b6102c65a03f115156108b157600080fd5b5050506040518051905090506108c7565b506001545b90565b600a54600160a060020a031681565b60005460a060020a900460ff16156108f057600080fd5b600160a060020a03831660009081526006602052604090205460ff161561091657600080fd5b600a5460a060020a900460ff161561099257600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561080b57600080fd5b61082e8383836111fc565b60026020526000908152604090205481565b60066020526000908152604090205460ff1681565b60095481565b60005433600160a060020a039081169116146109e557600080fd5b60005460a060020a900460ff1615156109fd57600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60005433600160a060020a03908116911614610a6457600080fd5b60015481901015610a7457600080fd5b60008054600160a060020a031681526002602052604090205481901015610a9a57600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610b1557600080fd5b60148210610b2257600080fd5b6003829055600954610b3e908290600a0a63ffffffff6113fb16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60045481565b600560209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610bc157600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd247131fabb99dc3ba793524f53f05a77eeef38f12b30119655ee340810b121090829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff1615610cb357600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c9157600080fd5b6102c65a03f11515610ca257600080fd5b505050604051805190509050610cbf565b610cbc82611431565b90505b919050565b60005433600160a060020a03908116911614610cdf57600080fd5b60005460a060020a900460ff1615610cf657600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60005460a060020a900460ff1681565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106db5780601f106106b0576101008083540402835291602001916106db565b60035481565b60005433600160a060020a03908116911614610df357600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557fc9710d20bdbf99ca92a03644a5a8f85ea6badb387ff0abca08eebdfbff50b77f90829051600160a060020a03909116815260200160405180910390a150565b600160a060020a031660009081526006602052604090205460ff1690565b60005433600160a060020a03908116911614610e9157600080fd5b60015481810111610ea157600080fd5b60008054600160a060020a031681526002602052604090205481810111610ec757600080fd5b6001546c01431e0fae6d7217caa00000009082011115610ee657600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a846659082905190815260200160405180910390a150565b60005460a060020a900460ff1615610f5b57600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610f8157600080fd5b600a5460a060020a900460ff161561100f57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610ff657600080fd5b6102c65a03f1151561100757600080fd5b505050611019565b611019828261144c565b5050565b600054600160a060020a031690565b6c01431e0fae6d7217caa000000081565b600a5460009060a060020a900460ff16156110d557600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b15156110b357600080fd5b6102c65a03f115156110c457600080fd5b5050506040518051905090506110e2565b6110df83836115d0565b90505b92915050565b60015481565b60001981565b60005433600160a060020a0390811691161461110f57600080fd5b600160a060020a03811615611147576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6040604436101561115a57600080fd5b811580159061118d5750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561119757600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b600080806060606436101561121057600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611262906127109061125690889063ffffffff6113fb16565b9063ffffffff6115fb16565b92506004548311156112745760045492505b6000198410156112b65761128e848663ffffffff61161216565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6112c6858463ffffffff61161216565b600160a060020a0388166000908152600260205260409020549092506112f2908663ffffffff61161216565b600160a060020a038089166000908152600260205260408082209390935590881681522054611327908363ffffffff61162416565b600160a060020a0387166000908152600260205260408120919091558311156113bd5760008054600160a060020a0316815260026020526040902054611373908463ffffffff61162416565b60008054600160a060020a03908116825260026020526040808320939093559054811691908916906000805160206116348339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a03166000805160206116348339815191528460405190815260200160405180910390a350505050505050565b60008083151561140e576000915061142a565b5082820282848281151561141e57fe5b041461142657fe5b8091505b5092915050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561145f57600080fd5b61147a612710611256600354876113fb90919063ffffffff16565b925060045483111561148c5760045492505b61149c848463ffffffff61161216565b600160a060020a0333166000908152600260205260409020549092506114c8908563ffffffff61161216565b600160a060020a0333811660009081526002602052604080822093909355908716815220546114fd908363ffffffff61162416565b600160a060020a0386166000908152600260205260408120919091558311156115945760008054600160a060020a0316815260026020526040902054611549908463ffffffff61162416565b60008054600160a060020a0390811682526002602052604080832093909355905481169133909116906000805160206116348339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a03166000805160206116348339815191528460405190815260200160405180910390a35050505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600080828481151561160957fe5b04949350505050565b60008282111561161e57fe5b50900390565b60008282018381101561142657fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582005862e15def099ae783fade7ea7f32ab7fedd8a744467ccd63f75f69e3c6e7e80029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008424142422042415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034241580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 0
Arg [1] : _name (string): BABB BAX
Arg [2] : _symbol (string): BAX
Arg [3] : _decimals (uint256): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4241424220424158000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4241580000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9914:4992:0:-;;;;;;;;-1:-1:-1;;;9914:4992:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:329;;;;;;;;;;-1:-1:-1;;;;;8976:329:0;;;;;;;9985:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12776:181:0;;;;;;;;;;-1:-1:-1;;;;;12776:181:0;;;;;12022:306;;;;;;;;;;-1:-1:-1;;;;;12022:306:0;;;;;;;10101:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13023:224;;;;;;;;;;;;;;;;;;;;;;;;;;;10064:30;;;;;;;;;;;;;;;-1:-1:-1;;;;;10064:30:0;;;;;;;;;;;;;;11237:367;;;;;;;;;;-1:-1:-1;;;;;11237:367:0;;;;;;;;;;;;2953:40;;;;;;;;;;-1:-1:-1;;;;;2953:40:0;;;;;8598:47;;;;;;;;;;-1:-1:-1;;;;;8598:47:0;;;;;10037:20;;;;;;;;;;;;8219:98;;;;;;;;;;;;13965:237;;;;;;;;;;;;;;14210:366;;;;;;;;;;;;;;;;3111:24;;;;;;;;;;;;4721:61;;;;;;;;;;-1:-1:-1;;;;;4721:61:0;;;;;;;;;;8810:158;;;;;;;;;;-1:-1:-1;;;;;8810:158:0;;;;;11689:248;;;;;;;;;;-1:-1:-1;;;;;11689:248:0;;;;;8036:96;;;;;;;;;;;;7571:34;;;;;;;;;;;;1162:20;;;;;;;;;;;;10010;;;;;;;;;;;;3081:23;;;;;;;;;;;;8658:144;;;;;;;;;;-1:-1:-1;;;;;8658:144:0;;;;;8377:118;;;;;;;;;;-1:-1:-1;;;;;8377:118:0;;;;;13411:323;;;;;;;;;;;;;;10821:331;;;;;;;;;;-1:-1:-1;;;;;10821:331:0;;;;;;;8503:87;;;;;;;;;;;;4840:52;;;;;;;;;;;;12413:297;;;;;;;;;;-1:-1:-1;;;;;12413:297:0;;;;;;;;;;2053:26;;;;;;;;;;;;4791:42;;;;;;;;;;;;1734:151;;;;;;;;;;-1:-1:-1;;;;;1734:151:0;;;;;8976:329;9111:15;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;9067:32:0;;;;;;:14;:32;;;;;;;;9059:41;;;;;;;;9129:27;9139:16;9129:9;:27::i;:::-;-1:-1:-1;;;;;9167:26:0;;9196:1;9167:26;;;:8;:26;;;;;;:30;;;;9208:14;:28;;;;;;;9111:45;;-1:-1:-1;9247:50:0;;9176:16;;9111:45;;9247:50;-1:-1:-1;;;;;9247:50:0;;;;;;;;;;;;;;;;;;;;8976:329;;:::o;9985:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12776:181::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;12847:14;:21;;-1:-1:-1;;;;;12847:21:0;;;;-1:-1:-1;;12879:34:0;-1:-1:-1;;;;;12879:34:0;;;;;12924:25;12879:34;12924:25;;-1:-1:-1;;;;;12924:25:0;;;;;;;;;;;;;;12776:181;:::o;12022:306::-;12093:6;3288:8;3270;:26;3268:29;3260:38;;;;;;12116:14;;-1:-1:-1;;;12116:14:0;;;;12112:209;;;12176:15;;-1:-1:-1;;;;;12176:15:0;12154:54;12209:10;12221:8;12231:6;12154:84;;-1:-1:-1;;;12154:84:0;;;;;;-1:-1:-1;;;;;12154:84:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12154:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12147:91;;12112:209;12278:31;12292:8;12302:6;12278:13;:31::i;:::-;12022:306;;;:::o;10101:26::-;;;-1:-1:-1;;;10101:26:0;;;;;:::o;13023:224::-;13092:14;;13071:4;;-1:-1:-1;;;13092:14:0;;;;13088:152;;;13144:15;;-1:-1:-1;;;;;13144:15:0;13130:42;13144:15;13130:44;;;;;;;;;;-1:-1:-1;;;13130:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13123:51;;;;13088:152;-1:-1:-1;13214:14:0;;13088:152;13023:224;:::o;10064:30::-;;;-1:-1:-1;;;;;10064:30:0;;:::o;11237:367::-;7755:14;;-1:-1:-1;;;7755:14:0;;;;7754:15;7746:24;;;;;;-1:-1:-1;;;;;11341:21:0;;;;;;:14;:21;;;;;;;;11340:22;11332:31;;;;;;11378:14;;-1:-1:-1;;;11378:14:0;;;;11374:223;;;11438:15;;-1:-1:-1;;;;;11438:15:0;11416:59;11476:10;11488:5;11495:3;11500:6;11416:91;;-1:-1:-1;;;11416:91:0;;;;;;-1:-1:-1;;;;;11416:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11416:91:0;;;;;;;;;;;;;;;;;11374:223;11547:38;11566:5;11573:3;11578:6;11547:18;:38::i;2953:40::-;;;;;;;;;;;;;:::o;8598:47::-;;;;;;;;;;;;;;;:::o;10037:20::-;;;;:::o;8219:98::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;7923:14;;-1:-1:-1;;;7923:14:0;;;;7915:23;;;;;;;;8290:5;8273:22;;-1:-1:-1;;8273:22:0;;;8302:9;;;;;;;;;;8219:98::o;13965:237::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14028:14;;:24;;;;14020:33;;;;;;14072:15;14081:5;;-1:-1:-1;;;;;14081:5:0;14072:15;;:8;:15;;;;;;:25;;;;14064:34;;;;;;14111:14;:24;;;;;;;:14;14155:5;;-1:-1:-1;;;;;14155:5:0;14146:15;;:8;:15;;;;;;;:25;;;;;;;14182:12;;14129:6;;14182:12;;;;;;;;;;;;;13965:237;:::o;14210:366::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14405:2;14388:19;;14380:28;;;;;;14457:7;:24;;;14521:8;;14503:27;;:9;;14517:2;:12;14503:27;:13;:27;:::i;:::-;14492:8;:38;;;14550:7;;14543:25;;;;;;;;;;;;;;;;;;;;;;14210:366;;:::o;3111:24::-;;;;:::o;4721:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;8810:158::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;8885:28:0;;8916:5;8885:28;;;:14;:28;;;;;;;:36;;-1:-1:-1;;8885:36:0;;;8932:28;;8900:12;;8932:28;-1:-1:-1;;;;;8932:28:0;;;;;;;;;;;;;;8810:158;:::o;11689:248::-;11767:14;;11746:4;;-1:-1:-1;;;11767:14:0;;;;11763:167;;;11827:15;;-1:-1:-1;;;;;11827:15:0;11805:48;11854:3;11827:15;11805:53;;;;;;;-1:-1:-1;;;11805:53:0;;;;;;-1:-1:-1;;;;;11805:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11798:60;;;;11763:167;11898:20;11914:3;11898:15;:20::i;:::-;11891:27;;11763:167;11689:248;;;:::o;8036:96::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;7755:14;;-1:-1:-1;;;7755:14:0;;;;7754:15;7746:24;;;;;;8091:14;:21;;-1:-1:-1;;8091:21:0;-1:-1:-1;;;8091:21:0;;;8119:7;;;;;;;;;;8036:96::o;7571:34::-;;;-1:-1:-1;;;7571:34:0;;;;;:::o;1162:20::-;;;-1:-1:-1;;;;;1162:20:0;;:::o;10010:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3081:23;;;;:::o;8658:144::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;8728:25:0;;;;;;:14;:25;;;;;;;:32;;-1:-1:-1;;8728:32:0;8756:4;8728:32;;;8771:23;;8743:9;;8771:23;-1:-1:-1;;;;;8771:23:0;;;;;;;;;;;;;;8658:144;:::o;8377:118::-;-1:-1:-1;;;;;8465:22:0;8441:4;8465:22;;;:14;:22;;;;;;;;;8377:118::o;13411:323::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;13500:14;;13474:23;;;:40;13466:49;;;;;;13561:15;13570:5;;-1:-1:-1;;;;;13570:5:0;13561:15;;:8;:15;;;;;;13534:24;;;:42;13526:51;;;;;;13596:14;;4871:21;13596:23;;;:35;;13588:44;;;;;;13643:15;13652:5;;-1:-1:-1;;;;;13652:5:0;13643:15;;:8;:15;;;;;;;:25;;;;;;13652:5;13679:24;;;;;;13714:12;;13662:6;;13714:12;;;;;;;;;;;;;13411:323;:::o;10821:331::-;7755:14;;-1:-1:-1;;;7755:14:0;;;;7754:15;7746:24;;;;;;-1:-1:-1;;;;;10921:10:0;10906:26;;;;;:14;:26;;;;;;;;10905:27;10897:36;;;;;;10948:14;;-1:-1:-1;;;10948:14:0;;;;10944:201;;;11008:15;;-1:-1:-1;;;;;11008:15:0;10986:55;11042:10;11054:3;11059:6;10986:80;;-1:-1:-1;;;10986:80:0;;;;;;-1:-1:-1;;;;;10986:80:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10986:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10979:87;;10944:201;11106:27;11121:3;11126:6;11106:14;:27::i;:::-;10821:331;;:::o;8503:87::-;8550:7;8577:5;-1:-1:-1;;;;;8577:5:0;8503:87;:::o;4840:52::-;4871:21;4840:52;:::o;12413:297::-;12522:14;;12491;;-1:-1:-1;;;12522:14:0;;;;12518:185;;;12574:15;;-1:-1:-1;;;;;12574:15:0;12560:40;12601:6;12609:8;12574:15;12560:58;;;;;;;-1:-1:-1;;;12560:58:0;;;;;;-1:-1:-1;;;;;12560:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12553:65;;;;12518:185;12658:33;12674:6;12682:8;12658:15;:33::i;:::-;12651:40;;12518:185;12413:297;;;;:::o;2053:26::-;;;;:::o;4791:42::-;-1:-1:-1;;4791:42:0;:::o;1734:151::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;1811:22:0;;;1807:71;;1850:5;:16;;-1:-1:-1;;1850:16:0;-1:-1:-1;;;;;1850:16:0;;;;;1807:71;1734:151;:::o;6318:573::-;6389:6;3288:8;3270;:26;3268:29;3260:38;;;;;;6729:11;;;;;6728:53;;-1:-1:-1;;;;;;6754:10:0;6746:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;6728:53;6726:56;6718:65;;;;;;-1:-1:-1;;;;;6804:10:0;6796:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;6845;;6828:6;;6845:38;;;;;;;;;;;;;6318:573;;;:::o;5182:889::-;5287:14;;;5268:6;3288:8;3270;:26;3268:29;3260:38;;;;;;-1:-1:-1;;;;;5304:14:0;;;;;;;:7;:14;;;;;;;;5319:10;5304:26;;;;;;;;;;5524:7;;5304:26;;-1:-1:-1;5512:32:0;;5538:5;;5513:19;;:6;;:19;:10;:19;:::i;:::-;5512:25;:32;:25;:32;:::i;:::-;5501:43;;5565:8;;5559:3;:14;5555:61;;;5596:8;;5590:14;;5555:61;-1:-1:-1;;5630:10:0;:21;5626:105;;;5697:22;:10;5712:6;5697:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5668:14:0;;;;;;;:7;:14;;;;;;;;5683:10;5668:26;;;;;;;;;:51;5626:105;5759:15;:6;5770:3;5759:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5803:15:0;;;;;;:8;:15;;;;;;5741:33;;-1:-1:-1;5803:27:0;;5823:6;5803:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5785:15:0;;;;;;;:8;:15;;;;;;:45;;;;5857:13;;;;;;;:29;;5875:10;5857:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5841:13:0;;;;;;:8;:13;;;;;:45;;;;5901:7;;5897:124;;;5943:15;5952:5;;-1:-1:-1;;;;;5952:5:0;5943:15;;:8;:15;;;;;;:24;;5963:3;5943:24;:19;:24;:::i;:::-;5925:15;5934:5;;-1:-1:-1;;;;;5934:5:0;;;5925:15;;:8;:15;;;;;;:42;;;;5998:5;;;;;5982:27;;;;-1:-1:-1;;;;;;;;;;;5982:27:0;6005:3;;5982:27;;;;;;;;;;;;;5897:124;6047:3;-1:-1:-1;;;;;6031:32:0;6040:5;-1:-1:-1;;;;;6031:32:0;-1:-1:-1;;;;;;;;;;;6052:10:0;6031:32;;;;;;;;;;;;;;5182:889;;;;;;;:::o;146:208::-;204:7;;228:6;;224:47;;;258:1;251:8;;;;224:47;-1:-1:-1;293:5:0;;;297:1;293;:5;316;;;;;;;;:10;309:18;;;;345:1;338:8;;146:208;;;;;;:::o;4270:116::-;-1:-1:-1;;;;;4362:16:0;4330:12;4362:16;;;:8;:16;;;;;;;4270:116::o;3491:561::-;3577:8;;3558:6;3288:8;3270;:26;3268:29;3260:38;;;;;;3588:32;3614:5;3589:19;3600:7;;3589:6;:10;;:19;;;;:::i;3588:32::-;3577:43;;3641:8;;3635:3;:14;3631:61;;;3672:8;;3666:14;;3631:61;3720:15;:6;3731:3;3720:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;3778:10:0;3769:20;;;;;:8;:20;;;;;;3702:33;;-1:-1:-1;3769:32:0;;3794:6;3769:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;3755:10:0;3746:20;;;;;;:8;:20;;;;;;:55;;;;3828:13;;;;;;;:29;;3846:10;3828:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3812:13:0;;;;;;:8;:13;;;;;:45;;;;3872:7;;3868:129;;;3914:15;3923:5;;-1:-1:-1;;;;;3923:5:0;3914:15;;:8;:15;;;;;;:24;;3934:3;3914:24;:19;:24;:::i;:::-;3896:15;3905:5;;-1:-1:-1;;;;;3905:5:0;;;3896:15;;:8;:15;;;;;;:42;;;;3974:5;;;;;3962:10;3953:32;;;;-1:-1:-1;;;;;;;;;;;3953:32:0;3981:3;;3953:32;;;;;;;;;;;;;3868:129;4028:3;-1:-1:-1;;;;;4007:37:0;4016:10;-1:-1:-1;;;;;4007:37:0;-1:-1:-1;;;;;;;;;;;4033:10:0;4007:37;;;;;;;;;;;;;;3491:561;;;;;:::o;7224:145::-;-1:-1:-1;;;;;7336:15:0;;;7302:14;7336:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7224:145::o;362:288::-;420:7;519:9;535:1;531;:5;;;;;;;;;362:288;-1:-1:-1;;;;362:288:0:o;658:123::-;716:7;743:6;;;;736:14;;;;-1:-1:-1;768:5:0;;;658:123::o;789:147::-;847:7;879:5;;;902:6;;;;895:14;;
Swarm Source
bzzr://05862e15def099ae783fade7ea7f32ab7fedd8a744467ccd63f75f69e3c6e7e8
Loading...
Loading
Loading...
Loading
OVERVIEW
Babb is a financial blockchain platform based in London that aims to bring accessible financial services for the unbanked and under-banked globally.Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.