ETH Price: $2,420.33 (+2.74%)

Token

El Pepito (PEPITO)
 

Overview

Max Total Supply

555,555,555,555,550 PEPITO

Holders

358

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
oniwan.eth
Balance
744,244,000,591.494594657390133834 PEPITO

Value
$0.00
0x843f916cf23cc6d5ba4bf023aa6a77fd57cf191d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x82a4227A...7719e8bD1
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
pepitotoken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : pepito.sol
// SPDX-License-Identifier: MIT
// TG: @pepitotokeneth
//
//EEEEEEEEEEEEEEEEEEEEEElllllll      PPPPPPPPPPPPPPPPP   EEEEEEEEEEEEEEEEEEEEEEPPPPPPPPPPPPPPPPP   IIIIIIIIIITTTTTTTTTTTTTTTTTTTTTTT     OOOOOOOOO     
//E::::::::::::::::::::El:::::l      P::::::::::::::::P  E::::::::::::::::::::EP::::::::::::::::P  I::::::::IT:::::::::::::::::::::T   OO:::::::::OO   
//E::::::::::::::::::::El:::::l      P::::::PPPPPP:::::P E::::::::::::::::::::EP::::::PPPPPP:::::P I::::::::IT:::::::::::::::::::::T OO:::::::::::::OO 
//EE::::::EEEEEEEEE::::El:::::l      PP:::::P     P:::::PEE::::::EEEEEEEEE::::EPP:::::P     P:::::PII::::::IIT:::::TT:::::::TT:::::TO:::::::OOO:::::::O
//  E:::::E       EEEEEE l::::l        P::::P     P:::::P  E:::::E       EEEEEE  P::::P     P:::::P  I::::I  TTTTTT  T:::::T  TTTTTTO::::::O   O::::::O
//  E:::::E              l::::l        P::::P     P:::::P  E:::::E               P::::P     P:::::P  I::::I          T:::::T        O:::::O     O:::::O
//  E::::::EEEEEEEEEE    l::::l        P::::PPPPPP:::::P   E::::::EEEEEEEEEE     P::::PPPPPP:::::P   I::::I          T:::::T        O:::::O     O:::::O
//  E:::::::::::::::E    l::::l        P:::::::::::::PP    E:::::::::::::::E     P:::::::::::::PP    I::::I          T:::::T        O:::::O     O:::::O
//  E:::::::::::::::E    l::::l        P::::PPPPPPPPP      E:::::::::::::::E     P::::PPPPPPPPP      I::::I          T:::::T        O:::::O     O:::::O
//  E::::::EEEEEEEEEE    l::::l        P::::P              E::::::EEEEEEEEEE     P::::P              I::::I          T:::::T        O:::::O     O:::::O
//  E:::::E              l::::l        P::::P              E:::::E               P::::P              I::::I          T:::::T        O:::::O     O:::::O
//  E:::::E       EEEEEE l::::l        P::::P              E:::::E       EEEEEE  P::::P              I::::I          T:::::T        O::::::O   O::::::O
//EE::::::EEEEEEEE:::::El::::::l     PP::::::PP          EE::::::EEEEEEEE:::::EPP::::::PP          II::::::II      TT:::::::TT      O:::::::OOO:::::::O
//E::::::::::::::::::::El::::::l     P::::::::P          E::::::::::::::::::::EP::::::::P          I::::::::I      T:::::::::T       OO:::::::::::::OO 
//E::::::::::::::::::::El::::::l     P::::::::P          E::::::::::::::::::::EP::::::::P          I::::::::I      T:::::::::T         OO:::::::::OO   
//EEEEEEEEEEEEEEEEEEEEEEllllllll     PPPPPPPPPP          EEEEEEEEEEEEEEEEEEEEEEPPPPPPPPPP          IIIIIIIIII      TTTTTTTTTTT           OOOOOOOOO                                                   
                                                    
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract pepitotoken is ERC20, Ownable {
    constructor() ERC20("El Pepito", "PEPITO"){}

    /// turn on/off contributions
    bool public allowContributions;

    /// a minimum contribution to participate in the presale
    uint256 public constant MIN_CONTRIBUTION = .05 ether;

    /// limit the maximum contribution for each wallet
    uint256 public constant MAX_CONTRIBUTION = .15 ether;

    /// the maximum amount of eth that this contract will accept for presale
    uint256 public constant HARD_CAP = 4 ether;

    /// total number of tokens available
    uint256 public constant MAX_SUPPLY = 555555555555550 * 10 ** 18;

    /// ~50% of tokens reserved for presale
    uint256 public constant PRESALE_SUPPLY = 275000000000000 * 10 ** 18;

    /// ~50% of tokens reserved for LP and dev mint
    uint256 public constant RESERVE_MAX_SUPPLY = 280555555555550 * 10 ** 18;

    /// used to track the total contributions for the presale
    uint256 public TOTAL_CONTRIBUTED;

    /// used to track the total number of contributoors
    uint256 public NUMBER_OF_CONTRIBUTOORS;

    /// a struct used to keep track of each contributoors address and contribution amount
    struct Contribution {
        address addr;
        uint256 amount;
    }

    /// mapping of contributions
    mapping (uint256 => Contribution) public contribution;

    /// index of an address to it's contribition information
    mapping (address => uint256) public contributoor;

    /// collect presale contributions
    function sendToPresale() public payable {

        /// look up the sender's current contribution amount in the mapping
        uint256 currentContribution = contribution[contributoor[msg.sender]].amount;

        /// initialize a contribution index so we can keep track of this address' contributions
        uint256 contributionIndex;

        require(msg.value >= MIN_CONTRIBUTION, "Contribution too low");

        /// check to see if contributions are allowed
        require (allowContributions, "Contributions not allowed");

        /// enforce per-wallet contribution limit
        require (msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit");

        /// enforce hard cap
        require (msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap"); 

        if (contributoor[msg.sender] != 0){
            /// no need to increase the number of contributors since this person already added
            contributionIndex = contributoor[msg.sender];
        } else {
            /// keep track of each new contributor with a unique index
            contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1;
            NUMBER_OF_CONTRIBUTOORS++;
        }

        /// add the contribution to the amount contributed
        TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value;

        /// keep track of the address' contributions so far
        contributoor[msg.sender] = contributionIndex;
        contribution[contributionIndex].addr = msg.sender;
        contribution[contributionIndex].amount += msg.value;
    }

    function airdropPresale() external onlyOwner {

        /// determine the price per token
        uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18)/PRESALE_SUPPLY;

        /// loop over each contribution and distribute tokens
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {

            /// convert contribution to 18 decimals
            uint256 contributionAmount = contribution[i].amount * 10 ** 18;

            /// calculate the percentage of the pool based on the address' contribution
            uint256 numberOfTokensToMint = contributionAmount/pricePerToken;

            /// mint the tokens to the address
            _mint(contribution[i].addr, numberOfTokensToMint);
        }
    }

    /// dev mint the remainder of the pool to round out the supply
    function devMint() external onlyOwner {

        /// calculate the remaining supply
        uint256 numberToMint = MAX_SUPPLY - totalSupply();
        
        /// don't allow the dev mint until the tokens have been airdropped
        require (numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max");

        /// mint the remaining supply to the dev's wallet
        _mint(msg.sender, numberToMint);
    }

     /// set whether or not the contract allows contributions
    function setAllowContributions(bool _value) external onlyOwner {
        allowContributions = _value;
    }

    /// if there are not enough contributions or we decide this sucks, refund everyone their eth
    function refundEveryone() external onlyOwner {
        for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) {
            address payable refundAddress = payable(contribution[i].addr);
            
            /// refund the contribution
            refundAddress.transfer(contribution[i].amount);
        }
    }

    /// allows the owner to withdraw the funds in this contract
    function withdrawBalance(address payable _address) external onlyOwner {
        (bool success, ) = _address.call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    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 name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    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 _allowances[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;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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(from != address(0), "ERC20: transfer from 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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","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":[],"name":"devMint","outputs":[],"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":[],"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":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","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":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f456c2050657069746f00000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50455049544f0000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61287b80620002cb6000396000f3fe6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff91906120fc565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611eda565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b04565b6107d6565b6040516102679190611ebf565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b60405161029291906120fc565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611ab1565b610803565b6040516102cf9190611ebf565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa9190612117565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b60405161032591906120fc565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b04565b61084d565b6040516103629190611ebf565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d91906120fc565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611a17565b610890565b6040516103ca91906120fc565b60405180910390f35b3480156103df57600080fd5b506103e86108a8565b6040516103f591906120fc565b60405180910390f35b6104066108b3565b005b34801561041457600080fd5b5061041d610bec565b60405161042a91906120fc565b60405180910390f35b34801561043f57600080fd5b50610448610bf2565b6040516104559190611ebf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611a17565b610c05565b60405161049291906120fc565b60405180910390f35b3480156104a757600080fd5b506104b0610c4d565b005b3480156104be57600080fd5b506104c7610c61565b6040516104d491906120fc565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611a44565b610c73565b005b34801561051257600080fd5b5061051b610d2b565b005b34801561052957600080fd5b50610532610db6565b005b34801561054057600080fd5b5061055b60048036038101906105569190611b44565b610e98565b005b34801561056957600080fd5b50610572610ebd565b60405161057f9190611e7b565b60405180910390f35b34801561059457600080fd5b5061059d610ee7565b6040516105aa91906120fc565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef3565b6040516105d59190611eda565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b04565b610f85565b6040516106129190611ebf565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b04565b610ffc565b60405161064f9190611ebf565b60405180910390f35b34801561066457600080fd5b5061066d61101f565b60405161067a91906120fc565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611a71565b611031565b6040516106b791906120fc565b60405180910390f35b3480156106cc57600080fd5b506106d56110b8565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611b71565b61117f565b60405161070c929190611e96565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611a17565b6111c3565b005b60075481565b60606003805461075390612308565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612308565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e1611247565b90506107ee81858561124f565b600191505092915050565b6000600254905090565b60008061080e611247565b905061081b85828561141a565b6108268585856114a6565b60019150509392505050565b60006012905090565b6d1b6418d0c06deee0580308b8000081565b600080610858611247565b905061087981858561086a8589611031565b6108749190612159565b61124f565b600191505092915050565b673782dace9d90000081565b60096020528060005260406000206000915090505481565b66b1a2bc2ec5000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600066b1a2bc2ec50000341015610959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109509061201c565b60405180910390fd5b600560149054906101000a900460ff166109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f9061205c565b60405180910390fd5b670214e8348c4f000082346109bd9190612159565b11156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611fdc565b60405180910390fd5b673782dace9d90000060065434610a159190612159565b1115610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90611ffc565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae457600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b0e565b6001600754610af39190612159565b905060076000815480929190610b089061233a565b91905055505b34600654610b1c9190612159565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be19190612159565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5561171e565b610c5f600061179c565b565b6d0d8efcec73bbaf9b92a2c000000081565b610c7b61171e565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca190611e66565b60006040518083038185875af1925050503d8060008114610cde576040519150601f19603f3d011682016040523d82523d6000602084013e610ce3565b606091505b5050905080610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90611f5c565b60405180910390fd5b5050565b610d3361171e565b6000610d3d6107f9565b6d1b6418d0c06deee0580308b80000610d56919061223a565b90506d0dd51be44cb23f44c56048b80000811115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611f7c565b60405180910390fd5b610db33382611862565b50565b610dbe61171e565b60006d0d8efcec73bbaf9b92a2c0000000670de0b6b3a7640000600654610de591906121e0565b610def91906121af565b90506000600190505b6007548111610e94576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e2d91906121e0565b905060008382610e3d91906121af565b9050610e7f6008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611862565b50508080610e8c9061233a565b915050610df8565b5050565b610ea061171e565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670214e8348c4f000081565b606060048054610f0290612308565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90612308565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b600080610f90611247565b90506000610f9e8286611031565b905083811015610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906120bc565b60405180910390fd5b610ff0828686840361124f565b60019250505092915050565b600080611007611247565b90506110148185856114a6565b600191505092915050565b6d0dd51be44cb23f44c56048b8000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c061171e565b6000600190505b600754811161117c5760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611167573d6000803e3d6000fd5b505080806111749061233a565b9150506110c7565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cb61171e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290611f1c565b60405180910390fd5b6112448161179c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061209c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690611f3c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140d91906120fc565b60405180910390a3505050565b60006114268484611031565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a05781811015611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990611f9c565b60405180910390fd5b61149f848484840361124f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d9061207c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90611efc565b60405180910390fd5b6115918383836119b9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90611fbc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170591906120fc565b60405180910390a36117188484846119be565b50505050565b611726611247565b73ffffffffffffffffffffffffffffffffffffffff16611744610ebd565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061203c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c9906120dc565b60405180910390fd5b6118de600083836119b9565b80600260008282546118f09190612159565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a191906120fc565b60405180910390a36119b5600083836119be565b5050565b505050565b505050565b6000813590506119d2816127e9565b92915050565b6000813590506119e781612800565b92915050565b6000813590506119fc81612817565b92915050565b600081359050611a118161282e565b92915050565b600060208284031215611a2d57611a2c612410565b5b6000611a3b848285016119c3565b91505092915050565b600060208284031215611a5a57611a59612410565b5b6000611a68848285016119d8565b91505092915050565b60008060408385031215611a8857611a87612410565b5b6000611a96858286016119c3565b9250506020611aa7858286016119c3565b9150509250929050565b600080600060608486031215611aca57611ac9612410565b5b6000611ad8868287016119c3565b9350506020611ae9868287016119c3565b9250506040611afa86828701611a02565b9150509250925092565b60008060408385031215611b1b57611b1a612410565b5b6000611b29858286016119c3565b9250506020611b3a85828601611a02565b9150509250929050565b600060208284031215611b5a57611b59612410565b5b6000611b68848285016119ed565b91505092915050565b600060208284031215611b8757611b86612410565b5b6000611b9584828501611a02565b91505092915050565b611ba78161226e565b82525050565b611bb681612292565b82525050565b6000611bc782612132565b611bd18185612148565b9350611be18185602086016122d5565b611bea81612415565b840191505092915050565b6000611c02602383612148565b9150611c0d82612426565b604082019050919050565b6000611c25602683612148565b9150611c3082612475565b604082019050919050565b6000611c48602283612148565b9150611c53826124c4565b604082019050919050565b6000611c6b600f83612148565b9150611c7682612513565b602082019050919050565b6000611c8e601f83612148565b9150611c998261253c565b602082019050919050565b6000611cb1601d83612148565b9150611cbc82612565565b602082019050919050565b6000611cd4602683612148565b9150611cdf8261258e565b604082019050919050565b6000611cf7602583612148565b9150611d02826125dd565b604082019050919050565b6000611d1a601d83612148565b9150611d258261262c565b602082019050919050565b6000611d3d601483612148565b9150611d4882612655565b602082019050919050565b6000611d60602083612148565b9150611d6b8261267e565b602082019050919050565b6000611d83601983612148565b9150611d8e826126a7565b602082019050919050565b6000611da6602583612148565b9150611db1826126d0565b604082019050919050565b6000611dc960008361213d565b9150611dd48261271f565b600082019050919050565b6000611dec602483612148565b9150611df782612722565b604082019050919050565b6000611e0f602583612148565b9150611e1a82612771565b604082019050919050565b6000611e32601f83612148565b9150611e3d826127c0565b602082019050919050565b611e51816122be565b82525050565b611e60816122c8565b82525050565b6000611e7182611dbc565b9150819050919050565b6000602082019050611e906000830184611b9e565b92915050565b6000604082019050611eab6000830185611b9e565b611eb86020830184611e48565b9392505050565b6000602082019050611ed46000830184611bad565b92915050565b60006020820190508181036000830152611ef48184611bbc565b905092915050565b60006020820190508181036000830152611f1581611bf5565b9050919050565b60006020820190508181036000830152611f3581611c18565b9050919050565b60006020820190508181036000830152611f5581611c3b565b9050919050565b60006020820190508181036000830152611f7581611c5e565b9050919050565b60006020820190508181036000830152611f9581611c81565b9050919050565b60006020820190508181036000830152611fb581611ca4565b9050919050565b60006020820190508181036000830152611fd581611cc7565b9050919050565b60006020820190508181036000830152611ff581611cea565b9050919050565b6000602082019050818103600083015261201581611d0d565b9050919050565b6000602082019050818103600083015261203581611d30565b9050919050565b6000602082019050818103600083015261205581611d53565b9050919050565b6000602082019050818103600083015261207581611d76565b9050919050565b6000602082019050818103600083015261209581611d99565b9050919050565b600060208201905081810360008301526120b581611ddf565b9050919050565b600060208201905081810360008301526120d581611e02565b9050919050565b600060208201905081810360008301526120f581611e25565b9050919050565b60006020820190506121116000830184611e48565b92915050565b600060208201905061212c6000830184611e57565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612164826122be565b915061216f836122be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121a4576121a3612383565b5b828201905092915050565b60006121ba826122be565b91506121c5836122be565b9250826121d5576121d46123b2565b5b828204905092915050565b60006121eb826122be565b91506121f6836122be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561222f5761222e612383565b5b828202905092915050565b6000612245826122be565b9150612250836122be565b92508282101561226357612262612383565b5b828203905092915050565b60006122798261229e565b9050919050565b600061228b8261229e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122f35780820151818401526020810190506122d8565b83811115612302576000848401525b50505050565b6000600282049050600182168061232057607f821691505b60208210811415612334576123336123e1565b5b50919050565b6000612345826122be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561237857612377612383565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6127f28161226e565b81146127fd57600080fd5b50565b61280981612280565b811461281457600080fd5b50565b61282081612292565b811461282b57600080fd5b50565b612837816122be565b811461284257600080fd5b5056fea2646970667358221220b44b0cdd276fc34ac2e59d5adca338b9d144e56aa48f8c8dcfe5fb413a37d5e864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a61161010257806395d89b4111610095578063dd62ed3e11610064578063dd62ed3e14610683578063e3261454146106c0578063e8709c40146106d7578063f2fde38b14610715576101d8565b806395d89b41146105b3578063a457c2d7146105de578063a9059cbb1461061b578063c269932614610658576101d8565b80638512747d116100d15780638512747d1461051d57806387e3c520146105345780638da5cb5b1461055d57806394d95f8f14610588576101d8565b8063715018a61461049b57806373138e4f146104b2578063756af45f146104dd5780637c69e20714610506576101d8565b8063395093511161017a578063511f072611610149578063511f0726146103fe5780635ea06028146104085780637072e45c1461043357806370a082311461045e576101d8565b8063395093511461032e5780633a03171c1461036b5780633dfa10f91461039657806340650c91146103d3576101d8565b806318160ddd116101b657806318160ddd1461027057806323b872dd1461029b578063313ce567146102d857806332cb6b0c14610303576101d8565b8063044f910c146101dd57806306fdde0314610208578063095ea7b314610233575b600080fd5b3480156101e957600080fd5b506101f261073e565b6040516101ff91906120fc565b60405180910390f35b34801561021457600080fd5b5061021d610744565b60405161022a9190611eda565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611b04565b6107d6565b6040516102679190611ebf565b60405180910390f35b34801561027c57600080fd5b506102856107f9565b60405161029291906120fc565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190611ab1565b610803565b6040516102cf9190611ebf565b60405180910390f35b3480156102e457600080fd5b506102ed610832565b6040516102fa9190612117565b60405180910390f35b34801561030f57600080fd5b5061031861083b565b60405161032591906120fc565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190611b04565b61084d565b6040516103629190611ebf565b60405180910390f35b34801561037757600080fd5b50610380610884565b60405161038d91906120fc565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190611a17565b610890565b6040516103ca91906120fc565b60405180910390f35b3480156103df57600080fd5b506103e86108a8565b6040516103f591906120fc565b60405180910390f35b6104066108b3565b005b34801561041457600080fd5b5061041d610bec565b60405161042a91906120fc565b60405180910390f35b34801561043f57600080fd5b50610448610bf2565b6040516104559190611ebf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190611a17565b610c05565b60405161049291906120fc565b60405180910390f35b3480156104a757600080fd5b506104b0610c4d565b005b3480156104be57600080fd5b506104c7610c61565b6040516104d491906120fc565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190611a44565b610c73565b005b34801561051257600080fd5b5061051b610d2b565b005b34801561052957600080fd5b50610532610db6565b005b34801561054057600080fd5b5061055b60048036038101906105569190611b44565b610e98565b005b34801561056957600080fd5b50610572610ebd565b60405161057f9190611e7b565b60405180910390f35b34801561059457600080fd5b5061059d610ee7565b6040516105aa91906120fc565b60405180910390f35b3480156105bf57600080fd5b506105c8610ef3565b6040516105d59190611eda565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190611b04565b610f85565b6040516106129190611ebf565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190611b04565b610ffc565b60405161064f9190611ebf565b60405180910390f35b34801561066457600080fd5b5061066d61101f565b60405161067a91906120fc565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190611a71565b611031565b6040516106b791906120fc565b60405180910390f35b3480156106cc57600080fd5b506106d56110b8565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190611b71565b61117f565b60405161070c929190611e96565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190611a17565b6111c3565b005b60075481565b60606003805461075390612308565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612308565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000806107e1611247565b90506107ee81858561124f565b600191505092915050565b6000600254905090565b60008061080e611247565b905061081b85828561141a565b6108268585856114a6565b60019150509392505050565b60006012905090565b6d1b6418d0c06deee0580308b8000081565b600080610858611247565b905061087981858561086a8589611031565b6108749190612159565b61124f565b600191505092915050565b673782dace9d90000081565b60096020528060005260406000206000915090505481565b66b1a2bc2ec5000081565b600060086000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600066b1a2bc2ec50000341015610959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109509061201c565b60405180910390fd5b600560149054906101000a900460ff166109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f9061205c565b60405180910390fd5b670214e8348c4f000082346109bd9190612159565b11156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590611fdc565b60405180910390fd5b673782dace9d90000060065434610a159190612159565b1115610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90611ffc565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ae457600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b0e565b6001600754610af39190612159565b905060076000815480929190610b089061233a565b91905055505b34600654610b1c9190612159565b60068190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336008600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600860008381526020019081526020016000206001016000828254610be19190612159565b925050819055505050565b60065481565b600560149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5561171e565b610c5f600061179c565b565b6d0d8efcec73bbaf9b92a2c000000081565b610c7b61171e565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610ca190611e66565b60006040518083038185875af1925050503d8060008114610cde576040519150601f19603f3d011682016040523d82523d6000602084013e610ce3565b606091505b5050905080610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90611f5c565b60405180910390fd5b5050565b610d3361171e565b6000610d3d6107f9565b6d1b6418d0c06deee0580308b80000610d56919061223a565b90506d0dd51be44cb23f44c56048b80000811115610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611f7c565b60405180910390fd5b610db33382611862565b50565b610dbe61171e565b60006d0d8efcec73bbaf9b92a2c0000000670de0b6b3a7640000600654610de591906121e0565b610def91906121af565b90506000600190505b6007548111610e94576000670de0b6b3a76400006008600084815260200190815260200160002060010154610e2d91906121e0565b905060008382610e3d91906121af565b9050610e7f6008600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611862565b50508080610e8c9061233a565b915050610df8565b5050565b610ea061171e565b80600560146101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b670214e8348c4f000081565b606060048054610f0290612308565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90612308565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b600080610f90611247565b90506000610f9e8286611031565b905083811015610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda906120bc565b60405180910390fd5b610ff0828686840361124f565b60019250505092915050565b600080611007611247565b90506110148185856114a6565b600191505092915050565b6d0dd51be44cb23f44c56048b8000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110c061171e565b6000600190505b600754811161117c5760006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60086000858152602001908152602001600020600101549081150290604051600060405180830381858888f19350505050158015611167573d6000803e3d6000fd5b505080806111749061233a565b9150506110c7565b50565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6111cb61171e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290611f1c565b60405180910390fd5b6112448161179c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061209c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690611f3c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161140d91906120fc565b60405180910390a3505050565b60006114268484611031565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a05781811015611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990611f9c565b60405180910390fd5b61149f848484840361124f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d9061207c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90611efc565b60405180910390fd5b6115918383836119b9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90611fbc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161170591906120fc565b60405180910390a36117188484846119be565b50505050565b611726611247565b73ffffffffffffffffffffffffffffffffffffffff16611744610ebd565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061203c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c9906120dc565b60405180910390fd5b6118de600083836119b9565b80600260008282546118f09190612159565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119a191906120fc565b60405180910390a36119b5600083836119be565b5050565b505050565b505050565b6000813590506119d2816127e9565b92915050565b6000813590506119e781612800565b92915050565b6000813590506119fc81612817565b92915050565b600081359050611a118161282e565b92915050565b600060208284031215611a2d57611a2c612410565b5b6000611a3b848285016119c3565b91505092915050565b600060208284031215611a5a57611a59612410565b5b6000611a68848285016119d8565b91505092915050565b60008060408385031215611a8857611a87612410565b5b6000611a96858286016119c3565b9250506020611aa7858286016119c3565b9150509250929050565b600080600060608486031215611aca57611ac9612410565b5b6000611ad8868287016119c3565b9350506020611ae9868287016119c3565b9250506040611afa86828701611a02565b9150509250925092565b60008060408385031215611b1b57611b1a612410565b5b6000611b29858286016119c3565b9250506020611b3a85828601611a02565b9150509250929050565b600060208284031215611b5a57611b59612410565b5b6000611b68848285016119ed565b91505092915050565b600060208284031215611b8757611b86612410565b5b6000611b9584828501611a02565b91505092915050565b611ba78161226e565b82525050565b611bb681612292565b82525050565b6000611bc782612132565b611bd18185612148565b9350611be18185602086016122d5565b611bea81612415565b840191505092915050565b6000611c02602383612148565b9150611c0d82612426565b604082019050919050565b6000611c25602683612148565b9150611c3082612475565b604082019050919050565b6000611c48602283612148565b9150611c53826124c4565b604082019050919050565b6000611c6b600f83612148565b9150611c7682612513565b602082019050919050565b6000611c8e601f83612148565b9150611c998261253c565b602082019050919050565b6000611cb1601d83612148565b9150611cbc82612565565b602082019050919050565b6000611cd4602683612148565b9150611cdf8261258e565b604082019050919050565b6000611cf7602583612148565b9150611d02826125dd565b604082019050919050565b6000611d1a601d83612148565b9150611d258261262c565b602082019050919050565b6000611d3d601483612148565b9150611d4882612655565b602082019050919050565b6000611d60602083612148565b9150611d6b8261267e565b602082019050919050565b6000611d83601983612148565b9150611d8e826126a7565b602082019050919050565b6000611da6602583612148565b9150611db1826126d0565b604082019050919050565b6000611dc960008361213d565b9150611dd48261271f565b600082019050919050565b6000611dec602483612148565b9150611df782612722565b604082019050919050565b6000611e0f602583612148565b9150611e1a82612771565b604082019050919050565b6000611e32601f83612148565b9150611e3d826127c0565b602082019050919050565b611e51816122be565b82525050565b611e60816122c8565b82525050565b6000611e7182611dbc565b9150819050919050565b6000602082019050611e906000830184611b9e565b92915050565b6000604082019050611eab6000830185611b9e565b611eb86020830184611e48565b9392505050565b6000602082019050611ed46000830184611bad565b92915050565b60006020820190508181036000830152611ef48184611bbc565b905092915050565b60006020820190508181036000830152611f1581611bf5565b9050919050565b60006020820190508181036000830152611f3581611c18565b9050919050565b60006020820190508181036000830152611f5581611c3b565b9050919050565b60006020820190508181036000830152611f7581611c5e565b9050919050565b60006020820190508181036000830152611f9581611c81565b9050919050565b60006020820190508181036000830152611fb581611ca4565b9050919050565b60006020820190508181036000830152611fd581611cc7565b9050919050565b60006020820190508181036000830152611ff581611cea565b9050919050565b6000602082019050818103600083015261201581611d0d565b9050919050565b6000602082019050818103600083015261203581611d30565b9050919050565b6000602082019050818103600083015261205581611d53565b9050919050565b6000602082019050818103600083015261207581611d76565b9050919050565b6000602082019050818103600083015261209581611d99565b9050919050565b600060208201905081810360008301526120b581611ddf565b9050919050565b600060208201905081810360008301526120d581611e02565b9050919050565b600060208201905081810360008301526120f581611e25565b9050919050565b60006020820190506121116000830184611e48565b92915050565b600060208201905061212c6000830184611e57565b92915050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000612164826122be565b915061216f836122be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121a4576121a3612383565b5b828201905092915050565b60006121ba826122be565b91506121c5836122be565b9250826121d5576121d46123b2565b5b828204905092915050565b60006121eb826122be565b91506121f6836122be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561222f5761222e612383565b5b828202905092915050565b6000612245826122be565b9150612250836122be565b92508282101561226357612262612383565b5b828203905092915050565b60006122798261229e565b9050919050565b600061228b8261229e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122f35780820151818401526020810190506122d8565b83811115612302576000848401525b50505050565b6000600282049050600182168061232057607f821691505b60208210811415612334576123336123e1565b5b50919050565b6000612345826122be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561237857612377612383565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b7f446576206d696e74206c696d6974656420746f2072657365727665206d617800600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6127f28161226e565b81146127fd57600080fd5b50565b61280981612280565b811461281457600080fd5b50565b61282081612292565b811461282b57600080fd5b50565b612837816122be565b811461284257600080fd5b5056fea2646970667358221220b44b0cdd276fc34ac2e59d5adca338b9d144e56aa48f8c8dcfe5fb413a37d5e864736f6c63430008070033

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.