POL Price: $0.3089 (-1.69%)
 

Overview

Max Total Supply

88,872,104.020326967764714848 L3USD

Holders

130 (0.00%)

Total Transfers

-

Market

Price

$4.75 @ 15.377161 POL

Onchain Market Cap

$422,142,494.10

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The stablecoin designed to support the Lif3 Ecosystem.

Contract Source Code Verified (Exact Match)

Contract Name:
L3USD

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion
File 1 of 1 : L3USD.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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.
      */
    constructor() {
        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
 */
abstract contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() virtual public view returns (uint);
    function balanceOf(address who) virtual public view returns (uint);
    function transfer(address to, uint value) virtual public;
    event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
abstract contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) virtual public view returns (uint);
    function transferFrom(address from, address to, uint value) virtual public;
    function approve(address spender, uint value) virtual public;
    event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
abstract 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 basisPointsRate = 0;
    uint public maximumFee = 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) override virtual public onlyPayloadSize(2 * 32) {
        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        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);
            emit Transfer(msg.sender, owner, fee);
        }
        emit Transfer(msg.sender, _to, sendAmount);
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return balance An uint representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) override virtual public view 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
 */
abstract contract StandardToken is BasicToken, ERC20 {
    using SafeMath for uint;

    mapping (address => mapping (address => uint)) public allowed;

    uint public constant MAX_UINT = 2**256 - 1;

    /**
    * @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) override virtual public onlyPayloadSize(3 * 32) {
        uint _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(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        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);
            emit Transfer(_from, owner, fee);
        }
        emit 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) override virtual 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;
        emit 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 remaining A uint specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) override virtual public view returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
abstract contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}

abstract contract BlackList is Ownable, BasicToken {

    /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded L3USD) ///////
    function getBlackListStatus(address _maker) external view returns (bool) {
        return isBlackListed[_maker];
    }

    function getOwner() external view returns (address) {
        return owner;
    }

    mapping (address => bool) public isBlackListed;
    
    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        emit AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        emit RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        emit DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);

}

abstract 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) virtual public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) virtual public;
    function approveByLegacy(address from, address spender, uint value) virtual public;
}

contract L3USD is Pausable, StandardToken, BlackList {
    using SafeMath for uint;

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;
    mapping(address => bool) public minters;

    //  The contract can be initialized with a number of tokens
    //  All the tokens are deposited to the owner address
    constructor() {
        _totalSupply = 0;
        name = "L3USD";
        symbol = "L3USD";
        decimals = 18;
        deprecated = false;
        minters[owner] = true;
    }

    modifier onlyMinter() {
        require(minters[msg.sender]);
        _;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) override public whenNotPaused {
        require(!isBlackListed[msg.sender]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).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) override public whenNotPaused {
        require(!isBlackListed[_from]);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).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) override public view returns (uint) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) override public onlyPayloadSize(2 * 32) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).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) override public view returns (uint remaining) {
        if (deprecated) {
            return StandardToken(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        emit Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() override public view returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }

    // Issue a new amount of tokens
    // these tokens are deposited into the owner address
    //
    // @param _amount Number of tokens to be issued
    function issue(uint amount) public onlyMinter {
        require(_totalSupply + amount > _totalSupply);
        require(balances[msg.sender] + amount > balances[msg.sender]);

        balances[msg.sender] += amount;
        _totalSupply += amount;
        emit Issue(msg.sender, 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 redeem(uint amount) public onlyOwner {
        require(_totalSupply >= amount);
        require(balances[owner] >= amount);

        _totalSupply -= amount;
        balances[owner] -= amount;
        emit Redeem(amount);
    }

    function addMinter(address newMinter) public onlyOwner {
        require(newMinter != address(0));
        require(!minters[newMinter]);
        minters[newMinter] = true;
        emit AddMinter(newMinter);
    }

    function removeMinter(address minterToRemove) public onlyOwner {
        require(minters[minterToRemove]);
        minters[minterToRemove] = false;
        emit RemoveMinter(minterToRemove);
    }

    function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
        // Ensure transparency by hardcoding limit beyond which fees can never be added
        require(newBasisPoints < 20);
        require(newMaxFee < 50);

        basisPointsRate = newBasisPoints;
        maximumFee = newMaxFee.mul(10**decimals);

        emit Params(basisPointsRate, maximumFee);
    }

    // Called when new token are issued
    event Issue(address minter, uint amount);

    // Called when tokens are redeemed
    event Redeem(uint amount);

    // Called when contract is deprecated
    event Deprecate(address newAddress);

    // Called if contract ever adds fees
    event Params(uint feeBasisPoints, uint maxFee);

    // Called when minter is added
    event AddMinter(address newMinter);

    // Called when minter is removed
    event RemoveMinter(address removedMinter);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 9999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removedMinter","type":"address"}],"name":"RemoveMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"MAX_UINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basisPointsRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deprecated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maximumFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minterToRemove","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBasisPoints","type":"uint256"},{"internalType":"uint256","name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526000805460ff60a01b1916815560038190556004553480156200002657600080fd5b50600080546001600160a01b0319163317815560015560408051808201909152600580825264130cd554d160da1b60209092019182526200006a91600791620000d5565b5060408051808201909152600580825264130cd554d160da1b60209092019182526200009991600891620000d5565b506012600955600a805460ff60a01b19169055600080546001600160a01b03168152600b60205260409020805460ff19166001179055620001b8565b828054620000e3906200017b565b90600052602060002090601f01602090048101928262000107576000855562000152565b82601f106200012257805160ff191683800117855562000152565b8280016001018555821562000152579182015b828111156200015257825182559160200191906001019062000135565b506200016092915062000164565b5090565b5b8082111562000160576000815560010162000165565b600181811c908216806200019057607f821691505b60208210811415620001b257634e487b7160e01b600052602260045260246000fd5b50919050565b611b5980620001c86000396000f3fe608060405234801561001057600080fd5b50600436106102415760003560e01c806370a0823111610145578063db006a75116100bd578063e4997dc51161008c578063f2fde38b11610071578063f2fde38b146104fb578063f3bdc2281461050e578063f46eccc41461052157600080fd5b8063e4997dc5146104df578063e5b5019a146104f257600080fd5b8063db006a751461048d578063dd62ed3e146104a0578063dd644f72146104b3578063e47d6060146104bc57600080fd5b806395d89b4111610114578063a9059cbb116100f9578063a9059cbb14610454578063c0324c7714610467578063cc872b661461047a57600080fd5b806395d89b4114610439578063983b2d561461044157600080fd5b806370a08231146103fa5780638456cb591461040d578063893d20e8146104155780638da5cb5b1461042657600080fd5b806327e235e3116101d85780633eaaf86b116101a757806359bf1abe1161018c57806359bf1abe1461037e5780635c658165146103aa5780635c975abb146103d557600080fd5b80633eaaf86b1461036d5780633f4ba83a1461037657600080fd5b806327e235e3146103285780633092afd514610348578063313ce5671461035b578063353907141461036457600080fd5b80630ecb93c0116102145780630ecb93c0146102c157806318160ddd146102d457806323b872dd146102ea57806326976e3f146102fd57600080fd5b806306fdde03146102465780630753c30c14610264578063095ea7b3146102795780630e136b191461028c575b600080fd5b61024e610544565b60405161025b9190611766565b60405180910390f35b6102776102723660046117f0565b6105d2565b005b61027761028736600461180b565b61066e565b600a546102b19074010000000000000000000000000000000000000000900460ff1681565b604051901515815260200161025b565b6102776102cf3660046117f0565b610744565b6102dc6107cd565b60405190815260200161025b565b6102776102f8366004611835565b610885565b600a54610310906001600160a01b031681565b6040516001600160a01b03909116815260200161025b565b6102dc6103363660046117f0565b60026020526000908152604090205481565b6102776103563660046117f0565b610961565b6102dc60095481565b6102dc60045481565b6102dc60015481565b610277610a0c565b6102b161038c3660046117f0565b6001600160a01b031660009081526006602052604090205460ff1690565b6102dc6103b8366004611871565b600560209081526000928352604080842090915290825290205481565b6000546102b19074010000000000000000000000000000000000000000900460ff1681565b6102dc6104083660046117f0565b610a9b565b610277610b80565b6000546001600160a01b0316610310565b600054610310906001600160a01b031681565b61024e610c27565b61027761044f3660046117f0565b610c34565b61027761046236600461180b565b610cf6565b6102776104753660046118a4565b610df5565b6102776104883660046118c6565b610e8e565b61027761049b3660046118c6565b610f58565b6102dc6104ae366004611871565b611017565b6102dc60035481565b6102b16104ca3660046117f0565b60066020526000908152604090205460ff1681565b6102776104ed3660046117f0565b61110d565b6102dc60001981565b6102776105093660046117f0565b611193565b61027761051c3660046117f0565b6111f0565b6102b161052f3660046117f0565b600b6020526000908152604090205460ff1681565b60078054610551906118df565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906118df565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b505050505081565b6000546001600160a01b031633146105e957600080fd5b600a80546001600160a01b0383167fffffffffffffffffffffff000000000000000000000000000000000000000000909116811774010000000000000000000000000000000000000000179091556040519081527fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e906020015b60405180910390a150565b604061067b816004611962565b36101561068757600080fd5b600a5474010000000000000000000000000000000000000000900460ff161561073557600a546040517faee92d330000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038581166024830152604482018590529091169063aee92d33906064015b600060405180830381600087803b15801561071857600080fd5b505af115801561072c573d6000803e3d6000fd5b50505050505050565b61073f83836112ad565b505050565b6000546001600160a01b0316331461075b57600080fd5b6001600160a01b03811660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9101610663565b600a5460009074010000000000000000000000000000000000000000900460ff161561087e57600a60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084157600080fd5b505afa158015610855573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610879919061197a565b905090565b5060015490565b60005474010000000000000000000000000000000000000000900460ff16156108ad57600080fd5b6001600160a01b03831660009081526006602052604090205460ff16156108d357600080fd5b600a5474010000000000000000000000000000000000000000900460ff161561095657600a546040517f8b477adb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690638b477adb906084016106fe565b61073f838383611361565b6000546001600160a01b0316331461097857600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1661099d57600080fd5b6001600160a01b0381166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb9101610663565b6000546001600160a01b03163314610a2357600080fd5b60005474010000000000000000000000000000000000000000900460ff16610a4a57600080fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600a5460009074010000000000000000000000000000000000000000900460ff1615610b5d57600a546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b158015610b1f57600080fd5b505afa158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b57919061197a565b92915050565b6001600160a01b038216600090815260026020526040902054610b57565b919050565b6000546001600160a01b03163314610b9757600080fd5b60005474010000000000000000000000000000000000000000900460ff1615610bbf57600080fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b60088054610551906118df565b6000546001600160a01b03163314610c4b57600080fd5b6001600160a01b038116610c5e57600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1615610c8457600080fd5b6001600160a01b0381166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab9101610663565b60005474010000000000000000000000000000000000000000900460ff1615610d1e57600080fd5b3360009081526006602052604090205460ff1615610d3b57600080fd5b600a5474010000000000000000000000000000000000000000900460ff1615610de757600a546040517f6e18980a0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0384811660248301526044820184905290911690636e18980a90606401600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b505050505050565b610df1828261155c565b5050565b6000546001600160a01b03163314610e0c57600080fd5b60148210610e1957600080fd5b60328110610e2657600080fd5b6003829055600954610e4490610e3d90600a611a77565b82906116da565b60048190556003546040517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e92610e82928252602082015260400190565b60405180910390a15050565b336000908152600b602052604090205460ff16610eaa57600080fd5b600154610eb78282611962565b11610ec157600080fd5b33600090815260026020526040902054610edb8282611962565b11610ee557600080fd5b3360009081526002602052604081208054839290610f04908490611962565b925050819055508060016000828254610f1d9190611962565b909155505060408051338152602081018390527fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c169101610663565b6000546001600160a01b03163314610f6f57600080fd5b806001541015610f7e57600080fd5b600080546001600160a01b0316815260026020526040902054811115610fa357600080fd5b8060016000828254610fb59190611a83565b9091555050600080546001600160a01b031681526002602052604081208054839290610fe2908490611a83565b90915550506040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a4490602001610663565b600a5460009074010000000000000000000000000000000000000000900460ff16156110e257600a546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301529091169063dd62ed3e9060440160206040518083038186803b1580156110a357600080fd5b505afa1580156110b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110db919061197a565b9050610b57565b6001600160a01b038084166000908152600560209081526040808320938616835292905220546110db565b6000546001600160a01b0316331461112457600080fd5b6001600160a01b03811660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9101610663565b6000546001600160a01b031633146111aa57600080fd5b6001600160a01b038116156111ed57600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383161790555b50565b6000546001600160a01b0316331461120757600080fd5b6001600160a01b03811660009081526006602052604090205460ff1661122c57600080fd5b600061123782610a9b565b6001600160a01b0383166000908152600260205260408120819055600180549293508392909190611269908490611a83565b9091555050604080516001600160a01b0384168152602081018390527f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c69101610e82565b60406112ba816004611962565b3610156112c657600080fd5b81158015906112f757503360009081526005602090815260408083206001600160a01b038716845290915290205415155b1561130157600080fd5b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b606061136e816004611962565b36101561137a57600080fd5b6001600160a01b03841660009081526005602090815260408083203384529091528120546003549091906113bd90612710906113b79087906116da565b90611716565b90506004548111156113ce57506004545b600019821015611407576113e2828561172b565b6001600160a01b03871660009081526005602090815260408083203384529091529020555b6000611413858361172b565b6001600160a01b038816600090815260026020526040902054909150611439908661172b565b6001600160a01b0380891660009081526002602052604080822093909355908816815220546114689082611747565b6001600160a01b038716600090815260026020526040902055811561150657600080546001600160a01b03168152600260205260409020546114aa9083611747565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292811692908a16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154b91815260200190565b60405180910390a350505050505050565b6040611569816004611962565b36101561157557600080fd5b60006115926127106113b7600354866116da90919063ffffffff16565b90506004548111156115a357506004545b60006115af848361172b565b336000908152600260205260409020549091506115cc908561172b565b33600090815260026020526040808220929092556001600160a01b038716815220546115f89082611747565b6001600160a01b038616600090815260026020526040902055811561169357600080546001600160a01b031681526002602052604090205461163a9083611747565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b6040518181526001600160a01b0386169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6000826116e957506000610b57565b60006116f58385611a9a565b9050826117028583611ab9565b1461170f5761170f611af4565b9392505050565b6000806117238385611ab9565b949350505050565b60008282111561173d5761173d611af4565b61170f8284611a83565b6000806117548385611962565b90508381101561170f5761170f611af4565b600060208083528351808285015260005b8181101561179357858101830151858201604001528201611777565b818111156117a5576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b80356001600160a01b0381168114610b7b57600080fd5b60006020828403121561180257600080fd5b61170f826117d9565b6000806040838503121561181e57600080fd5b611827836117d9565b946020939093013593505050565b60008060006060848603121561184a57600080fd5b611853846117d9565b9250611861602085016117d9565b9150604084013590509250925092565b6000806040838503121561188457600080fd5b61188d836117d9565b915061189b602084016117d9565b90509250929050565b600080604083850312156118b757600080fd5b50508035926020909101359150565b6000602082840312156118d857600080fd5b5035919050565b600181811c908216806118f357607f821691505b6020821081141561192d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561197557611975611933565b500190565b60006020828403121561198c57600080fd5b5051919050565b600181815b808511156119ce5781600019048211156119b4576119b4611933565b808516156119c157918102915b93841c9390800290611998565b509250929050565b6000826119e557506001610b57565b816119f257506000610b57565b8160018114611a085760028114611a1257611a2e565b6001915050610b57565b60ff841115611a2357611a23611933565b50506001821b610b57565b5060208310610133831016604e8410600b8410161715611a51575081810a610b57565b611a5b8383611993565b8060001904821115611a6f57611a6f611933565b029392505050565b600061170f83836119d6565b600082821015611a9557611a95611933565b500390565b6000816000190483118215151615611ab457611ab4611933565b500290565b600082611aef577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea26469706673582212204483842ed9a7af44238c6a130903a54e1894f6823efa5a366cdb6b0722498dfa64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102415760003560e01c806370a0823111610145578063db006a75116100bd578063e4997dc51161008c578063f2fde38b11610071578063f2fde38b146104fb578063f3bdc2281461050e578063f46eccc41461052157600080fd5b8063e4997dc5146104df578063e5b5019a146104f257600080fd5b8063db006a751461048d578063dd62ed3e146104a0578063dd644f72146104b3578063e47d6060146104bc57600080fd5b806395d89b4111610114578063a9059cbb116100f9578063a9059cbb14610454578063c0324c7714610467578063cc872b661461047a57600080fd5b806395d89b4114610439578063983b2d561461044157600080fd5b806370a08231146103fa5780638456cb591461040d578063893d20e8146104155780638da5cb5b1461042657600080fd5b806327e235e3116101d85780633eaaf86b116101a757806359bf1abe1161018c57806359bf1abe1461037e5780635c658165146103aa5780635c975abb146103d557600080fd5b80633eaaf86b1461036d5780633f4ba83a1461037657600080fd5b806327e235e3146103285780633092afd514610348578063313ce5671461035b578063353907141461036457600080fd5b80630ecb93c0116102145780630ecb93c0146102c157806318160ddd146102d457806323b872dd146102ea57806326976e3f146102fd57600080fd5b806306fdde03146102465780630753c30c14610264578063095ea7b3146102795780630e136b191461028c575b600080fd5b61024e610544565b60405161025b9190611766565b60405180910390f35b6102776102723660046117f0565b6105d2565b005b61027761028736600461180b565b61066e565b600a546102b19074010000000000000000000000000000000000000000900460ff1681565b604051901515815260200161025b565b6102776102cf3660046117f0565b610744565b6102dc6107cd565b60405190815260200161025b565b6102776102f8366004611835565b610885565b600a54610310906001600160a01b031681565b6040516001600160a01b03909116815260200161025b565b6102dc6103363660046117f0565b60026020526000908152604090205481565b6102776103563660046117f0565b610961565b6102dc60095481565b6102dc60045481565b6102dc60015481565b610277610a0c565b6102b161038c3660046117f0565b6001600160a01b031660009081526006602052604090205460ff1690565b6102dc6103b8366004611871565b600560209081526000928352604080842090915290825290205481565b6000546102b19074010000000000000000000000000000000000000000900460ff1681565b6102dc6104083660046117f0565b610a9b565b610277610b80565b6000546001600160a01b0316610310565b600054610310906001600160a01b031681565b61024e610c27565b61027761044f3660046117f0565b610c34565b61027761046236600461180b565b610cf6565b6102776104753660046118a4565b610df5565b6102776104883660046118c6565b610e8e565b61027761049b3660046118c6565b610f58565b6102dc6104ae366004611871565b611017565b6102dc60035481565b6102b16104ca3660046117f0565b60066020526000908152604090205460ff1681565b6102776104ed3660046117f0565b61110d565b6102dc60001981565b6102776105093660046117f0565b611193565b61027761051c3660046117f0565b6111f0565b6102b161052f3660046117f0565b600b6020526000908152604090205460ff1681565b60078054610551906118df565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906118df565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b505050505081565b6000546001600160a01b031633146105e957600080fd5b600a80546001600160a01b0383167fffffffffffffffffffffff000000000000000000000000000000000000000000909116811774010000000000000000000000000000000000000000179091556040519081527fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e906020015b60405180910390a150565b604061067b816004611962565b36101561068757600080fd5b600a5474010000000000000000000000000000000000000000900460ff161561073557600a546040517faee92d330000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038581166024830152604482018590529091169063aee92d33906064015b600060405180830381600087803b15801561071857600080fd5b505af115801561072c573d6000803e3d6000fd5b50505050505050565b61073f83836112ad565b505050565b6000546001600160a01b0316331461075b57600080fd5b6001600160a01b03811660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9101610663565b600a5460009074010000000000000000000000000000000000000000900460ff161561087e57600a60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084157600080fd5b505afa158015610855573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610879919061197a565b905090565b5060015490565b60005474010000000000000000000000000000000000000000900460ff16156108ad57600080fd5b6001600160a01b03831660009081526006602052604090205460ff16156108d357600080fd5b600a5474010000000000000000000000000000000000000000900460ff161561095657600a546040517f8b477adb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03858116602483015284811660448301526064820184905290911690638b477adb906084016106fe565b61073f838383611361565b6000546001600160a01b0316331461097857600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1661099d57600080fd5b6001600160a01b0381166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb9101610663565b6000546001600160a01b03163314610a2357600080fd5b60005474010000000000000000000000000000000000000000900460ff16610a4a57600080fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600a5460009074010000000000000000000000000000000000000000900460ff1615610b5d57600a546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152909116906370a082319060240160206040518083038186803b158015610b1f57600080fd5b505afa158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b57919061197a565b92915050565b6001600160a01b038216600090815260026020526040902054610b57565b919050565b6000546001600160a01b03163314610b9757600080fd5b60005474010000000000000000000000000000000000000000900460ff1615610bbf57600080fd5b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b60088054610551906118df565b6000546001600160a01b03163314610c4b57600080fd5b6001600160a01b038116610c5e57600080fd5b6001600160a01b0381166000908152600b602052604090205460ff1615610c8457600080fd5b6001600160a01b0381166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab9101610663565b60005474010000000000000000000000000000000000000000900460ff1615610d1e57600080fd5b3360009081526006602052604090205460ff1615610d3b57600080fd5b600a5474010000000000000000000000000000000000000000900460ff1615610de757600a546040517f6e18980a0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0384811660248301526044820184905290911690636e18980a90606401600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b505050505050565b610df1828261155c565b5050565b6000546001600160a01b03163314610e0c57600080fd5b60148210610e1957600080fd5b60328110610e2657600080fd5b6003829055600954610e4490610e3d90600a611a77565b82906116da565b60048190556003546040517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e92610e82928252602082015260400190565b60405180910390a15050565b336000908152600b602052604090205460ff16610eaa57600080fd5b600154610eb78282611962565b11610ec157600080fd5b33600090815260026020526040902054610edb8282611962565b11610ee557600080fd5b3360009081526002602052604081208054839290610f04908490611962565b925050819055508060016000828254610f1d9190611962565b909155505060408051338152602081018390527fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c169101610663565b6000546001600160a01b03163314610f6f57600080fd5b806001541015610f7e57600080fd5b600080546001600160a01b0316815260026020526040902054811115610fa357600080fd5b8060016000828254610fb59190611a83565b9091555050600080546001600160a01b031681526002602052604081208054839290610fe2908490611a83565b90915550506040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a4490602001610663565b600a5460009074010000000000000000000000000000000000000000900460ff16156110e257600a546040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301529091169063dd62ed3e9060440160206040518083038186803b1580156110a357600080fd5b505afa1580156110b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110db919061197a565b9050610b57565b6001600160a01b038084166000908152600560209081526040808320938616835292905220546110db565b6000546001600160a01b0316331461112457600080fd5b6001600160a01b03811660008181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905590519182527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9101610663565b6000546001600160a01b031633146111aa57600080fd5b6001600160a01b038116156111ed57600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383161790555b50565b6000546001600160a01b0316331461120757600080fd5b6001600160a01b03811660009081526006602052604090205460ff1661122c57600080fd5b600061123782610a9b565b6001600160a01b0383166000908152600260205260408120819055600180549293508392909190611269908490611a83565b9091555050604080516001600160a01b0384168152602081018390527f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c69101610e82565b60406112ba816004611962565b3610156112c657600080fd5b81158015906112f757503360009081526005602090815260408083206001600160a01b038716845290915290205415155b1561130157600080fd5b3360008181526005602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b606061136e816004611962565b36101561137a57600080fd5b6001600160a01b03841660009081526005602090815260408083203384529091528120546003549091906113bd90612710906113b79087906116da565b90611716565b90506004548111156113ce57506004545b600019821015611407576113e2828561172b565b6001600160a01b03871660009081526005602090815260408083203384529091529020555b6000611413858361172b565b6001600160a01b038816600090815260026020526040902054909150611439908661172b565b6001600160a01b0380891660009081526002602052604080822093909355908816815220546114689082611747565b6001600160a01b038716600090815260026020526040902055811561150657600080546001600160a01b03168152600260205260409020546114aa9083611747565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292811692908a16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154b91815260200190565b60405180910390a350505050505050565b6040611569816004611962565b36101561157557600080fd5b60006115926127106113b7600354866116da90919063ffffffff16565b90506004548111156115a357506004545b60006115af848361172b565b336000908152600260205260409020549091506115cc908561172b565b33600090815260026020526040808220929092556001600160a01b038716815220546115f89082611747565b6001600160a01b038616600090815260026020526040902055811561169357600080546001600160a01b031681526002602052604090205461163a9083611747565b600080546001600160a01b039081168252600260209081526040808420949094559154925185815292169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b6040518181526001600160a01b0386169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b6000826116e957506000610b57565b60006116f58385611a9a565b9050826117028583611ab9565b1461170f5761170f611af4565b9392505050565b6000806117238385611ab9565b949350505050565b60008282111561173d5761173d611af4565b61170f8284611a83565b6000806117548385611962565b90508381101561170f5761170f611af4565b600060208083528351808285015260005b8181101561179357858101830151858201604001528201611777565b818111156117a5576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b80356001600160a01b0381168114610b7b57600080fd5b60006020828403121561180257600080fd5b61170f826117d9565b6000806040838503121561181e57600080fd5b611827836117d9565b946020939093013593505050565b60008060006060848603121561184a57600080fd5b611853846117d9565b9250611861602085016117d9565b9150604084013590509250925092565b6000806040838503121561188457600080fd5b61188d836117d9565b915061189b602084016117d9565b90509250929050565b600080604083850312156118b757600080fd5b50508035926020909101359150565b6000602082840312156118d857600080fd5b5035919050565b600181811c908216806118f357607f821691505b6020821081141561192d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561197557611975611933565b500190565b60006020828403121561198c57600080fd5b5051919050565b600181815b808511156119ce5781600019048211156119b4576119b4611933565b808516156119c157918102915b93841c9390800290611998565b509250929050565b6000826119e557506001610b57565b816119f257506000610b57565b8160018114611a085760028114611a1257611a2e565b6001915050610b57565b60ff841115611a2357611a23611933565b50506001821b610b57565b5060208310610133831016604e8410600b8410161715611a51575081810a610b57565b611a5b8383611993565b8060001904821115611a6f57611a6f611933565b029392505050565b600061170f83836119d6565b600082821015611a9557611a95611933565b500390565b6000816000190483118215151615611ab457611ab4611933565b500290565b600082611aef577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea26469706673582212204483842ed9a7af44238c6a130903a54e1894f6823efa5a366cdb6b0722498dfa64736f6c63430008090033

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.