BNB Price: $695.44 (-2.04%)
Gas: 1 GWei
 

Overview

Max Total Supply

8,914,000XBA

Holders

25,102 (0.00%)

Market

Price

$0.2456 @ 0.000353 BNB

Onchain Market Cap

$2,189,163.98

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 6 Decimals)

Filtered by Token Holder
BSC: Validator Set
Balance
1 XBA

Value
$0.25 ( ~0.000359485907145054 BNB) [0.0000%]
0x0000000000000000000000000000000000001000
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

XBank is an amphibian platform that converts intermediary and aggregate services between Fiat and Crypto.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 XBA
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
XBank

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2021-09-11
*/

pragma solidity >=0.4.22 <0.6.0;

/**
 * @title BEP20 interface
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);
    function approve(address spender, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
    function totalSupply() external view returns (uint256);
    function balanceOf(address who) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}





/**
 * @title Standard BEP20 token
 *
 * @dev Implementation of the basic standard token
 */
contract BEP20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) public _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply =  0;
    
    
    

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that 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 uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token to a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }
 
 
    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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 uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));
        require(value <= _balances[account]);
        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }


    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}


/**
 * @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 private _owner;
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @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 {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    

}

contract Pausable is Ownable {
    event Paused(address account);

    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    function paused() public view returns (bool) {
        return _paused;
    }

    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    function pause() public onlyOwner whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    function unpause() public onlyOwner whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract BEP20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}



contract XBank is BEP20, Pausable, BEP20Detailed {
    
	address deploymentFundWallet = 0xa79F4620a0D825DA8Fa8Adc07DA8aeA0076416cB;
    address partnerTeamDevWallet = 0x5E241dfDcc5dd525b7c9f34B72561A6055ae3f99;
    address airdropWallet = 0x049B040769A633A1008268aE815fC5B0fCe14a2a;
    
    uint256 private totalCoins; 
    
    struct LockItem {
        uint256  releaseDate;
        uint256  amount;
    }
    
    mapping (address => LockItem[]) public lockList;
    mapping (uint => uint) public yearsMap;
    address [] private lockedAddressList; // list of addresses that have some fund currently or previously locked
    
    
	constructor() public BEP20Detailed("XBank", "XBA", 6) {  
	        
	         yearsMap[1]=1640995200;//=Sat Jan 01 2022 00:00:00 GMT
            yearsMap[2]=1672531200;//=Sun Jan 01 2023 00:00:00 GMT
            yearsMap[3]=1704067200;//=	Mon Jan 01 2024 00:00:00 GMT
            yearsMap[4]=1735689600;//=Wed Jan 01 2025 00:00:00 GMT
        
       
        totalCoins = 10000000 * 10 ** uint256(decimals());
        _mint(owner(), totalCoins); // total supply fixed at 10 million coins
        // for 2021
        BEP20.transfer(deploymentFundWallet, 1380000 * 10 ** uint256(decimals()));  
        BEP20.transfer(partnerTeamDevWallet, 420000 * 10 ** uint256(decimals()));
        BEP20.transfer(airdropWallet, 1000000 * 10 ** uint256(decimals()));
        
        // for 2022,2023,2024,2025
         for(uint i = 1; i<= 4;i++) 
         {
             // send and lock for development fund
            BEP20.transfer(deploymentFundWallet, 1380000 * 10 ** uint256(decimals()));  
            // send and lock for partner and teams
            BEP20.transfer(partnerTeamDevWallet, 420000 * 10 ** uint256(decimals()));
        }
        
    }
	
	
     /**
     * @dev transfer of token to another address.
     * always require the sender has enough balance
     * @return the bool true if success. 
     * @param _receiver The address to transfer to.
     * @param _amount The amount to be transferred.
     */
     
	function transfer(address _receiver, uint256 _amount) public whenNotPaused returns (bool success) {
	    require(_receiver != address(0)); 
	    require(_amount <= getAvailableBalance(msg.sender));
        return BEP20.transfer(_receiver, _amount);
	}
	
	/**
     * @dev transfer of token on behalf of the owner to another address. 
     * always require the owner has enough balance and the sender is allowed to transfer the given amount
     * @return the bool true if success. 
     * @param _from The address to transfer from.
     * @param _receiver The address to transfer to.
     * @param _amount The amount to be transferred.
     */
    function transferFrom(address _from, address _receiver, uint256 _amount) public whenNotPaused returns (bool) {
        require(_from != address(0));
        require(_receiver != address(0));
        require(_amount <= allowance(_from, msg.sender));
        require(_amount <= getAvailableBalance(_from));
        return BEP20.transferFrom(_from, _receiver, _amount);
    }

    /**
     * @dev transfer to a given address a given amount and lock this fund until a given time
     * used for sending fund to team members, partners, or for owner to lock service fund over time
     * @return the bool true if success.
     * @param _receiver The address to transfer to.
     * @param _amount The amount to transfer.
     * @param _releaseDate The date to release token.
     */
	
	function transferAndLock(address _receiver, uint256 _amount, uint256 _releaseDate) public whenNotPaused returns (bool success) {
	    require(msg.sender == owner());
        BEP20._transfer(msg.sender,_receiver,_amount);
    	
    	if (lockList[_receiver].length==0) lockedAddressList.push(_receiver);
		
    	LockItem memory item = LockItem({amount:_amount, releaseDate:_releaseDate});
		lockList[_receiver].push(item);
		
        return true;
	}
	
	
    /**
     * @return the total amount of locked funds of a given address.
     * @param lockedAddress The address to check.
     */
	function getLockedAmount(address lockedAddress) public view returns(uint256 _amount) {
	    uint256 lockedAmount =0;
	    for(uint256 j = 0; j<lockList[lockedAddress].length; j++) {
	        if(now < lockList[lockedAddress][j].releaseDate) {
	            uint256 temp = lockList[lockedAddress][j].amount;
	            lockedAmount += temp;
	        }
	    }
	    return lockedAmount;
	}
	
	/**
     * @return the total amount of locked funds of a given address.
     * @param lockedAddress The address to check.
     */
	function getAvailableBalance(address lockedAddress) public view returns(uint256 _amount) {
	    uint256 bal = balanceOf(lockedAddress);
	    uint256 locked = getLockedAmount(lockedAddress);
	    return bal.sub(locked);
	}
	
	/**
     * @dev function that burns an amount of the token of a given account.
     * @param _amount The amount that will be burnt.
     */
    function burn(uint256 _amount) public whenNotPaused {
        _burn(msg.sender, _amount);
    }
    
    function () payable external {   
        revert();
    }
    
    
    // the following functions are useful for frontend dApps
	
	/**
     * @return the list of all addresses that have at least a fund locked currently or in the past
     */
	function getLockedAddresses() public view returns (address[] memory) {
	    return lockedAddressList;
	}
	
	/**
     * @return the number of addresses that have at least a fund locked currently or in the past
     */
	function getNumberOfLockedAddresses() public view returns (uint256 _count) {
	    return lockedAddressList.length;
	}
	    
	    
	/**
     * @return the number of addresses that have at least a fund locked currently
     */
	function getNumberOfLockedAddressesCurrently() public view returns (uint256 _count) {
	    uint256 count=0;
	    for(uint256 i = 0; i<lockedAddressList.length; i++) {
	        if (getLockedAmount(lockedAddressList[i])>0) count++;
	    }
	    return count;
	}
	    
	/**
     * @return the list of all addresses that have at least a fund locked currently
     */
	function getLockedAddressesCurrently() public view returns (address[] memory) {
	    address [] memory list = new address[](getNumberOfLockedAddressesCurrently());
	    uint256 j = 0;
	    for(uint256 i = 0; i<lockedAddressList.length; i++) {
	        if (getLockedAmount(lockedAddressList[i])>0) {
	            list[j] = lockedAddressList[i];
	            j++;
	        }
	    }
	    
        return list;
    }
    
    
	/**
     * @return the total amount of locked funds at the current time
     */
	function getLockedAmountTotal() public view returns(uint256 _amount) {
	    uint256 sum =0;
	    for(uint256 i = 0; i<lockedAddressList.length; i++) {
	        uint256 lockedAmount = getLockedAmount(lockedAddressList[i]);
    	    sum = sum.add(lockedAmount);
	    }
	    return sum;
	}
	    
	    
	/**
	 * @return the total amount of circulating coins that are not locked at the current time
	 * 
	 */
	function getCirculatingSupplyTotal() public view returns(uint256 _amount) {
	    return totalSupply().sub(getLockedAmountTotal());
	}
    
    /**
	 * @return the total amount of burned coins
	 * 
	 */
	function getBurnedAmountTotal() public view returns(uint256 _amount) {
	    return totalCoins.sub(totalSupply());
	}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lockedAddress","type":"address"}],"name":"getAvailableBalance","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBurnedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCirculatingSupplyTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAddressesCurrently","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lockedAddress","type":"address"}],"name":"getLockedAmount","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getLockedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfLockedAddresses","outputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfLockedAddressesCurrently","outputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockList","outputs":[{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_releaseDate","type":"uint256"}],"name":"transferAndLock","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"yearsMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

