ETH Price: $2,829.67 (-7.34%)
Gas: 7 Gwei

Token

Thug Life Token (THUG)
 

Overview

Max Total Supply

4,200,000,000 THUG

Holders

3,859

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
345,056.350110643893458396 THUG

Value
$0.00
0xf4c947e4c4448b8c7b313afaa6f06faba20a90f6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ThugLifeToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-07-17
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract ThugLifeToken is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 4_200_000_000 * (10 ** _decimals); 
    bool public transferStatus;

    /**
     * @dev Contract constructor.
     * @param name_ The name of the token.
     * @param symbol_ The symbol of the token.
     * @param _to The initial address to mint the total supply to.
     */
    constructor(string memory name_, string memory symbol_, address _to) {
        transferStatus = true;
        _name = name_;
        _symbol = symbol_;
        _mint(_to, hardCap);
    }

    /**
     * @dev Changes token transfer state
     * @param _status Status flag for transfer
     */

    function setTransferStatus(bool _status) public onlyOwner {
        transferStatus = _status;
    }

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

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(transferStatus ,"tokens transfer functionality paused");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * @param account The account to burn tokens from.
     * @param amount The amount of tokens to burn.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
     * @param amount The amount of tokens to burn.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"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":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"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setTransferStatus","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002969380380620029698339818101604052810190620000379190620005af565b620000576200004b620000df60201b60201c565b620000e760201b60201c565b6001600660006101000a81548160ff02191690831515021790555082600490805190602001906200008a929190620002fd565b508160059080519060200190620000a3929190620002fd565b50620000d6816012600a620000b99190620007e3565b63fa56ea00620000ca919062000834565b620001ab60201b60201c565b50505062000a08565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200021e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021590620008f6565b60405180910390fd5b806003600082825462000232919062000918565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200028a919062000918565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f1919062000986565b60405180910390a35050565b8280546200030b90620009d2565b90600052602060002090601f0160209004810192826200032f57600085556200037b565b82601f106200034a57805160ff19168380011785556200037b565b828001600101855582156200037b579182015b828111156200037a5782518255916020019190600101906200035d565b5b5090506200038a91906200038e565b5090565b5b80821115620003a95760008160009055506001016200038f565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200041682620003cb565b810181811067ffffffffffffffff82111715620004385762000437620003dc565b5b80604052505050565b60006200044d620003ad565b90506200045b82826200040b565b919050565b600067ffffffffffffffff8211156200047e576200047d620003dc565b5b6200048982620003cb565b9050602081019050919050565b60005b83811015620004b657808201518184015260208101905062000499565b83811115620004c6576000848401525b50505050565b6000620004e3620004dd8462000460565b62000441565b905082815260208101848484011115620005025762000501620003c6565b5b6200050f84828562000496565b509392505050565b600082601f8301126200052f576200052e620003c1565b5b815162000541848260208601620004cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000577826200054a565b9050919050565b62000589816200056a565b81146200059557600080fd5b50565b600081519050620005a9816200057e565b92915050565b600080600060608486031215620005cb57620005ca620003b7565b5b600084015167ffffffffffffffff811115620005ec57620005eb620003bc565b5b620005fa8682870162000517565b935050602084015167ffffffffffffffff8111156200061e576200061d620003bc565b5b6200062c8682870162000517565b92505060406200063f8682870162000598565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006d757808604811115620006af57620006ae62000649565b5b6001851615620006bf5780820291505b8081029050620006cf8562000678565b94506200068f565b94509492505050565b600082620006f25760019050620007c5565b81620007025760009050620007c5565b81600181146200071b576002811462000726576200075c565b6001915050620007c5565b60ff8411156200073b576200073a62000649565b5b8360020a91508482111562000755576200075462000649565b5b50620007c5565b5060208310610133831016604e8410600b8410161715620007965782820a90508381111562000790576200078f62000649565b5b620007c5565b620007a5848484600162000685565b92509050818404811115620007bf57620007be62000649565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007f082620007cc565b9150620007fd83620007d6565b92506200082c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006e0565b905092915050565b60006200084182620007cc565b91506200084e83620007cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200088a576200088962000649565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008de601f8362000895565b9150620008eb82620008a6565b602082019050919050565b600060208201905081810360008301526200091181620008cf565b9050919050565b60006200092582620007cc565b91506200093283620007cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200096a576200096962000649565b5b828201905092915050565b6200098081620007cc565b82525050565b60006020820190506200099d600083018462000975565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009eb57607f821691505b6020821081141562000a025762000a01620009a3565b5b50919050565b611f518062000a186000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e3578063dd62ed3e14610313578063f2fde38b14610343578063f4880b221461035f578063fb86a4041461037d57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b4114610295578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c6814610205578063493770cc1461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611209565b60405180910390f35b610153600480360381019061014e91906112c4565b61042d565b604051610160919061131f565b60405180910390f35b61017161044b565b60405161017e9190611349565b60405180910390f35b6101a1600480360381019061019c9190611364565b610455565b6040516101ae919061131f565b60405180910390f35b6101bf61054d565b6040516101cc91906113d3565b60405180910390f35b6101ef60048036038101906101ea91906112c4565b610556565b6040516101fc919061131f565b60405180910390f35b61021f600480360381019061021a91906113ee565b610602565b005b61023b60048036038101906102369190611447565b610616565b005b61025760048036038101906102529190611474565b61063b565b6040516102649190611349565b60405180910390f35b610275610684565b005b61027f610698565b60405161028c91906114b0565b60405180910390f35b61029d6106c1565b6040516102aa9190611209565b60405180910390f35b6102cd60048036038101906102c891906112c4565b610753565b6040516102da919061131f565b60405180910390f35b6102fd60048036038101906102f891906112c4565b61083e565b60405161030a919061131f565b60405180910390f35b61032d600480360381019061032891906114cb565b61085c565b60405161033a9190611349565b60405180910390f35b61035d60048036038101906103589190611474565b6108e3565b005b610367610967565b604051610374919061131f565b60405180910390f35b61038561097a565b6040516103929190611349565b60405180910390f35b6060600480546103aa9061153a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061153a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061044161043a61099a565b84846109a2565b6001905092915050565b6000600354905090565b6000610462848484610b6d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ad61099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610524906115de565b60405180910390fd5b6105418561053961099a565b8584036109a2565b60019150509392505050565b60006012905090565b60006105f861056361099a565b84846002600061057161099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f3919061162d565b6109a2565b6001905092915050565b61061361060d61099a565b82610e6d565b50565b61061e61102e565b80600660006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068c61102e565b61069660006110ac565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106d09061153a565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc9061153a565b80156107495780601f1061071e57610100808354040283529160200191610749565b820191906000526020600020905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b6000806002600061076261099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610816906116f5565b60405180910390fd5b61083361082a61099a565b858584036109a2565b600191505092915050565b600061085261084b61099a565b8484610b6d565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108eb61102e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290611787565b60405180910390fd5b610964816110ac565b50565b600660009054906101000a900460ff1681565b6012600a61098891906118da565b63fa56ea006109979190611925565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906119f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611a83565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b609190611349565b60405180910390a3505050565b60008111610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611c13565b60405180910390fd5b600660009054906101000a900460ff16610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611ca5565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611d37565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfb919061162d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5f9190611349565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490611dc9565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90611e5b565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fbc9190611e7b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611349565b60405180910390a3505050565b61103661099a565b73ffffffffffffffffffffffffffffffffffffffff16611054610698565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611efb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111aa57808201518184015260208101905061118f565b838111156111b9576000848401525b50505050565b6000601f19601f8301169050919050565b60006111db82611170565b6111e5818561117b565b93506111f581856020860161118c565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061125b82611230565b9050919050565b61126b81611250565b811461127657600080fd5b50565b60008135905061128881611262565b92915050565b6000819050919050565b6112a18161128e565b81146112ac57600080fd5b50565b6000813590506112be81611298565b92915050565b600080604083850312156112db576112da61122b565b5b60006112e985828601611279565b92505060206112fa858286016112af565b9150509250929050565b60008115159050919050565b61131981611304565b82525050565b60006020820190506113346000830184611310565b92915050565b6113438161128e565b82525050565b600060208201905061135e600083018461133a565b92915050565b60008060006060848603121561137d5761137c61122b565b5b600061138b86828701611279565b935050602061139c86828701611279565b92505060406113ad868287016112af565b9150509250925092565b600060ff82169050919050565b6113cd816113b7565b82525050565b60006020820190506113e860008301846113c4565b92915050565b6000602082840312156114045761140361122b565b5b6000611412848285016112af565b91505092915050565b61142481611304565b811461142f57600080fd5b50565b6000813590506114418161141b565b92915050565b60006020828403121561145d5761145c61122b565b5b600061146b84828501611432565b91505092915050565b60006020828403121561148a5761148961122b565b5b600061149884828501611279565b91505092915050565b6114aa81611250565b82525050565b60006020820190506114c560008301846114a1565b92915050565b600080604083850312156114e2576114e161122b565b5b60006114f085828601611279565b925050602061150185828601611279565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061155257607f821691505b602082108114156115665761156561150b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115c860288361117b565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116388261128e565b91506116438361128e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611678576116776115fe565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116df60258361117b565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061177160268361117b565b915061177c82611715565b604082019050919050565b600060208201905081810360008301526117a081611764565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156117fe578086048111156117da576117d96115fe565b5b60018516156117e95780820291505b80810290506117f7856117a7565b94506117be565b94509492505050565b60008261181757600190506118d3565b8161182557600090506118d3565b816001811461183b576002811461184557611874565b60019150506118d3565b60ff841115611857576118566115fe565b5b8360020a91508482111561186e5761186d6115fe565b5b506118d3565b5060208310610133831016604e8410600b84101617156118a95782820a9050838111156118a4576118a36115fe565b5b6118d3565b6118b684848460016117b4565b925090508184048111156118cd576118cc6115fe565b5b81810290505b9392505050565b60006118e58261128e565b91506118f0836113b7565b925061191d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611807565b905092915050565b60006119308261128e565b915061193b8361128e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611974576119736115fe565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119db60248361117b565b91506119e68261197f565b604082019050919050565b60006020820190508181036000830152611a0a816119ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6d60228361117b565b9150611a7882611a11565b604082019050919050565b60006020820190508181036000830152611a9c81611a60565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad9601b8361117b565b9150611ae482611aa3565b602082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6b60258361117b565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd60238361117b565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f746f6b656e73207472616e736665722066756e6374696f6e616c69747920706160008201527f7573656400000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f60248361117b565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d2160268361117b565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611db360218361117b565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4560228361117b565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b6000611e868261128e565b9150611e918361128e565b925082821015611ea457611ea36115fe565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ee560208361117b565b9150611ef082611eaf565b602082019050919050565b60006020820190508181036000830152611f1481611ed8565b905091905056fea2646970667358221220f3d1667aab163abf14de5241000063fca4ce26ae09efe7d55a6cb4a725d6a83364736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d3f2d401feca01f59c8f8520e7b55d7655d7cd0f000000000000000000000000000000000000000000000000000000000000000f54687567204c69666520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045448554700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e3578063dd62ed3e14610313578063f2fde38b14610343578063f4880b221461035f578063fb86a4041461037d57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b4114610295578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c6814610205578063493770cc1461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611209565b60405180910390f35b610153600480360381019061014e91906112c4565b61042d565b604051610160919061131f565b60405180910390f35b61017161044b565b60405161017e9190611349565b60405180910390f35b6101a1600480360381019061019c9190611364565b610455565b6040516101ae919061131f565b60405180910390f35b6101bf61054d565b6040516101cc91906113d3565b60405180910390f35b6101ef60048036038101906101ea91906112c4565b610556565b6040516101fc919061131f565b60405180910390f35b61021f600480360381019061021a91906113ee565b610602565b005b61023b60048036038101906102369190611447565b610616565b005b61025760048036038101906102529190611474565b61063b565b6040516102649190611349565b60405180910390f35b610275610684565b005b61027f610698565b60405161028c91906114b0565b60405180910390f35b61029d6106c1565b6040516102aa9190611209565b60405180910390f35b6102cd60048036038101906102c891906112c4565b610753565b6040516102da919061131f565b60405180910390f35b6102fd60048036038101906102f891906112c4565b61083e565b60405161030a919061131f565b60405180910390f35b61032d600480360381019061032891906114cb565b61085c565b60405161033a9190611349565b60405180910390f35b61035d60048036038101906103589190611474565b6108e3565b005b610367610967565b604051610374919061131f565b60405180910390f35b61038561097a565b6040516103929190611349565b60405180910390f35b6060600480546103aa9061153a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061153a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061044161043a61099a565b84846109a2565b6001905092915050565b6000600354905090565b6000610462848484610b6d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ad61099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610524906115de565b60405180910390fd5b6105418561053961099a565b8584036109a2565b60019150509392505050565b60006012905090565b60006105f861056361099a565b84846002600061057161099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f3919061162d565b6109a2565b6001905092915050565b61061361060d61099a565b82610e6d565b50565b61061e61102e565b80600660006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068c61102e565b61069660006110ac565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106d09061153a565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc9061153a565b80156107495780601f1061071e57610100808354040283529160200191610749565b820191906000526020600020905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b6000806002600061076261099a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610816906116f5565b60405180910390fd5b61083361082a61099a565b858584036109a2565b600191505092915050565b600061085261084b61099a565b8484610b6d565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108eb61102e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290611787565b60405180910390fd5b610964816110ac565b50565b600660009054906101000a900460ff1681565b6012600a61098891906118da565b63fa56ea006109979190611925565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906119f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611a83565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b609190611349565b60405180910390a3505050565b60008111610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790611b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611c13565b60405180910390fd5b600660009054906101000a900460ff16610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611ca5565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611d37565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfb919061162d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5f9190611349565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490611dc9565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90611e5b565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fbc9190611e7b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110219190611349565b60405180910390a3505050565b61103661099a565b73ffffffffffffffffffffffffffffffffffffffff16611054610698565b73ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611efb565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111aa57808201518184015260208101905061118f565b838111156111b9576000848401525b50505050565b6000601f19601f8301169050919050565b60006111db82611170565b6111e5818561117b565b93506111f581856020860161118c565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061125b82611230565b9050919050565b61126b81611250565b811461127657600080fd5b50565b60008135905061128881611262565b92915050565b6000819050919050565b6112a18161128e565b81146112ac57600080fd5b50565b6000813590506112be81611298565b92915050565b600080604083850312156112db576112da61122b565b5b60006112e985828601611279565b92505060206112fa858286016112af565b9150509250929050565b60008115159050919050565b61131981611304565b82525050565b60006020820190506113346000830184611310565b92915050565b6113438161128e565b82525050565b600060208201905061135e600083018461133a565b92915050565b60008060006060848603121561137d5761137c61122b565b5b600061138b86828701611279565b935050602061139c86828701611279565b92505060406113ad868287016112af565b9150509250925092565b600060ff82169050919050565b6113cd816113b7565b82525050565b60006020820190506113e860008301846113c4565b92915050565b6000602082840312156114045761140361122b565b5b6000611412848285016112af565b91505092915050565b61142481611304565b811461142f57600080fd5b50565b6000813590506114418161141b565b92915050565b60006020828403121561145d5761145c61122b565b5b600061146b84828501611432565b91505092915050565b60006020828403121561148a5761148961122b565b5b600061149884828501611279565b91505092915050565b6114aa81611250565b82525050565b60006020820190506114c560008301846114a1565b92915050565b600080604083850312156114e2576114e161122b565b5b60006114f085828601611279565b925050602061150185828601611279565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061155257607f821691505b602082108114156115665761156561150b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115c860288361117b565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116388261128e565b91506116438361128e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611678576116776115fe565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116df60258361117b565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061177160268361117b565b915061177c82611715565b604082019050919050565b600060208201905081810360008301526117a081611764565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156117fe578086048111156117da576117d96115fe565b5b60018516156117e95780820291505b80810290506117f7856117a7565b94506117be565b94509492505050565b60008261181757600190506118d3565b8161182557600090506118d3565b816001811461183b576002811461184557611874565b60019150506118d3565b60ff841115611857576118566115fe565b5b8360020a91508482111561186e5761186d6115fe565b5b506118d3565b5060208310610133831016604e8410600b84101617156118a95782820a9050838111156118a4576118a36115fe565b5b6118d3565b6118b684848460016117b4565b925090508184048111156118cd576118cc6115fe565b5b81810290505b9392505050565b60006118e58261128e565b91506118f0836113b7565b925061191d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611807565b905092915050565b60006119308261128e565b915061193b8361128e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611974576119736115fe565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119db60248361117b565b91506119e68261197f565b604082019050919050565b60006020820190508181036000830152611a0a816119ce565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6d60228361117b565b9150611a7882611a11565b604082019050919050565b60006020820190508181036000830152611a9c81611a60565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad9601b8361117b565b9150611ae482611aa3565b602082019050919050565b60006020820190508181036000830152611b0881611acc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6b60258361117b565b9150611b7682611b0f565b604082019050919050565b60006020820190508181036000830152611b9a81611b5e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd60238361117b565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f746f6b656e73207472616e736665722066756e6374696f6e616c69747920706160008201527f7573656400000000000000000000000000000000000000000000000000000000602082015250565b6000611c8f60248361117b565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d2160268361117b565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611db360218361117b565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4560228361117b565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b6000611e868261128e565b9150611e918361128e565b925082821015611ea457611ea36115fe565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ee560208361117b565b9150611ef082611eaf565b602082019050919050565b60006020820190508181036000830152611f1481611ed8565b905091905056fea2646970667358221220f3d1667aab163abf14de5241000063fca4ce26ae09efe7d55a6cb4a725d6a83364736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d3f2d401feca01f59c8f8520e7b55d7655d7cd0f000000000000000000000000000000000000000000000000000000000000000f54687567204c69666520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045448554700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Thug Life Token