6080604052600060025573a79f4620a0d825da8fa8adc07da8aea0076416cb600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735e241dfdcc5dd525b7c9f34b72561a6055ae3f99600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073049b040769a633a1008268ae815fc5b0fce14a2a600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011557600080fd5b506040518060400160405280600581526020017f5842616e6b0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5842410000000000000000000000000000000000000000000000000000000000815250600633600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360146101000a81548160ff02191690831515021790555082600490805190602001906200027592919062000909565b5081600590805190602001906200028e92919062000909565b5080600660006101000a81548160ff021916908360ff1602179055505050506361cf9980600b600060018152602001908152602001600020819055506363b0cd00600b600060028152602001908152602001600020819055506365920080600b600060038152602001908152602001600020819055506367748580600b60006004815260200190815260200160002081905550620003316200052e60201b60201c565b60ff16600a0a629896800260098190555062000365620003566200054560201b60201c565b6009546200056f60201b60201c565b620003b8600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200039c6200052e60201b60201c565b60ff16600a0a62150ea002620006d060201b6200232e1760201c565b506200040c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003f06200052e60201b60201c565b60ff16600a0a620668a002620006d060201b6200232e1760201c565b5062000460600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620004446200052e60201b60201c565b60ff16600a0a620f424002620006d060201b6200232e1760201c565b506000600190505b600481116200052757620004c4600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620004a86200052e60201b60201c565b60ff16600a0a62150ea002620006d060201b6200232e1760201c565b5062000518600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620004fc6200052e60201b60201c565b60ff16600a0a620668a002620006d060201b6200232e1760201c565b50808060010191505062000468565b50620009b8565b6000600660009054906101000a900460ff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005aa57600080fd5b620005c681600254620006ef60201b62001fa81790919060201c565b60028190555062000624816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006ef60201b62001fa81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000620006e53384846200070f60201b60201c565b6001905092915050565b6000808284019050838110156200070557600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200074a57600080fd5b620007a2816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620008e860201b62001ed71790919060201c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200083c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006ef60201b62001fa81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115620008f857600080fd5b600082840390508091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200094c57805160ff19168380011785556200097d565b828001600101855582156200097d579182015b828111156200097c5782518255916020019190600101906200095f565b5b5090506200098c919062000990565b5090565b620009b591905b80821115620009b157600081600090555060010162000997565b5090565b90565b61248e80620009c86000396000f3fe6080604052600436106101e35760003560e01c8063728e9e2411610102578063929ec53711610095578063c2091cfb11610064578063c2091cfb14610a9b578063c8eb119714610b07578063dd62ed3e14610b7d578063f2fde38b14610c02576101e3565b8063929ec537146108c057806395d89b4114610925578063a457c2d7146109b5578063a9059cbb14610a28576101e3565b80638da5cb5b116100d15780638da5cb5b146107c05780638e94ae5f146108175780638f32d59b1461084257806390e0f93d14610871576101e3565b8063728e9e241461069557806372d47d36146106c05780638456cb591461072c57806384d5d94414610743576101e3565b8063395093511161017a5780636c24a76f116101495780636c24a76f1461054f5780636ebcf607146105b457806370a0823114610619578063715018a61461067e576101e3565b8063395093511461045b5780633f4ba83a146104ce57806342966c68146104e55780635c975abb14610520576101e3565b80631ec4280a116101b65780631ec4280a1461034157806323b872dd1461036c5780632c41f2a6146103ff578063313ce5671461042a576101e3565b806306fdde03146101e8578063095ea7b3146102785780630d6b44eb146102eb57806318160ddd14610316575b600080fd5b3480156101f457600080fd5b506101fd610c53565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023d578082015181840152602081019050610222565b50505050905090810190601f16801561026a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028457600080fd5b506102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf5565b604051808215151515815260200191505060405180910390f35b3480156102f757600080fd5b50610300610d0c565b6040518082815260200191505060405180910390f35b34801561032257600080fd5b5061032b610d8c565b6040518082815260200191505060405180910390f35b34801561034d57600080fd5b50610356610d96565b6040518082815260200191505060405180910390f35b34801561037857600080fd5b506103e56004803603606081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db9565b604051808215151515815260200191505060405180910390f35b34801561040b57600080fd5b50610414610ef1565b6040518082815260200191505060405180910390f35b34801561043657600080fd5b5061043f610f19565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046757600080fd5b506104b46004803603604081101561047e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f30565b604051808215151515815260200191505060405180910390f35b3480156104da57600080fd5b506104e3610fd5565b005b3480156104f157600080fd5b5061051e6004803603602081101561050857600080fd5b81019080803590602001909291905050506110e8565b005b34801561052c57600080fd5b50610535611178565b604051808215151515815260200191505060405180910390f35b34801561055b57600080fd5b5061059e6004803603602081101561057257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118f565b6040518082815260200191505060405180910390f35b3480156105c057600080fd5b50610603600480360360208110156105d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c6565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111de565b6040518082815260200191505060405180910390f35b34801561068a57600080fd5b50610693611226565b005b3480156106a157600080fd5b506106aa6112f8565b6040518082815260200191505060405180910390f35b3480156106cc57600080fd5b506106d5611305565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107185780820151818401526020810190506106fd565b505050509050019250505060405180910390f35b34801561073857600080fd5b50610741611393565b005b34801561074f57600080fd5b506107a66004803603606081101561076657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506114a7565b604051808215151515815260200191505060405180910390f35b3480156107cc57600080fd5b506107d56116d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082357600080fd5b5061082c6116ff565b6040518082815260200191505060405180910390f35b34801561084e57600080fd5b50610857611788565b604051808215151515815260200191505060405180910390f35b34801561087d57600080fd5b506108aa6004803603602081101561089457600080fd5b81019080803590602001909291905050506117e0565b6040518082815260200191505060405180910390f35b3480156108cc57600080fd5b5061090f600480360360208110156108e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117f8565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a611930565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561097a57808201518184015260208101905061095f565b50505050905090810190601f1680156109a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109c157600080fd5b50610a0e600480360360408110156109d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d2565b604051808215151515815260200191505060405180910390f35b348015610a3457600080fd5b50610a8160048036036040811015610a4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a77565b604051808215151515815260200191505060405180910390f35b348015610aa757600080fd5b50610ab0611b5d565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610af3578082015181840152602081019050610ad8565b505050509050019250505060405180910390f35b348015610b1357600080fd5b50610b6060048036036040811015610b2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c96565b604051808381526020018281526020019250505060405180910390f35b348015610b8957600080fd5b50610bec60048036036040811015610ba057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd4565b6040518082815260200191505060405180910390f35b348015610c0e57600080fd5b50610c5160048036036020811015610c2557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d5b565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d02338484611d78565b6001905092915050565b6000806000905060008090505b600c80549050811015610d84576000610d68600c8381548110610d3857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b1115610d775781806001019250505b8080600101915050610d19565b508091505090565b6000600254905090565b6000610db4610da3610d8c565b600954611ed790919063ffffffff16565b905090565b6000600360149054906101000a900460ff1615610e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e7857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb257600080fd5b610ebc8433611cd4565b821115610ec857600080fd5b610ed18461118f565b821115610edd57600080fd5b610ee8848484611ef7565b90509392505050565b6000610f14610efe6116ff565b610f06610d8c565b611ed790919063ffffffff16565b905090565b6000600660009054906101000a900460ff16905090565b6000610fcb3384610fc685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa890919063ffffffff16565b611d78565b6001905092915050565b610fdd611788565b610fe657600080fd5b600360149054906101000a900460ff16611068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600360149054906101000a900460ff161561116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111753382611fc7565b50565b6000600360149054906101000a900460ff16905090565b60008061119b836111de565b905060006111a8846117f8565b90506111bd8183611ed790919063ffffffff16565b92505050919050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122e611788565b61123757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c80549050905090565b6060600c80548060200260200160405190810160405280929190818152602001828054801561138957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161133f575b5050505050905090565b61139b611788565b6113a457600080fd5b600360149054906101000a900460ff1615611427576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600360149054906101000a900460ff161561152c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115346116d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461156b57600080fd5b611576338585612164565b6000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050141561162857600c8490806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b61163061243f565b6040518060400160405280848152602001858152509050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806000905060008090505b600c8054905081101561178057600061175b600c838154811061172b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b90506117708184611fa890919063ffffffff16565b925050808060010191505061170c565b508091505090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600b6020528060005260406000206000915090505481565b6000806000905060008090505b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561192657600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061189957fe5b906000526020600020906002020160000154421015611919576000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106118fe57fe5b90600052602060002090600202016001015490508083019250505b8080600101915050611805565b5080915050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119c85780601f1061199d576101008083540402835291602001916119c8565b820191906000526020600020905b8154815290600101906020018083116119ab57829003601f168201915b5050505050905090565b6000611a6d3384611a6885600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b611d78565b6001905092915050565b6000600360149054906101000a900460ff1615611afc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b3657600080fd5b611b3f3361118f565b821115611b4b57600080fd5b611b55838361232e565b905092915050565b606080611b68610d0c565b604051908082528060200260200182016040528015611b965781602001602082028038833980820191505090505b509050600080905060008090505b600c80549050811015611c8d576000611bf3600c8381548110611bc357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b1115611c8057600c8181548110611c0657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110611c3d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806001019250505b8080600101915050611ba4565b50819250505090565b600a6020528160005260406000208181548110611caf57fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d63611788565b611d6c57600080fd5b611d7581612345565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dec57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600082821115611ee657600080fd5b600082840390508091505092915050565b6000611f04848484612164565b611f9d8433611f9885600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b611d78565b600190509392505050565b600080828401905083811015611fbd57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561200157600080fd5b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561204c57600080fd5b61206181600254611ed790919063ffffffff16565b6002819055506120b8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219e57600080fd5b6121ef816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612282816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061233b338484612164565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561237f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60405180604001604052806000815260200160008152509056fea265627a7a723158200b0667cc9eb415b400c2408c3855ad3212f52266be1d9767d008e32e70a494bb64736f6c63430005110032

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063728e9e2411610102578063929ec53711610095578063c2091cfb11610064578063c2091cfb14610a9b578063c8eb119714610b07578063dd62ed3e14610b7d578063f2fde38b14610c02576101e3565b8063929ec537146108c057806395d89b4114610925578063a457c2d7146109b5578063a9059cbb14610a28576101e3565b80638da5cb5b116100d15780638da5cb5b146107c05780638e94ae5f146108175780638f32d59b1461084257806390e0f93d14610871576101e3565b8063728e9e241461069557806372d47d36146106c05780638456cb591461072c57806384d5d94414610743576101e3565b8063395093511161017a5780636c24a76f116101495780636c24a76f1461054f5780636ebcf607146105b457806370a0823114610619578063715018a61461067e576101e3565b8063395093511461045b5780633f4ba83a146104ce57806342966c68146104e55780635c975abb14610520576101e3565b80631ec4280a116101b65780631ec4280a1461034157806323b872dd1461036c5780632c41f2a6146103ff578063313ce5671461042a576101e3565b806306fdde03146101e8578063095ea7b3146102785780630d6b44eb146102eb57806318160ddd14610316575b600080fd5b3480156101f457600080fd5b506101fd610c53565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023d578082015181840152602081019050610222565b50505050905090810190601f16801561026a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028457600080fd5b506102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cf5565b604051808215151515815260200191505060405180910390f35b3480156102f757600080fd5b50610300610d0c565b6040518082815260200191505060405180910390f35b34801561032257600080fd5b5061032b610d8c565b6040518082815260200191505060405180910390f35b34801561034d57600080fd5b50610356610d96565b6040518082815260200191505060405180910390f35b34801561037857600080fd5b506103e56004803603606081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db9565b604051808215151515815260200191505060405180910390f35b34801561040b57600080fd5b50610414610ef1565b6040518082815260200191505060405180910390f35b34801561043657600080fd5b5061043f610f19565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046757600080fd5b506104b46004803603604081101561047e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f30565b604051808215151515815260200191505060405180910390f35b3480156104da57600080fd5b506104e3610fd5565b005b3480156104f157600080fd5b5061051e6004803603602081101561050857600080fd5b81019080803590602001909291905050506110e8565b005b34801561052c57600080fd5b50610535611178565b604051808215151515815260200191505060405180910390f35b34801561055b57600080fd5b5061059e6004803603602081101561057257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118f565b6040518082815260200191505060405180910390f35b3480156105c057600080fd5b50610603600480360360208110156105d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c6565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106686004803603602081101561063c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111de565b6040518082815260200191505060405180910390f35b34801561068a57600080fd5b50610693611226565b005b3480156106a157600080fd5b506106aa6112f8565b6040518082815260200191505060405180910390f35b3480156106cc57600080fd5b506106d5611305565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156107185780820151818401526020810190506106fd565b505050509050019250505060405180910390f35b34801561073857600080fd5b50610741611393565b005b34801561074f57600080fd5b506107a66004803603606081101561076657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506114a7565b604051808215151515815260200191505060405180910390f35b3480156107cc57600080fd5b506107d56116d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082357600080fd5b5061082c6116ff565b6040518082815260200191505060405180910390f35b34801561084e57600080fd5b50610857611788565b604051808215151515815260200191505060405180910390f35b34801561087d57600080fd5b506108aa6004803603602081101561089457600080fd5b81019080803590602001909291905050506117e0565b6040518082815260200191505060405180910390f35b3480156108cc57600080fd5b5061090f600480360360208110156108e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117f8565b6040518082815260200191505060405180910390f35b34801561093157600080fd5b5061093a611930565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561097a57808201518184015260208101905061095f565b50505050905090810190601f1680156109a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109c157600080fd5b50610a0e600480360360408110156109d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119d2565b604051808215151515815260200191505060405180910390f35b348015610a3457600080fd5b50610a8160048036036040811015610a4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a77565b604051808215151515815260200191505060405180910390f35b348015610aa757600080fd5b50610ab0611b5d565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610af3578082015181840152602081019050610ad8565b505050509050019250505060405180910390f35b348015610b1357600080fd5b50610b6060048036036040811015610b2a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c96565b604051808381526020018281526020019250505060405180910390f35b348015610b8957600080fd5b50610bec60048036036040811015610ba057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd4565b6040518082815260200191505060405180910390f35b348015610c0e57600080fd5b50610c5160048036036020811015610c2557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d5b565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b5050505050905090565b6000610d02338484611d78565b6001905092915050565b6000806000905060008090505b600c80549050811015610d84576000610d68600c8381548110610d3857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b1115610d775781806001019250505b8080600101915050610d19565b508091505090565b6000600254905090565b6000610db4610da3610d8c565b600954611ed790919063ffffffff16565b905090565b6000600360149054906101000a900460ff1615610e3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e7857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb257600080fd5b610ebc8433611cd4565b821115610ec857600080fd5b610ed18461118f565b821115610edd57600080fd5b610ee8848484611ef7565b90509392505050565b6000610f14610efe6116ff565b610f06610d8c565b611ed790919063ffffffff16565b905090565b6000600660009054906101000a900460ff16905090565b6000610fcb3384610fc685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa890919063ffffffff16565b611d78565b6001905092915050565b610fdd611788565b610fe657600080fd5b600360149054906101000a900460ff16611068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600360149054906101000a900460ff161561116b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111753382611fc7565b50565b6000600360149054906101000a900460ff16905090565b60008061119b836111de565b905060006111a8846117f8565b90506111bd8183611ed790919063ffffffff16565b92505050919050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122e611788565b61123757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c80549050905090565b6060600c80548060200260200160405190810160405280929190818152602001828054801561138957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161133f575b5050505050905090565b61139b611788565b6113a457600080fd5b600360149054906101000a900460ff1615611427576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600360149054906101000a900460ff161561152c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115346116d5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461156b57600080fd5b611576338585612164565b6000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050141561162857600c8490806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b61163061243f565b6040518060400160405280848152602001858152509050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806000905060008090505b600c8054905081101561178057600061175b600c838154811061172b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b90506117708184611fa890919063ffffffff16565b925050808060010191505061170c565b508091505090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600b6020528060005260406000206000915090505481565b6000806000905060008090505b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905081101561192657600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061189957fe5b906000526020600020906002020160000154421015611919576000600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106118fe57fe5b90600052602060002090600202016001015490508083019250505b8080600101915050611805565b5080915050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119c85780601f1061199d576101008083540402835291602001916119c8565b820191906000526020600020905b8154815290600101906020018083116119ab57829003601f168201915b5050505050905090565b6000611a6d3384611a6885600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b611d78565b6001905092915050565b6000600360149054906101000a900460ff1615611afc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b3657600080fd5b611b3f3361118f565b821115611b4b57600080fd5b611b55838361232e565b905092915050565b606080611b68610d0c565b604051908082528060200260200182016040528015611b965781602001602082028038833980820191505090505b509050600080905060008090505b600c80549050811015611c8d576000611bf3600c8381548110611bc357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117f8565b1115611c8057600c8181548110611c0657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110611c3d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806001019250505b8080600101915050611ba4565b50819250505090565b600a6020528160005260406000208181548110611caf57fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d63611788565b611d6c57600080fd5b611d7581612345565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dec57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600082821115611ee657600080fd5b600082840390508091505092915050565b6000611f04848484612164565b611f9d8433611f9885600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b611d78565b600190509392505050565b600080828401905083811015611fbd57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561200157600080fd5b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561204c57600080fd5b61206181600254611ed790919063ffffffff16565b6002819055506120b8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219e57600080fd5b6121ef816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed790919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612282816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061233b338484612164565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561237f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60405180604001604052806000815260200160008152509056fea265627a7a723158200b0667cc9eb415b400c2408c3855ad3212f52266be1d9767d008e32e70a494bb64736f6c63430005110032

Deployed Bytecode Sourcemap

13847:7562:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19086:8;;;13437:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13437:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13437:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4837:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4837:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4837:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19756:264;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19756:264:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3061:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3061:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21282:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21282:118:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16619:378;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16619:378:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16619:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21071:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21071:135:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13753:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13753:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6177:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6177:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6177:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12714:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12714:117:0;;;:::i;:::-;;18934:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18934:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18934:97:0;;;;;;;;;;;;;;;;;:::i;:::-;;12303:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12303:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18555:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18555:225:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18555:225:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2805:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2805:45:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2805:45:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3371:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3371:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3371:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11316:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11316:140:0;;;:::i;:::-;;19522:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19522:119:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19297:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19297:106:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19297:106:0;;;;;;;;;;;;;;;;;12591:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12591:115:0;;;:::i;:::-;;17415:457;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17415:457:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17415:457:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10526:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10526:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20652:293;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20652:293:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10861:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10861:92:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14332:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14332:38:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14332:38:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18019:395;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18019:395:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18019:395:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13587:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13587:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13587:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6876:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6876:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6876:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15958:255;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15958:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15958:255:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20130:423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20130:423:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20130:423:0;;;;;;;;;;;;;;;;;14278:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14278:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14278:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;3816:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3816:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3816:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11633:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11633:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11633:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13437:83;13474:13;13507:5;13500:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13437:83;:::o;4837:148::-;4902:4;4919:36;4928:10;4940:7;4949:5;4919:8;:36::i;:::-;4973:4;4966:11;;4837:148;;;;:::o;19756:264::-;19824:14;19848:13;19862:1;19848:15;;19875:9;19887:1;19875:13;;19871:125;19892:17;:24;;;;19890:1;:26;19871:125;;;19977:1;19939:37;19955:17;19973:1;19955:20;;;;;;;;;;;;;;;;;;;;;;;;;19939:15;:37::i;:::-;:39;19935:52;;;19980:7;;;;;;;19935:52;19918:3;;;;;;;19871:125;;;;20010:5;20003:12;;;19756:264;:::o;3061:91::-;3105:7;3132:12;;3125:19;;3061:91;:::o;21282:118::-;21334:15;21366:29;21381:13;:11;:13::i;:::-;21366:10;;:14;;:29;;;;:::i;:::-;21359:36;;21282:118;:::o;16619:378::-;16722:4;12434:7;;;;;;;;;;;12433:8;12425:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16764:1;16747:19;;:5;:19;;;;16739:28;;;;;;16807:1;16786:23;;:9;:23;;;;16778:32;;;;;;16840:28;16850:5;16857:10;16840:9;:28::i;:::-;16829:7;:39;;16821:48;;;;;;16899:26;16919:5;16899:19;:26::i;:::-;16888:7;:37;;16880:46;;;;;;16944:45;16963:5;16970:9;16981:7;16944:18;:45::i;:::-;16937:52;;16619:378;;;;;:::o;21071:135::-;21128:15;21160:41;21178:22;:20;:22::i;:::-;21160:13;:11;:13::i;:::-;:17;;:41;;;;:::i;:::-;21153:48;;21071:135;:::o;13753:83::-;13794:5;13819:9;;;;;;;;;;;13812:16;;13753:83;:::o;6177:203::-;6257:4;6274:76;6283:10;6295:7;6304:45;6338:10;6304:8;:20;6313:10;6304:20;;;;;;;;;;;;;;;:29;6325:7;6304:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;6274:8;:76::i;:::-;6368:4;6361:11;;6177:203;;;;:::o;12714:117::-;10738:9;:7;:9::i;:::-;10730:18;;;;;;12531:7;;;;;;;;;;;12523:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12782:5;12772:7;;:15;;;;;;;;;;;;;;;;;;12803:20;12812:10;12803:20;;;;;;;;;;;;;;;;;;;;;;12714:117::o;18934:97::-;12434:7;;;;;;;;;;;12433:8;12425:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18997:26;19003:10;19015:7;18997:5;:26::i;:::-;18934:97;:::o;12303:78::-;12342:4;12366:7;;;;;;;;;;;12359:14;;12303:78;:::o;18555:225::-;18627:15;18652:11;18666:24;18676:13;18666:9;:24::i;:::-;18652:38;;18698:14;18715:30;18731:13;18715:15;:30::i;:::-;18698:47;;18760:15;18768:6;18760:3;:7;;:15;;;;:::i;:::-;18753:22;;;;18555:225;;;:::o;2805:45::-;;;;;;;;;;;;;;;;;:::o;3371:106::-;3426:7;3453:9;:16;3463:5;3453:16;;;;;;;;;;;;;;;;3446:23;;3371:106;;;:::o;11316:140::-;10738:9;:7;:9::i;:::-;10730:18;;;;;;11415:1;11378:40;;11399:6;;;;;;;;;;;11378:40;;;;;;;;;;;;11446:1;11429:6;;:19;;;;;;;;;;;;;;;;;;11316:140::o;19522:119::-;19581:14;19612:17;:24;;;;19605:31;;19522:119;:::o;19297:106::-;19348:16;19381:17;19374:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19297:106;:::o;12591:115::-;10738:9;:7;:9::i;:::-;10730:18;;;;;;12434:7;;;;;;;;;;;12433:8;12425:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12660:4;12650:7;;:14;;;;;;;;;;;;;;;;;;12680:18;12687:10;12680:18;;;;;;;;;;;;;;;;;;;;;;12591:115::o;17415:457::-;17528:12;12434:7;;;;;;;;;;;12433:8;12425:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17572:7;:5;:7::i;:::-;17558:21;;:10;:21;;;17550:30;;;;;;17591:45;17607:10;17618:9;17628:7;17591:15;:45::i;:::-;17683:1;17655:8;:19;17664:9;17655:19;;;;;;;;;;;;;;;:26;;;;:29;17651:68;;;17686:17;17709:9;17686:33;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;17686:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17651:68;17731:20;;:::i;:::-;17754:52;;;;;;;;17792:12;17754:52;;;;17771:7;17754:52;;;17731:75;;17811:8;:19;17820:9;17811:19;;;;;;;;;;;;;;;17836:4;17811:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;17811:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:4;17856:11;;;17415:457;;;;;:::o;10526:79::-;10564:7;10591:6;;;;;;;;;;;10584:13;;10526:79;:::o;20652:293::-;20704:15;20729:11;20742:1;20729:14;;20755:9;20767:1;20755:13;;20751:172;20772:17;:24;;;;20770:1;:26;20751:172;;;20815:20;20838:37;20854:17;20872:1;20854:20;;;;;;;;;;;;;;;;;;;;;;;;;20838:15;:37::i;:::-;20815:60;;20893:21;20901:12;20893:3;:7;;:21;;;;:::i;:::-;20887:27;;20751:172;20798:3;;;;;;;20751:172;;;;20937:3;20930:10;;;20652:293;:::o;10861:92::-;10901:4;10939:6;;;;;;;;;;;10925:20;;:10;:20;;;10918:27;;10861:92;:::o;14332:38::-;;;;;;;;;;;;;;;;;:::o;18019:395::-;18087:15;18112:20;18134:1;18112:23;;18147:9;18159:1;18147:13;;18143:240;18164:8;:23;18173:13;18164:23;;;;;;;;;;;;;;;:30;;;;18162:1;:32;18143:240;;;18222:8;:23;18231:13;18222:23;;;;;;;;;;;;;;;18246:1;18222:26;;;;;;;;;;;;;;;;;;:38;;;18216:3;:44;18213:162;;;18278:12;18293:8;:23;18302:13;18293:23;;;;;;;;;;;;;;;18317:1;18293:26;;;;;;;;;;;;;;;;;;:33;;;18278:48;;18358:4;18342:20;;;;18213:162;;18196:3;;;;;;;18143:240;;;;18397:12;18390:19;;;18019:395;;;:::o;13587:87::-;13626:13;13659:7;13652:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13587:87;:::o;6876:213::-;6961:4;6978:81;6987:10;6999:7;7008:50;7042:15;7008:8;:20;7017:10;7008:20;;;;;;;;;;;;;;;:29;7029:7;7008:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;6978:8;:81::i;:::-;7077:4;7070:11;;6876:213;;;;:::o;15958:255::-;16042:12;12434:7;;;;;;;;;;;12433:8;12425:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16093:1;16072:23;;:9;:23;;;;16064:32;;;;;;16124:31;16144:10;16124:19;:31::i;:::-;16113:7;:42;;16105:51;;;;;;16174:34;16189:9;16200:7;16174:14;:34::i;:::-;16167:41;;15958:255;;;;:::o;20130:423::-;20190:16;20216:22;20255:37;:35;:37::i;:::-;20241:52;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;20241:52:0;;;;20216:77;;20301:9;20313:1;20301:13;;20326:9;20338:1;20326:13;;20322:195;20343:17;:24;;;;20341:1;:26;20322:195;;;20428:1;20390:37;20406:17;20424:1;20406:20;;;;;;;;;;;;;;;;;;;;;;;;;20390:15;:37::i;:::-;:39;20386:123;;;20457:17;20475:1;20457:20;;;;;;;;;;;;;;;;;;;;;;;;;20447:4;20452:1;20447:7;;;;;;;;;;;;;:30;;;;;;;;;;;20493:3;;;;;;;20386:123;20369:3;;;;;;;20322:195;;;;20541:4;20534:11;;;;20130:423;:::o;14278:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3816:131::-;3888:7;3915:8;:15;3924:5;3915:15;;;;;;;;;;;;;;;:24;3931:7;3915:24;;;;;;;;;;;;;;;;3908:31;;3816:131;;;;:::o;11633:109::-;10738:9;:7;:9::i;:::-;10730:18;;;;;;11706:28;11725:8;11706:18;:28::i;:::-;11633:109;:::o;9022:254::-;9134:1;9115:21;;:7;:21;;;;9107:30;;;;;;9173:1;9156:19;;:5;:19;;;;9148:28;;;;;;9216:5;9189:8;:15;9198:5;9189:15;;;;;;;;;;;;;;;:24;9205:7;9189:24;;;;;;;;;;;;;;;:32;;;;9253:7;9237:31;;9246:5;9237:31;;;9262:5;9237:31;;;;;;;;;;;;;;;;;;9022:254;;;:::o;1952:150::-;2010:7;2043:1;2038;:6;;2030:15;;;;;;2056:9;2072:1;2068;:5;2056:17;;2093:1;2086:8;;;1952:150;;;;:::o;5458:228::-;5537:4;5554:26;5564:4;5570:2;5574:5;5554:9;:26::i;:::-;5591:65;5600:4;5606:10;5618:37;5649:5;5618:8;:14;5627:4;5618:14;;;;;;;;;;;;;;;:26;5633:10;5618:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;5591:8;:65::i;:::-;5674:4;5667:11;;5458:228;;;;;:::o;2190:150::-;2248:7;2268:9;2284:1;2280;:5;2268:17;;2309:1;2304;:6;;2296:15;;;;;;2331:1;2324:8;;;2190:150;;;;:::o;8433:314::-;8527:1;8508:21;;:7;:21;;;;8500:30;;;;;;8558:9;:18;8568:7;8558:18;;;;;;;;;;;;;;;;8549:5;:27;;8541:36;;;;;;8603:23;8620:5;8603:12;;:16;;:23;;;;:::i;:::-;8588:12;:38;;;;8658:29;8681:5;8658:9;:18;8668:7;8658:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;8637:9;:18;8647:7;8637:18;;;;;;;;;;;;;;;:50;;;;8729:1;8703:36;;8712:7;8703:36;;;8733:5;8703:36;;;;;;;;;;;;;;;;;;8433:314;;:::o;7316:262::-;7418:1;7404:16;;:2;:16;;;;7396:25;;;;;;7452:26;7472:5;7452:9;:15;7462:4;7452:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;7434:9;:15;7444:4;7434:15;;;;;;;;;;;;;;;:44;;;;7505:24;7523:5;7505:9;:13;7515:2;7505:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;7489:9;:13;7499:2;7489:13;;;;;;;;;;;;;;;:40;;;;7560:2;7545:25;;7554:4;7545:25;;;7564:5;7545:25;;;;;;;;;;;;;;;;;;7316:262;;;:::o;4121:140::-;4182:4;4199:32;4209:10;4221:2;4225:5;4199:9;:32::i;:::-;4249:4;4242:11;;4121:140;;;;:::o;11892:187::-;11986:1;11966:22;;:8;:22;;;;11958:31;;;;;;12034:8;12005:38;;12026:6;;;;;;;;;;;12005:38;;;;;;;;;;;;12063:8;12054:6;;:17;;;;;;;;;;;;;;;;;;11892:187;:::o;13847:7562::-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://0b0667cc9eb415b400c2408c3855ad3212f52266be1d9767d008e32e70a494bb
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.