Arg [1] : symbol_ (string): THUG
Arg [2] : _to (address): 0xd3f2D401fECa01f59C8F8520E7b55d7655D7cD0f

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000d3f2d401feca01f59c8f8520e7b55d7655d7cd0f
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 54687567204c69666520546f6b656e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5448554700000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6732:9108:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10300:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8570:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10824:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8358:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11700:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15124:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7697:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8868:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5878:103;;;:::i;:::-;;5237:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8120:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12257:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9305:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9807:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6136:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7140:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7907:100;7961:13;7994:5;7987:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:100;:::o;10300:184::-;10403:4;10420:34;10429:12;:10;:12::i;:::-;10443:2;10447:6;10420:8;:34::i;:::-;10472:4;10465:11;;10300:184;;;;:::o;8570:108::-;8631:7;8658:12;;8651:19;;8570:108;:::o;10824:529::-;10964:4;10981:36;10991:6;10999:9;11010:6;10981:9;:36::i;:::-;11030:24;11057:11;:19;11069:6;11057:19;;;;;;;;;;;;;;;:33;11077:12;:10;:12::i;:::-;11057:33;;;;;;;;;;;;;;;;11030:60;;11143:6;11123:16;:26;;11101:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11253:57;11262:6;11270:12;:10;:12::i;:::-;11303:6;11284:16;:25;11253:8;:57::i;:::-;11341:4;11334:11;;;10824:529;;;;;:::o;8358:100::-;8416:5;7056:2;8434:16;;8358:100;:::o;11700:225::-;11808:4;11825:70;11834:12;:10;:12::i;:::-;11848:2;11884:10;11852:11;:25;11864:12;:10;:12::i;:::-;11852:25;;;;;;;;;;;;;;;:29;11878:2;11852:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11825:8;:70::i;:::-;11913:4;11906:11;;11700:225;;;;:::o;15124:85::-;15174:27;15180:12;:10;:12::i;:::-;15194:6;15174:5;:27::i;:::-;15124:85;:::o;7697:101::-;5123:13;:11;:13::i;:::-;7783:7:::1;7766:14;;:24;;;;;;;;;;;;;;;;;;7697:101:::0;:::o;8868:143::-;8958:7;8985:9;:18;8995:7;8985:18;;;;;;;;;;;;;;;;8978:25;;8868:143;;;:::o;5878:103::-;5123:13;:11;:13::i;:::-;5943:30:::1;5970:1;5943:18;:30::i;:::-;5878:103::o:0;5237:87::-;5283:7;5310:6;;;;;;;;;;;5303:13;;5237:87;:::o;8120:104::-;8176:13;8209:7;8202:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8120:104;:::o;12257:460::-;12370:4;12387:24;12414:11;:25;12426:12;:10;:12::i;:::-;12414:25;;;;;;;;;;;;;;;:29;12440:2;12414:29;;;;;;;;;;;;;;;;12387:56;;12496:15;12476:16;:35;;12454:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12612:62;12621:12;:10;:12::i;:::-;12635:2;12658:15;12639:16;:34;12612:8;:62::i;:::-;12705:4;12698:11;;;12257:460;;;;:::o;9305:200::-;9416:4;9433:42;9443:12;:10;:12::i;:::-;9457:9;9468:6;9433:9;:42::i;:::-;9493:4;9486:11;;9305:200;;;;:::o;9807:164::-;9915:7;9942:11;:17;9954:4;9942:17;;;;;;;;;;;;;;;:21;9960:2;9942:21;;;;;;;;;;;;;;;;9935:28;;9807:164;;;;:::o;6136:238::-;5123:13;:11;:13::i;:::-;6259:1:::1;6239:22;;:8;:22;;;;6217:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6338:28;6357:8;6338:18;:28::i;:::-;6136:238:::0;:::o;7140:26::-;;;;;;;;;;;;;:::o;7065:67::-;7056:2;7116;:15;;;;:::i;:::-;7099:13;:33;;;;:::i;:::-;7065:67;:::o;3921:98::-;3974:7;4001:10;3994:17;;3921:98;:::o;15481:356::-;15627:1;15611:18;;:4;:18;;;;15603:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15703:1;15689:16;;:2;:16;;;;15681:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;15781:6;15757:11;:17;15769:4;15757:17;;;;;;;;;;;;;;;:21;15775:2;15757:21;;;;;;;;;;;;;;;:30;;;;15818:2;15803:26;;15812:4;15803:26;;;15822:6;15803:26;;;;;;:::i;:::-;;;;;;;;15481:356;;;:::o;12987:786::-;13136:1;13127:6;:10;13119:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13206:1;13188:20;;:6;:20;;;;13180:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13290:1;13269:23;;:9;:23;;;;13261:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13351:14;;;;;;;;;;;13343:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13419:21;13443:9;:17;13453:6;13443:17;;;;;;;;;;;;;;;;13419:41;;13510:6;13493:13;:23;;13471:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;13654:6;13638:13;:22;13618:9;:17;13628:6;13618:17;;;;;;;;;;;;;;;:42;;;;13706:6;13682:9;:20;13692:9;13682:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13747:9;13730:35;;13739:6;13730:35;;;13758:6;13730:35;;;;;;:::i;:::-;;;;;;;;13108:665;12987:786;;;:::o;14486:468::-;14589:1;14570:21;;:7;:21;;;;14562:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14642:22;14667:9;:18;14677:7;14667:18;;;;;;;;;;;;;;;;14642:43;;14722:6;14704:14;:24;;14696:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14841:6;14824:14;:23;14803:9;:18;14813:7;14803:18;;;;;;;;;;;;;;;:44;;;;14885:6;14869:12;;:22;;;;;;;:::i;:::-;;;;;;;;14935:1;14909:37;;14918:7;14909:37;;;14939:6;14909:37;;;;;;:::i;:::-;;;;;;;;14551:403;14486:468;;:::o;5402:132::-;5477:12;:10;:12::i;:::-;5466:23;;:7;:5;:7::i;:::-;:23;;;5458:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5402:132::o;6534:191::-;6608:16;6627:6;;;;;;;;;;;6608:25;;6653:8;6644:6;;:17;;;;;;;;;;;;;;;;;;6708:8;6677:40;;6698:8;6677:40;;;;;;;;;;;;6597:128;6534:191;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:116::-;5306:21;5321:5;5306:21;:::i;:::-;5299:5;5296:32;5286:60;;5342:1;5339;5332:12;5286:60;5236:116;:::o;5358:133::-;5401:5;5439:6;5426:20;5417:29;;5455:30;5479:5;5455:30;:::i;:::-;5358:133;;;;:::o;5497:323::-;5553:6;5602:2;5590:9;5581:7;5577:23;5573:32;5570:119;;;5608:79;;:::i;:::-;5570:119;5728:1;5753:50;5795:7;5786:6;5775:9;5771:22;5753:50;:::i;:::-;5743:60;;5699:114;5497:323;;;;:::o;5826:329::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:53;6130:7;6121:6;6110:9;6106:22;6085:53;:::i;:::-;6075:63;;6031:117;5826:329;;;;:::o;6161:118::-;6248:24;6266:5;6248:24;:::i;:::-;6243:3;6236:37;6161:118;;:::o;6285:222::-;6378:4;6416:2;6405:9;6401:18;6393:26;;6429:71;6497:1;6486:9;6482:17;6473:6;6429:71;:::i;:::-;6285:222;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:227::-;7645:34;7641:1;7633:6;7629:14;7622:58;7714:10;7709:2;7701:6;7697:15;7690:35;7505:227;:::o;7738:366::-;7880:3;7901:67;7965:2;7960:3;7901:67;:::i;:::-;7894:74;;7977:93;8066:3;7977:93;:::i;:::-;8095:2;8090:3;8086:12;8079:19;;7738:366;;;:::o;8110:419::-;8276:4;8314:2;8303:9;8299:18;8291:26;;8363:9;8357:4;8353:20;8349:1;8338:9;8334:17;8327:47;8391:131;8517:4;8391:131;:::i;:::-;8383:139;;8110:419;;;:::o;8535:180::-;8583:77;8580:1;8573:88;8680:4;8677:1;8670:15;8704:4;8701:1;8694:15;8721:305;8761:3;8780:20;8798:1;8780:20;:::i;:::-;8775:25;;8814:20;8832:1;8814:20;:::i;:::-;8809:25;;8968:1;8900:66;8896:74;8893:1;8890:81;8887:107;;;8974:18;;:::i;:::-;8887:107;9018:1;9015;9011:9;9004:16;;8721:305;;;;:::o;9032:224::-;9172:34;9168:1;9160:6;9156:14;9149:58;9241:7;9236:2;9228:6;9224:15;9217:32;9032:224;:::o;9262:366::-;9404:3;9425:67;9489:2;9484:3;9425:67;:::i;:::-;9418:74;;9501:93;9590:3;9501:93;:::i;:::-;9619:2;9614:3;9610:12;9603:19;;9262:366;;;:::o;9634:419::-;9800:4;9838:2;9827:9;9823:18;9815:26;;9887:9;9881:4;9877:20;9873:1;9862:9;9858:17;9851:47;9915:131;10041:4;9915:131;:::i;:::-;9907:139;;9634:419;;;:::o;10059:225::-;10199:34;10195:1;10187:6;10183:14;10176:58;10268:8;10263:2;10255:6;10251:15;10244:33;10059:225;:::o;10290:366::-;10432:3;10453:67;10517:2;10512:3;10453:67;:::i;:::-;10446:74;;10529:93;10618:3;10529:93;:::i;:::-;10647:2;10642:3;10638:12;10631:19;;10290:366;;;:::o;10662:419::-;10828:4;10866:2;10855:9;10851:18;10843:26;;10915:9;10909:4;10905:20;10901:1;10890:9;10886:17;10879:47;10943:131;11069:4;10943:131;:::i;:::-;10935:139;;10662:419;;;:::o;11087:102::-;11129:8;11176:5;11173:1;11169:13;11148:34;;11087:102;;;:::o;11195:848::-;11256:5;11263:4;11287:6;11278:15;;11311:5;11302:14;;11325:712;11346:1;11336:8;11333:15;11325:712;;;11441:4;11436:3;11432:14;11426:4;11423:24;11420:50;;;11450:18;;:::i;:::-;11420:50;11500:1;11490:8;11486:16;11483:451;;;11915:4;11908:5;11904:16;11895:25;;11483:451;11965:4;11959;11955:15;11947:23;;11995:32;12018:8;11995:32;:::i;:::-;11983:44;;11325:712;;;11195:848;;;;;;;:::o;12049:1073::-;12103:5;12294:8;12284:40;;12315:1;12306:10;;12317:5;;12284:40;12343:4;12333:36;;12360:1;12351:10;;12362:5;;12333:36;12429:4;12477:1;12472:27;;;;12513:1;12508:191;;;;12422:277;;12472:27;12490:1;12481:10;;12492:5;;;12508:191;12553:3;12543:8;12540:17;12537:43;;;12560:18;;:::i;:::-;12537:43;12609:8;12606:1;12602:16;12593:25;;12644:3;12637:5;12634:14;12631:40;;;12651:18;;:::i;:::-;12631:40;12684:5;;;12422:277;;12808:2;12798:8;12795:16;12789:3;12783:4;12780:13;12776:36;12758:2;12748:8;12745:16;12740:2;12734:4;12731:12;12727:35;12711:111;12708:246;;;12864:8;12858:4;12854:19;12845:28;;12899:3;12892:5;12889:14;12886:40;;;12906:18;;:::i;:::-;12886:40;12939:5;;12708:246;12979:42;13017:3;13007:8;13001:4;12998:1;12979:42;:::i;:::-;12964:57;;;;13053:4;13048:3;13044:14;13037:5;13034:25;13031:51;;;13062:18;;:::i;:::-;13031:51;13111:4;13104:5;13100:16;13091:25;;12049:1073;;;;;;:::o;13128:281::-;13186:5;13210:23;13228:4;13210:23;:::i;:::-;13202:31;;13254:25;13270:8;13254:25;:::i;:::-;13242:37;;13298:104;13335:66;13325:8;13319:4;13298:104;:::i;:::-;13289:113;;13128:281;;;;:::o;13415:348::-;13455:7;13478:20;13496:1;13478:20;:::i;:::-;13473:25;;13512:20;13530:1;13512:20;:::i;:::-;13507:25;;13700:1;13632:66;13628:74;13625:1;13622:81;13617:1;13610:9;13603:17;13599:105;13596:131;;;13707:18;;:::i;:::-;13596:131;13755:1;13752;13748:9;13737:20;;13415:348;;;;:::o;13769:223::-;13909:34;13905:1;13897:6;13893:14;13886:58;13978:6;13973:2;13965:6;13961:15;13954:31;13769:223;:::o;13998:366::-;14140:3;14161:67;14225:2;14220:3;14161:67;:::i;:::-;14154:74;;14237:93;14326:3;14237:93;:::i;:::-;14355:2;14350:3;14346:12;14339:19;;13998:366;;;:::o;14370:419::-;14536:4;14574:2;14563:9;14559:18;14551:26;;14623:9;14617:4;14613:20;14609:1;14598:9;14594:17;14587:47;14651:131;14777:4;14651:131;:::i;:::-;14643:139;;14370:419;;;:::o;14795:221::-;14935:34;14931:1;14923:6;14919:14;14912:58;15004:4;14999:2;14991:6;14987:15;14980:29;14795:221;:::o;15022:366::-;15164:3;15185:67;15249:2;15244:3;15185:67;:::i;:::-;15178:74;;15261:93;15350:3;15261:93;:::i;:::-;15379:2;15374:3;15370:12;15363:19;;15022:366;;;:::o;15394:419::-;15560:4;15598:2;15587:9;15583:18;15575:26;;15647:9;15641:4;15637:20;15633:1;15622:9;15618:17;15611:47;15675:131;15801:4;15675:131;:::i;:::-;15667:139;;15394:419;;;:::o;15819:177::-;15959:29;15955:1;15947:6;15943:14;15936:53;15819:177;:::o;16002:366::-;16144:3;16165:67;16229:2;16224:3;16165:67;:::i;:::-;16158:74;;16241:93;16330:3;16241:93;:::i;:::-;16359:2;16354:3;16350:12;16343:19;;16002:366;;;:::o;16374:419::-;16540:4;16578:2;16567:9;16563:18;16555:26;;16627:9;16621:4;16617:20;16613:1;16602:9;16598:17;16591:47;16655:131;16781:4;16655:131;:::i;:::-;16647:139;;16374:419;;;:::o;16799:224::-;16939:34;16935:1;16927:6;16923:14;16916:58;17008:7;17003:2;16995:6;16991:15;16984:32;16799:224;:::o;17029:366::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:419::-;17567:4;17605:2;17594:9;17590:18;17582:26;;17654:9;17648:4;17644:20;17640:1;17629:9;17625:17;17618:47;17682:131;17808:4;17682:131;:::i;:::-;17674:139;;17401:419;;;:::o;17826:222::-;17966:34;17962:1;17954:6;17950:14;17943:58;18035:5;18030:2;18022:6;18018:15;18011:30;17826:222;:::o;18054:366::-;18196:3;18217:67;18281:2;18276:3;18217:67;:::i;:::-;18210:74;;18293:93;18382:3;18293:93;:::i;:::-;18411:2;18406:3;18402:12;18395:19;;18054:366;;;:::o;18426:419::-;18592:4;18630:2;18619:9;18615:18;18607:26;;18679:9;18673:4;18669:20;18665:1;18654:9;18650:17;18643:47;18707:131;18833:4;18707:131;:::i;:::-;18699:139;;18426:419;;;:::o;18851:223::-;18991:34;18987:1;18979:6;18975:14;18968:58;19060:6;19055:2;19047:6;19043:15;19036:31;18851:223;:::o;19080:366::-;19222:3;19243:67;19307:2;19302:3;19243:67;:::i;:::-;19236:74;;19319:93;19408:3;19319:93;:::i;:::-;19437:2;19432:3;19428:12;19421:19;;19080:366;;;:::o;19452:419::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:225::-;20017:34;20013:1;20005:6;20001:14;19994:58;20086:8;20081:2;20073:6;20069:15;20062:33;19877:225;:::o;20108:366::-;20250:3;20271:67;20335:2;20330:3;20271:67;:::i;:::-;20264:74;;20347:93;20436:3;20347:93;:::i;:::-;20465:2;20460:3;20456:12;20449:19;;20108:366;;;:::o;20480:419::-;20646:4;20684:2;20673:9;20669:18;20661:26;;20733:9;20727:4;20723:20;20719:1;20708:9;20704:17;20697:47;20761:131;20887:4;20761:131;:::i;:::-;20753:139;;20480:419;;;:::o;20905:220::-;21045:34;21041:1;21033:6;21029:14;21022:58;21114:3;21109:2;21101:6;21097:15;21090:28;20905:220;:::o;21131:366::-;21273:3;21294:67;21358:2;21353:3;21294:67;:::i;:::-;21287:74;;21370:93;21459:3;21370:93;:::i;:::-;21488:2;21483:3;21479:12;21472:19;;21131:366;;;:::o;21503:419::-;21669:4;21707:2;21696:9;21692:18;21684:26;;21756:9;21750:4;21746:20;21742:1;21731:9;21727:17;21720:47;21784:131;21910:4;21784:131;:::i;:::-;21776:139;;21503:419;;;:::o;21928:221::-;22068:34;22064:1;22056:6;22052:14;22045:58;22137:4;22132:2;22124:6;22120:15;22113:29;21928:221;:::o;22155:366::-;22297:3;22318:67;22382:2;22377:3;22318:67;:::i;:::-;22311:74;;22394:93;22483:3;22394:93;:::i;:::-;22512:2;22507:3;22503:12;22496:19;;22155:366;;;:::o;22527:419::-;22693:4;22731:2;22720:9;22716:18;22708:26;;22780:9;22774:4;22770:20;22766:1;22755:9;22751:17;22744:47;22808:131;22934:4;22808:131;:::i;:::-;22800:139;;22527:419;;;:::o;22952:191::-;22992:4;23012:20;23030:1;23012:20;:::i;:::-;23007:25;;23046:20;23064:1;23046:20;:::i;:::-;23041:25;;23085:1;23082;23079:8;23076:34;;;23090:18;;:::i;:::-;23076:34;23135:1;23132;23128:9;23120:17;;22952:191;;;;:::o;23149:182::-;23289:34;23285:1;23277:6;23273:14;23266:58;23149:182;:::o;23337:366::-;23479:3;23500:67;23564:2;23559:3;23500:67;:::i;:::-;23493:74;;23576:93;23665:3;23576:93;:::i;:::-;23694:2;23689:3;23685:12;23678:19;;23337:366;;;:::o;23709:419::-;23875:4;23913:2;23902:9;23898:18;23890:26;;23962:9;23956:4;23952:20;23948:1;23937:9;23933:17;23926:47;23990:131;24116:4;23990:131;:::i;:::-;23982:139;;23709:419;;;:::o

Swarm Source

ipfs://f3d1667aab163abf14de5241000063fca4ce26ae09efe7d55a6cb4a725d6a833
Loading...
Loading
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.