ETH Price: $3,147.82 (+1.81%)

Token

Girltism With ERC404Plus Protocol (G)
 

Overview

Max Total Supply

1,000 G

Holders

232

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.537017014838262883 G

Value
$0.00
0xe32eaa4e9c04f8828fa8512096ae451022a6c8b7
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:
Girltism

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : G.sol
//@dev 1000 unique Girls with unique Attributes

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 contracts/PepeToken.sol



pragma solidity ^0.8.0;


contract Girltism is Ownable, ERC20 {
    bool public limited = true;
    uint supply = 1000000000000000000000;
    uint256 public maxHoldingAmount = 1000000000000000000000;
    uint256 public minHoldingAmount = 0;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Girltism With ERC404Plus Protocol", "G") {
        _mint(msg.sender, supply);
    }

    function blacklist(address[] memory  _address, bool _isBlacklisting) external onlyOwner {
        for (uint i = 0; i < _address.length; i++) {
            blacklists[_address[i]] = _isBlacklisting;
        }
    }

    function start(address _uniswapV2Pair) external onlyOwner{
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setLimitsNeutral() external onlyOwner{
        limited = false;
    }

    function setMaxTxManual(uint256 _maxHoldingAmount) external onlyOwner {
    
        maxHoldingAmount = _maxHoldingAmount;
       
    }

    function increaseMaxTx() external onlyOwner{
        maxHoldingAmount = maxHoldingAmount * 2;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

      mapping(uint index => address holder) _holders;
    mapping(address holder => uint index) _holder_index;
    uint public holders_count;

    function get_holders_list(
        uint index,
        uint count
    ) external view returns (uint page_count, address[] memory accounts) {
        if (index >= holders_count) return (0, new address[](0));

        uint end = index + count;
        if (end > holders_count) {
            end = holders_count;
        }
        page_count = end - index;

        accounts = new address[](page_count);
        uint i;
        for (i = index; i < page_count; ++i) {
            accounts[i] = _holders[index + i];
        }
    }

    function add_holder(address value) internal {
        uint index = holders_count++;
        _holders[index] = value;
        _holder_index[value] = index;
    }

    function remove_holder(address value) internal {
        if (holders_count == 0) return;

        uint removingIndex = _holder_index[value];
        if (removingIndex != holders_count - 1) {
            address lastHolder = _holders[holders_count - 1];
            _holders[removingIndex] = lastHolder;
            _holder_index[lastHolder] = removingIndex;
        }

        --holders_count;
        delete _holder_index[value];
        delete _holders[holders_count];
    }

     uint constant MAX_GENS_START = 1000;
    uint public constant GEN_MIN = 1;
    uint public constant gen_max = MAX_GENS_START;
    uint public gen = MAX_GENS_START;
    uint public constant max_breed = 1000;
    mapping(address owner => uint) public counts;
    uint public breed_total_count;
    uint breed_id;


 



    function _transfer_breed_from_to_by_index(
        address account,
        uint index,
        address to
    ) private {
        string memory breed = "";
        
    }

    function transfer_breed_from_to_by_index(uint index, address to) external {
        require(index < counts[msg.sender], "incorrect index");
        _transfer_breed_from_to_by_index(msg.sender, index, to);
    }

    function gen_mode(uint value) private returns (uint) {
        value = (value * gen) / gen_max;
        if (value == 0) value = 1;
        if (gen > GEN_MIN) --gen;
        return value;
    }

    function buy(
        address to,
        uint256 amount
    ) internal    {
        uint last_balance = balanceOf(to);
        uint balance = last_balance + amount;
        uint count = balance /
            (10 ** decimals()) -
            last_balance /
            (10 ** decimals());
        uint i;
        for (i = 0; i < count; ++i) {
            string memory breed = "Breed(++breed_id, gen_mode(max_breed))";
            
        }
      
    }

    function sell(
        address from,
        uint256 amount
    ) internal {
        uint last_balance = balanceOf(from);
        uint balance = last_balance - amount;
        uint count = last_balance /
            (10 ** decimals()) -
            balance /
            (10 ** decimals());
        uint i;
        uint owner_count = counts[from];
        for (i = 0; i < count; ++i) {
            if (gen < gen_max) ++gen;
            if (owner_count > 0)
                (from, --owner_count);
        }
        
    }

    function transfer_internal(
        address from,
        address to,
        uint256 amount
    ) internal  {
        uint last_balance_from = balanceOf(from);
        uint balance_from = last_balance_from - amount;
        uint last_balance_to = balanceOf(to);
        uint balance_to = last_balance_to + amount;
      
        uint count_from = last_balance_from /
            (10 ** decimals()) -
            balance_from /
            (10 ** decimals());
        uint count_to = balance_to /
            (10 ** decimals()) -
            last_balance_to /
            (10 ** decimals());
        // calculate transfer count
        uint transfer_count = count_from;

        if (transfer_count > count_to) transfer_count = count_to;
        // transfer
        uint i;
        uint owner_count = counts[from];
        for (i = 0; i < transfer_count; ++i) {
            if (owner_count == 0) break;
            uint from_index = --owner_count;
       
        
        }
        uint transfered = i;

        // remove from
        for (i = transfer_count; i < count_from; ++i) {
            uint from_index = --owner_count;
            
        }

        // generate to
        for (i = transfered; i < count_to; ++i) {
          
          
        }

    }


    function get_svg_acc_index(
        address account,
        uint index
    ) external view returns (string memory) {
        
    }

    function get_account_breeds(
        address account,
        uint index,
        uint count
    ) external view returns (uint page_count, string[] memory accounts) {
        uint account_count = counts[account];
   
        uint end = index + count;
        if (end > account_count) {
            end = account_count;
        }
        page_count = end - index;

    
        uint i;
        for (i = 0; i < page_count; ++i) {
    
        }
    }

    function get_account_items(
        address account,
        uint index,
        uint count
    ) external view returns (uint page_count, string[] memory accounts) {
        uint account_count = counts[account];
   

        uint end = index + count;
        if (end > account_count) {
            end = account_count;
        }
        page_count = end - index;

      
        uint i;
        for (i = 0; i < page_count; ++i) {
     
        }
    }

    function get_account_svgs(
        address account,
        uint index,
        uint count
    ) external view returns (uint page_count, string[] memory accounts) {
        uint account_count = counts[account];
        if (index >= account_count) return (0, new string[](0));

        uint end = index + count;
        if (end > account_count) {
            end = account_count;
            page_count = index - end;
        }

        accounts = new string[](page_count);
        uint i;
        uint n = 0;
        for (i = index; i < end; ++i) {
     
        }
    }

    uint background_color;
    uint body;
    uint body_color;
    uint facial_hair;
    uint facial_hair_color;
    uint shirt_1;
    uint shirt_1_color;
    uint shirt_2;
    uint shirt_2_color;
    uint shirt_3;
    uint shirt_3_color;
    uint nose;
    uint nose_color;
    uint mouth;
    uint mouth_color;
    uint eyes_base_color;
    uint eyes;
    uint eyes_color;
    uint hair;
    uint hair_color;
    uint hat;
    uint hat_color;
    uint accessories;
    uint accessories_color;
    uint mask;
    uint mask_color;
    

    function addBackground_color(uint _background_color) external onlyOwner{
        background_color = _background_color;
    }

    function addBody(uint _body) external onlyOwner{
        body = _body;
    }

    function addBody_color(uint _body_color) external onlyOwner {
        body_color = _body_color;
    }

    function addFacial_hair(uint _facial_hair) external onlyOwner {
        facial_hair = _facial_hair;
    }

    function addFacial_hair_color(uint _facial_hair_color) external onlyOwner{
        facial_hair_color = _facial_hair_color;
    }

    function addShirt_1(uint _shirt_1) external onlyOwner{
        shirt_1 = _shirt_1;
    }

    function addShirt_1_color(uint _shirt_1_color) external onlyOwner{
        shirt_1_color = _shirt_1_color;
    }

    function addShirt_2(uint _shirt_2) external onlyOwner{
        shirt_2 = _shirt_2;
    }

    function addShirt_2_color(uint _shirt_2_color) external onlyOwner{
        shirt_2_color = _shirt_2_color;
    }

    function addShirt_3(uint _shirt_3) external onlyOwner{
        shirt_3 = _shirt_3;
    }

    function addShirt_3_color(uint _shirt_3_color) external onlyOwner{
        shirt_3_color = _shirt_3_color;
    }

    function addNose(uint _nose) external onlyOwner{
        nose = _nose;
    }

    function addNose_color(uint _nose_color) external onlyOwner{
        nose_color = _nose_color;
    }

    function addMouth(uint _mouth) external onlyOwner{
        mouth = _mouth;
    }

    function addMouth_color(uint _mouth_color) external onlyOwner{
        mouth_color = _mouth_color;
    }

    function addEyes_base_color(uint _eyes_base_color) external onlyOwner{
        eyes_base_color = _eyes_base_color;
    }

    function addEyes(uint _eyes) external onlyOwner {
        eyes = _eyes;
    }

    function addEyes_color(uint _eyes_color) external onlyOwner{
        eyes_color = _eyes_color;
    }

    function addHair(uint _hair) external onlyOwner{
        hair = _hair;
    }

    function addHair_color(uint _hair_color) external onlyOwner{
        hair_color = _hair_color;
    }

    function addHat(uint _hat) external onlyOwner{
        hat = _hat;
    }

    function addHat_color(uint _hat_color) external onlyOwner{
        hat_color = _hat_color;
    }

    function addAccessories(uint _accessories) external onlyOwner{
        accessories = _accessories;
    }

    function addAccessories_color(uint _accessories_color) external {
        accessories_color = _accessories_color;
    }

    function setMask(uint _mask) external onlyOwner{
        mask = _mask;
    }

    function setMask_color(uint _mask_color) external onlyOwner{
        mask_color = _mask_color;
    }



}

Settings
{
  "optimizer": {
    "enabled": true,
    "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":"GEN_MIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_accessories","type":"uint256"}],"name":"addAccessories","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_accessories_color","type":"uint256"}],"name":"addAccessories_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_background_color","type":"uint256"}],"name":"addBackground_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_body","type":"uint256"}],"name":"addBody","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_body_color","type":"uint256"}],"name":"addBody_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eyes","type":"uint256"}],"name":"addEyes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eyes_base_color","type":"uint256"}],"name":"addEyes_base_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eyes_color","type":"uint256"}],"name":"addEyes_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_facial_hair","type":"uint256"}],"name":"addFacial_hair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_facial_hair_color","type":"uint256"}],"name":"addFacial_hair_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hair","type":"uint256"}],"name":"addHair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hair_color","type":"uint256"}],"name":"addHair_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hat","type":"uint256"}],"name":"addHat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hat_color","type":"uint256"}],"name":"addHat_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mouth","type":"uint256"}],"name":"addMouth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mouth_color","type":"uint256"}],"name":"addMouth_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nose","type":"uint256"}],"name":"addNose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nose_color","type":"uint256"}],"name":"addNose_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_1","type":"uint256"}],"name":"addShirt_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_1_color","type":"uint256"}],"name":"addShirt_1_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_2","type":"uint256"}],"name":"addShirt_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_2_color","type":"uint256"}],"name":"addShirt_2_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_3","type":"uint256"}],"name":"addShirt_3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shirt_3_color","type":"uint256"}],"name":"addShirt_3_color","outputs":[],"stateMutability":"nonpayable","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":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breed_total_count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"counts","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":"gen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gen_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"get_account_breeds","outputs":[{"internalType":"uint256","name":"page_count","type":"uint256"},{"internalType":"string[]","name":"accounts","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"get_account_items","outputs":[{"internalType":"uint256","name":"page_count","type":"uint256"},{"internalType":"string[]","name":"accounts","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"get_account_svgs","outputs":[{"internalType":"uint256","name":"page_count","type":"uint256"},{"internalType":"string[]","name":"accounts","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"get_holders_list","outputs":[{"internalType":"uint256","name":"page_count","type":"uint256"},{"internalType":"address[]","name":"accounts","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"get_svg_acc_index","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holders_count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"increaseMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_breed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimitsNeutral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mask","type":"uint256"}],"name":"setMask","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mask_color","type":"uint256"}],"name":"setMask_color","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setMaxTxManual","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"transfer_breed_from_to_by_index","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526006805460ff19166001179055683635c9adc5dea0000060078190556008555f6009556103e8600f55348015610038575f5ffd5b50604051806060016040528060218152602001612404602191396040805180820190915260018152604760f81b6020820152610073336100a6565b600461007f8382610437565b50600561008c8282610437565b5050506100a1336007546100f560201b60201c565b610516565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166101505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b61015b5f83836101e1565b8060035f82825461016c91906104f1565b90915550506001600160a01b0382165f90815260016020526040812080548392906101989084906104f1565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382165f908152600b602052604090205460ff1615801561022157506001600160a01b0383165f908152600b602052604090205460ff16155b61025b5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610147565b600a546001600160a01b03166102e3575f546001600160a01b038481169116148061029257505f546001600160a01b038381169116145b6102de5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f742073746172746564000000000000000000006044820152606401610147565b505050565b60065460ff1680156103025750600a546001600160a01b038481169116145b156102de5760085481610329846001600160a01b03165f9081526001602052604090205490565b61033391906104f1565b1115801561036b57506009548161035e846001600160a01b03165f9081526001602052604090205490565b61036891906104f1565b10155b6102de5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610147565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806103c857607f821691505b6020821081036103e657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102de57805f5260205f20601f840160051c810160208510156104115750805b601f840160051c820191505b81811015610430575f815560010161041d565b5050505050565b81516001600160401b03811115610450576104506103a0565b6104648161045e84546103b4565b846103ec565b6020601f821160018114610496575f831561047f5750848201515b5f19600385901b1c1916600184901b178455610430565b5f84815260208120601f198516915b828110156104c557878501518255602094850194600190920191016104a5565b50848210156104e257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561051057634e487b7160e01b5f52601160045260245ffd5b92915050565b611ee1806105235f395ff3fe608060405234801561000f575f5ffd5b50600436106103bf575f3560e01c8063664c587d116101f5578063a9059cbb11610114578063c0ff84df116100a9578063dd62ed3e11610079578063dd62ed3e14610832578063dde415fa14610720578063e16a87831461086a578063f2fde38b14610872575f5ffd5b8063c0ff84df146107e6578063c997eb8d146107f9578063d5a426061461080c578063dd0b281e1461081f575f5ffd5b8063b42dfa0d116100e4578063b42dfa0d146107a1578063b4377a3e146107aa578063b4f243a4146107bd578063b83d4fc9146107d3575f5ffd5b8063a9059cbb1461075f578063af504def14610772578063b23211651461077b578063b2b6e7441461078e575f5ffd5b806389f9a1d31161018a57806395d89b411161015a57806395d89b411461073c57806398bafaa3146106b35780639994cde014610744578063a457c2d71461074c575f5ffd5b806389f9a1d3146107075780638da5cb5b146107105780638fdada4a146107205780639191cefd14610729575f5ffd5b8063750e8d10116101c5578063750e8d10146106b3578063795ed01e146106d4578063860a32ec146106e757806389a3764a146106f4575f5ffd5b8063664c587d1461065d5780636707e3bc1461067057806370a0823114610683578063715018a6146106ab575f5ffd5b80632d12d34b116102e157806349bd5a5e116102765780635957272a116102465780635957272a146106115780635a5e0983146106245780635d7fa6fc1461063757806361c676ed1461064a575f5ffd5b806349bd5a5e146105ad5780634e1e8dbf146105d85780634f301378146105eb5780634fbdf0b9146105fe575f5ffd5b80633860a393116102b15780633860a3931461055357806339509351146105745780633a7930531461058757806342966c681461059a575f5ffd5b80632d12d34b146105165780632d8d53541461051e578063313ce5671461053157806332a80fe614610540575f5ffd5b806316c02129116103575780632713c5a4116103275780632713c5a4146104ca57806328d35d5a146104dd57806329887919146104f05780632cc6182614610503575f5ffd5b806316c021291461048457806318160ddd146104a65780631ab99e12146104ae57806323b872dd146104b7575f5ffd5b806306ea37161161039257806306ea37161461042657806306fdde0314610439578063095ea7b31461044e5780631238096d14610471575f5ffd5b8063018a3741146103c3578063038f9b7e146103df578063048b402e146103f45780630568e65e14610407575b5f5ffd5b6103cc600e5481565b6040519081526020015b60405180910390f35b6103f26103ed366004611a8c565b610885565b005b6103f2610402366004611a8c565b6108bc565b6103cc610415366004611abe565b60106020525f908152604090205481565b6103f2610434366004611a8c565b6108ea565b610441610918565b6040516103d69190611b0c565b61046161045c366004611b1e565b6109a8565b60405190151581526020016103d6565b6103f261047f366004611a8c565b6109be565b610461610492366004611abe565b600b6020525f908152604090205460ff1681565b6003546103cc565b6103cc60095481565b6104616104c5366004611b46565b6109ec565b6103f26104d8366004611a8c565b610a94565b6103f26104eb366004611a8c565b602a55565b6103f26104fe366004611a8c565b610ac2565b6103f2610511366004611a8c565b610af0565b6103cc600181565b6103f261052c366004611a8c565b610b1e565b604051601281526020016103d6565b6103f261054e366004611a8c565b610b4c565b610566610561366004611b80565b610b7a565b6040516103d6929190611ba0565b610461610582366004611b1e565b610c7c565b6103f2610595366004611a8c565b610cb7565b6103f26105a8366004611a8c565b610ce5565b600a546105c0906001600160a01b031681565b6040516001600160a01b0390911681526020016103d6565b6103f26105e6366004611a8c565b610cf2565b6103f26105f9366004611a8c565b610d20565b6103f261060c366004611a8c565b610d4e565b6103f261061f366004611a8c565b610d7c565b6103f2610632366004611a8c565b610daa565b6103f2610645366004611a8c565b610dd8565b6103f2610658366004611a8c565b610e06565b6103f261066b366004611a8c565b610e34565b6103f261067e366004611a8c565b610e62565b6103cc610691366004611abe565b6001600160a01b03165f9081526001602052604090205490565b6103f2610e90565b6106c66106c1366004611bf6565b610ec4565b6040516103d6929190611c26565b6103f26106e2366004611a8c565b610f20565b6006546104619060ff1681565b6103f2610702366004611a8c565b610f4e565b6103cc60085481565b5f546001600160a01b03166105c0565b6103cc6103e881565b6103f2610737366004611a8c565b610f7c565b610441610faa565b6103f2610fb9565b61046161075a366004611b1e565b610fee565b61046161076d366004611b1e565b611086565b6103cc60115481565b6103f2610789366004611a8c565b611092565b6103f261079c366004611a8c565b6110c0565b6103cc600f5481565b6103f26107b8366004611c90565b6110ee565b6104416107cb366004611b1e565b606092915050565b6103f26107e1366004611a8c565b61114f565b6103f26107f4366004611a8c565b61117d565b6103f2610807366004611cdd565b6111ab565b6106c661081a366004611bf6565b611233565b6103f261082d366004611abe565b611320565b6103cc610840366004611db1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6103f261136b565b6103f2610880366004611abe565b6113a2565b5f546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611dd9565b60405180910390fd5b601c55565b5f546001600160a01b031633146108e55760405162461bcd60e51b81526004016108ae90611dd9565b602755565b5f546001600160a01b031633146109135760405162461bcd60e51b81526004016108ae90611dd9565b602555565b60606004805461092790611e0e565b80601f016020809104026020016040519081016040528092919081815260200182805461095390611e0e565b801561099e5780601f106109755761010080835404028352916020019161099e565b820191905f5260205f20905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b5f6109b4338484611439565b5060015b92915050565b5f546001600160a01b031633146109e75760405162461bcd60e51b81526004016108ae90611dd9565b602455565b5f6109f884848461155c565b6001600160a01b0384165f90815260026020908152604080832033845290915290205482811015610a7c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108ae565b610a898533858403611439565b506001949350505050565b5f546001600160a01b03163314610abd5760405162461bcd60e51b81526004016108ae90611dd9565b602355565b5f546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108ae90611dd9565b600855565b5f546001600160a01b03163314610b195760405162461bcd60e51b81526004016108ae90611dd9565b601755565b5f546001600160a01b03163314610b475760405162461bcd60e51b81526004016108ae90611dd9565b602255565b5f546001600160a01b03163314610b755760405162461bcd60e51b81526004016108ae90611dd9565b602655565b5f6060600e548410610b9c575050604080515f80825260208201909252610c75565b5f610ba78486611e5a565b9050600e54811115610bb85750600e545b610bc28582611e6d565b92508267ffffffffffffffff811115610bdd57610bdd611cba565b604051908082528060200260200182016040528015610c06578160200160208202803683370190505b509150845b83811015610c7257600c5f610c208389611e5a565b81526020019081526020015f205f9054906101000a90046001600160a01b0316838281518110610c5257610c52611e80565b6001600160a01b0390921660209283029190910190910152600101610c0b565b50505b9250929050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916109b4918590610cb2908690611e5a565b611439565b5f546001600160a01b03163314610ce05760405162461bcd60e51b81526004016108ae90611dd9565b602855565b610cef3382611734565b50565b5f546001600160a01b03163314610d1b5760405162461bcd60e51b81526004016108ae90611dd9565b601555565b5f546001600160a01b03163314610d495760405162461bcd60e51b81526004016108ae90611dd9565b601d55565b5f546001600160a01b03163314610d775760405162461bcd60e51b81526004016108ae90611dd9565b602c55565b5f546001600160a01b03163314610da55760405162461bcd60e51b81526004016108ae90611dd9565b601455565b5f546001600160a01b03163314610dd35760405162461bcd60e51b81526004016108ae90611dd9565b602055565b5f546001600160a01b03163314610e015760405162461bcd60e51b81526004016108ae90611dd9565b601b55565b5f546001600160a01b03163314610e2f5760405162461bcd60e51b81526004016108ae90611dd9565b601355565b5f546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016108ae90611dd9565b602b55565b5f546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108ae90611dd9565b602955565b5f546001600160a01b03163314610eb95760405162461bcd60e51b81526004016108ae90611dd9565b610ec25f61188a565b565b6001600160a01b0383165f9081526010602052604081205460609082610eea8587611e5a565b905081811115610ef75750805b610f018682611e6d565b93505f5b84811015610f1557600101610f05565b505050935093915050565b5f546001600160a01b03163314610f495760405162461bcd60e51b81526004016108ae90611dd9565b601a55565b5f546001600160a01b03163314610f775760405162461bcd60e51b81526004016108ae90611dd9565b602155565b5f546001600160a01b03163314610fa55760405162461bcd60e51b81526004016108ae90611dd9565b601655565b60606005805461092790611e0e565b5f546001600160a01b03163314610fe25760405162461bcd60e51b81526004016108ae90611dd9565b6006805460ff19169055565b335f9081526002602090815260408083206001600160a01b03861684529091528120548281101561106f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ae565b61107c3385858403611439565b5060019392505050565b5f6109b433848461155c565b5f546001600160a01b031633146110bb5760405162461bcd60e51b81526004016108ae90611dd9565b601855565b5f546001600160a01b031633146110e95760405162461bcd60e51b81526004016108ae90611dd9565b601f55565b335f90815260106020526040902054821061113d5760405162461bcd60e51b815260206004820152600f60248201526e0d2dcc6dee4e4cac6e840d2dcc8caf608b1b60448201526064016108ae565b60408051602081019091525f90525050565b5f546001600160a01b031633146111785760405162461bcd60e51b81526004016108ae90611dd9565b601955565b5f546001600160a01b031633146111a65760405162461bcd60e51b81526004016108ae90611dd9565b601e55565b5f546001600160a01b031633146111d45760405162461bcd60e51b81526004016108ae90611dd9565b5f5b825181101561122e5781600b5f8584815181106111f5576111f5611e80565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016111d6565b505050565b6001600160a01b0383165f9081526010602052604081205460609080851061128a57604080515f808252602082019092528161127f565b606081526020019060019003908161126a5790505b509250925050611318565b5f6112958587611e5a565b9050818111156112ae5750806112ab8187611e6d565b93505b8367ffffffffffffffff8111156112c7576112c7611cba565b6040519080825280602002602001820160405280156112fa57816020015b60608152602001906001900390816112e55790505b509250855f5b8282101561131357816001019150611300565b505050505b935093915050565b5f546001600160a01b031633146113495760405162461bcd60e51b81526004016108ae90611dd9565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146113945760405162461bcd60e51b81526004016108ae90611dd9565b600854610aeb906002611e94565b5f546001600160a01b031633146113cb5760405162461bcd60e51b81526004016108ae90611dd9565b6001600160a01b0381166114305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b610cef8161188a565b6001600160a01b03831661149b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ae565b6001600160a01b0382166114fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ae565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108ae565b6001600160a01b0382166116225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108ae565b61162d8383836118d9565b6001600160a01b0383165f90815260016020526040902054818110156116a45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ae565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906116da908490611e5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172691815260200190565b60405180910390a350505050565b6001600160a01b0382166117945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108ae565b61179f825f836118d9565b6001600160a01b0382165f90815260016020526040902054818110156118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108ae565b6001600160a01b0383165f908152600160205260408120838303905560038054849290611840908490611e6d565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f908152600b602052604090205460ff1615801561191957506001600160a01b0383165f908152600b602052604090205460ff16155b6119535760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016108ae565b600a546001600160a01b03166119cf575f546001600160a01b038481169116148061198a57505f546001600160a01b038381169116145b61122e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016108ae565b60065460ff1680156119ee5750600a546001600160a01b038481169116145b1561122e5760085481611a15846001600160a01b03165f9081526001602052604090205490565b611a1f9190611e5a565b11158015611a57575060095481611a4a846001600160a01b03165f9081526001602052604090205490565b611a549190611e5a565b10155b61122e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016108ae565b5f60208284031215611a9c575f5ffd5b5035919050565b80356001600160a01b0381168114611ab9575f5ffd5b919050565b5f60208284031215611ace575f5ffd5b611ad782611aa3565b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611ad76020830184611ade565b5f5f60408385031215611b2f575f5ffd5b611b3883611aa3565b946020939093013593505050565b5f5f5f60608486031215611b58575f5ffd5b611b6184611aa3565b9250611b6f60208501611aa3565b929592945050506040919091013590565b5f5f60408385031215611b91575f5ffd5b50508035926020909101359150565b5f60408201848352604060208401528084518083526060850191506020860192505f5b81811015611bea5783516001600160a01b0316835260209384019390920191600101611bc3565b50909695505050505050565b5f5f5f60608486031215611c08575f5ffd5b611c1184611aa3565b95602085013595506040909401359392505050565b5f604082018483526040602084015280845180835260608501915060608160051b8601019250602086015f5b82811015611c8357605f19878603018452611c6e858351611ade565b94506020938401939190910190600101611c52565b5092979650505050505050565b5f5f60408385031215611ca1575f5ffd5b82359150611cb160208401611aa3565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b80358015158114611ab9575f5ffd5b5f5f60408385031215611cee575f5ffd5b823567ffffffffffffffff811115611d04575f5ffd5b8301601f81018513611d14575f5ffd5b803567ffffffffffffffff811115611d2e57611d2e611cba565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715611d5b57611d5b611cba565b604052918252602081840181019290810188841115611d78575f5ffd5b6020850194505b83851015611d9e57611d9085611aa3565b815260209485019401611d7f565b509450611cb19250505060208401611cce565b5f5f60408385031215611dc2575f5ffd5b611dcb83611aa3565b9150611cb160208401611aa3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e2257607f821691505b602082108103611e4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109b8576109b8611e46565b818103818111156109b8576109b8611e46565b634e487b7160e01b5f52603260045260245ffd5b80820281158282048414176109b8576109b8611e4656fea26469706673582212209273f3840a337c5cddc5e941a39d5af73681072c24e3f37facdecbc84d06a1e464736f6c634300081b00334769726c7469736d205769746820455243343034506c75732050726f746f636f6c

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106103bf575f3560e01c8063664c587d116101f5578063a9059cbb11610114578063c0ff84df116100a9578063dd62ed3e11610079578063dd62ed3e14610832578063dde415fa14610720578063e16a87831461086a578063f2fde38b14610872575f5ffd5b8063c0ff84df146107e6578063c997eb8d146107f9578063d5a426061461080c578063dd0b281e1461081f575f5ffd5b8063b42dfa0d116100e4578063b42dfa0d146107a1578063b4377a3e146107aa578063b4f243a4146107bd578063b83d4fc9146107d3575f5ffd5b8063a9059cbb1461075f578063af504def14610772578063b23211651461077b578063b2b6e7441461078e575f5ffd5b806389f9a1d31161018a57806395d89b411161015a57806395d89b411461073c57806398bafaa3146106b35780639994cde014610744578063a457c2d71461074c575f5ffd5b806389f9a1d3146107075780638da5cb5b146107105780638fdada4a146107205780639191cefd14610729575f5ffd5b8063750e8d10116101c5578063750e8d10146106b3578063795ed01e146106d4578063860a32ec146106e757806389a3764a146106f4575f5ffd5b8063664c587d1461065d5780636707e3bc1461067057806370a0823114610683578063715018a6146106ab575f5ffd5b80632d12d34b116102e157806349bd5a5e116102765780635957272a116102465780635957272a146106115780635a5e0983146106245780635d7fa6fc1461063757806361c676ed1461064a575f5ffd5b806349bd5a5e146105ad5780634e1e8dbf146105d85780634f301378146105eb5780634fbdf0b9146105fe575f5ffd5b80633860a393116102b15780633860a3931461055357806339509351146105745780633a7930531461058757806342966c681461059a575f5ffd5b80632d12d34b146105165780632d8d53541461051e578063313ce5671461053157806332a80fe614610540575f5ffd5b806316c02129116103575780632713c5a4116103275780632713c5a4146104ca57806328d35d5a146104dd57806329887919146104f05780632cc6182614610503575f5ffd5b806316c021291461048457806318160ddd146104a65780631ab99e12146104ae57806323b872dd146104b7575f5ffd5b806306ea37161161039257806306ea37161461042657806306fdde0314610439578063095ea7b31461044e5780631238096d14610471575f5ffd5b8063018a3741146103c3578063038f9b7e146103df578063048b402e146103f45780630568e65e14610407575b5f5ffd5b6103cc600e5481565b6040519081526020015b60405180910390f35b6103f26103ed366004611a8c565b610885565b005b6103f2610402366004611a8c565b6108bc565b6103cc610415366004611abe565b60106020525f908152604090205481565b6103f2610434366004611a8c565b6108ea565b610441610918565b6040516103d69190611b0c565b61046161045c366004611b1e565b6109a8565b60405190151581526020016103d6565b6103f261047f366004611a8c565b6109be565b610461610492366004611abe565b600b6020525f908152604090205460ff1681565b6003546103cc565b6103cc60095481565b6104616104c5366004611b46565b6109ec565b6103f26104d8366004611a8c565b610a94565b6103f26104eb366004611a8c565b602a55565b6103f26104fe366004611a8c565b610ac2565b6103f2610511366004611a8c565b610af0565b6103cc600181565b6103f261052c366004611a8c565b610b1e565b604051601281526020016103d6565b6103f261054e366004611a8c565b610b4c565b610566610561366004611b80565b610b7a565b6040516103d6929190611ba0565b610461610582366004611b1e565b610c7c565b6103f2610595366004611a8c565b610cb7565b6103f26105a8366004611a8c565b610ce5565b600a546105c0906001600160a01b031681565b6040516001600160a01b0390911681526020016103d6565b6103f26105e6366004611a8c565b610cf2565b6103f26105f9366004611a8c565b610d20565b6103f261060c366004611a8c565b610d4e565b6103f261061f366004611a8c565b610d7c565b6103f2610632366004611a8c565b610daa565b6103f2610645366004611a8c565b610dd8565b6103f2610658366004611a8c565b610e06565b6103f261066b366004611a8c565b610e34565b6103f261067e366004611a8c565b610e62565b6103cc610691366004611abe565b6001600160a01b03165f9081526001602052604090205490565b6103f2610e90565b6106c66106c1366004611bf6565b610ec4565b6040516103d6929190611c26565b6103f26106e2366004611a8c565b610f20565b6006546104619060ff1681565b6103f2610702366004611a8c565b610f4e565b6103cc60085481565b5f546001600160a01b03166105c0565b6103cc6103e881565b6103f2610737366004611a8c565b610f7c565b610441610faa565b6103f2610fb9565b61046161075a366004611b1e565b610fee565b61046161076d366004611b1e565b611086565b6103cc60115481565b6103f2610789366004611a8c565b611092565b6103f261079c366004611a8c565b6110c0565b6103cc600f5481565b6103f26107b8366004611c90565b6110ee565b6104416107cb366004611b1e565b606092915050565b6103f26107e1366004611a8c565b61114f565b6103f26107f4366004611a8c565b61117d565b6103f2610807366004611cdd565b6111ab565b6106c661081a366004611bf6565b611233565b6103f261082d366004611abe565b611320565b6103cc610840366004611db1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6103f261136b565b6103f2610880366004611abe565b6113a2565b5f546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611dd9565b60405180910390fd5b601c55565b5f546001600160a01b031633146108e55760405162461bcd60e51b81526004016108ae90611dd9565b602755565b5f546001600160a01b031633146109135760405162461bcd60e51b81526004016108ae90611dd9565b602555565b60606004805461092790611e0e565b80601f016020809104026020016040519081016040528092919081815260200182805461095390611e0e565b801561099e5780601f106109755761010080835404028352916020019161099e565b820191905f5260205f20905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b5f6109b4338484611439565b5060015b92915050565b5f546001600160a01b031633146109e75760405162461bcd60e51b81526004016108ae90611dd9565b602455565b5f6109f884848461155c565b6001600160a01b0384165f90815260026020908152604080832033845290915290205482811015610a7c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108ae565b610a898533858403611439565b506001949350505050565b5f546001600160a01b03163314610abd5760405162461bcd60e51b81526004016108ae90611dd9565b602355565b5f546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108ae90611dd9565b600855565b5f546001600160a01b03163314610b195760405162461bcd60e51b81526004016108ae90611dd9565b601755565b5f546001600160a01b03163314610b475760405162461bcd60e51b81526004016108ae90611dd9565b602255565b5f546001600160a01b03163314610b755760405162461bcd60e51b81526004016108ae90611dd9565b602655565b5f6060600e548410610b9c575050604080515f80825260208201909252610c75565b5f610ba78486611e5a565b9050600e54811115610bb85750600e545b610bc28582611e6d565b92508267ffffffffffffffff811115610bdd57610bdd611cba565b604051908082528060200260200182016040528015610c06578160200160208202803683370190505b509150845b83811015610c7257600c5f610c208389611e5a565b81526020019081526020015f205f9054906101000a90046001600160a01b0316838281518110610c5257610c52611e80565b6001600160a01b0390921660209283029190910190910152600101610c0b565b50505b9250929050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916109b4918590610cb2908690611e5a565b611439565b5f546001600160a01b03163314610ce05760405162461bcd60e51b81526004016108ae90611dd9565b602855565b610cef3382611734565b50565b5f546001600160a01b03163314610d1b5760405162461bcd60e51b81526004016108ae90611dd9565b601555565b5f546001600160a01b03163314610d495760405162461bcd60e51b81526004016108ae90611dd9565b601d55565b5f546001600160a01b03163314610d775760405162461bcd60e51b81526004016108ae90611dd9565b602c55565b5f546001600160a01b03163314610da55760405162461bcd60e51b81526004016108ae90611dd9565b601455565b5f546001600160a01b03163314610dd35760405162461bcd60e51b81526004016108ae90611dd9565b602055565b5f546001600160a01b03163314610e015760405162461bcd60e51b81526004016108ae90611dd9565b601b55565b5f546001600160a01b03163314610e2f5760405162461bcd60e51b81526004016108ae90611dd9565b601355565b5f546001600160a01b03163314610e5d5760405162461bcd60e51b81526004016108ae90611dd9565b602b55565b5f546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108ae90611dd9565b602955565b5f546001600160a01b03163314610eb95760405162461bcd60e51b81526004016108ae90611dd9565b610ec25f61188a565b565b6001600160a01b0383165f9081526010602052604081205460609082610eea8587611e5a565b905081811115610ef75750805b610f018682611e6d565b93505f5b84811015610f1557600101610f05565b505050935093915050565b5f546001600160a01b03163314610f495760405162461bcd60e51b81526004016108ae90611dd9565b601a55565b5f546001600160a01b03163314610f775760405162461bcd60e51b81526004016108ae90611dd9565b602155565b5f546001600160a01b03163314610fa55760405162461bcd60e51b81526004016108ae90611dd9565b601655565b60606005805461092790611e0e565b5f546001600160a01b03163314610fe25760405162461bcd60e51b81526004016108ae90611dd9565b6006805460ff19169055565b335f9081526002602090815260408083206001600160a01b03861684529091528120548281101561106f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ae565b61107c3385858403611439565b5060019392505050565b5f6109b433848461155c565b5f546001600160a01b031633146110bb5760405162461bcd60e51b81526004016108ae90611dd9565b601855565b5f546001600160a01b031633146110e95760405162461bcd60e51b81526004016108ae90611dd9565b601f55565b335f90815260106020526040902054821061113d5760405162461bcd60e51b815260206004820152600f60248201526e0d2dcc6dee4e4cac6e840d2dcc8caf608b1b60448201526064016108ae565b60408051602081019091525f90525050565b5f546001600160a01b031633146111785760405162461bcd60e51b81526004016108ae90611dd9565b601955565b5f546001600160a01b031633146111a65760405162461bcd60e51b81526004016108ae90611dd9565b601e55565b5f546001600160a01b031633146111d45760405162461bcd60e51b81526004016108ae90611dd9565b5f5b825181101561122e5781600b5f8584815181106111f5576111f5611e80565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016111d6565b505050565b6001600160a01b0383165f9081526010602052604081205460609080851061128a57604080515f808252602082019092528161127f565b606081526020019060019003908161126a5790505b509250925050611318565b5f6112958587611e5a565b9050818111156112ae5750806112ab8187611e6d565b93505b8367ffffffffffffffff8111156112c7576112c7611cba565b6040519080825280602002602001820160405280156112fa57816020015b60608152602001906001900390816112e55790505b509250855f5b8282101561131357816001019150611300565b505050505b935093915050565b5f546001600160a01b031633146113495760405162461bcd60e51b81526004016108ae90611dd9565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146113945760405162461bcd60e51b81526004016108ae90611dd9565b600854610aeb906002611e94565b5f546001600160a01b031633146113cb5760405162461bcd60e51b81526004016108ae90611dd9565b6001600160a01b0381166114305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b610cef8161188a565b6001600160a01b03831661149b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ae565b6001600160a01b0382166114fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ae565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108ae565b6001600160a01b0382166116225760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108ae565b61162d8383836118d9565b6001600160a01b0383165f90815260016020526040902054818110156116a45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ae565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906116da908490611e5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172691815260200190565b60405180910390a350505050565b6001600160a01b0382166117945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108ae565b61179f825f836118d9565b6001600160a01b0382165f90815260016020526040902054818110156118125760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108ae565b6001600160a01b0383165f908152600160205260408120838303905560038054849290611840908490611e6d565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f908152600b602052604090205460ff1615801561191957506001600160a01b0383165f908152600b602052604090205460ff16155b6119535760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016108ae565b600a546001600160a01b03166119cf575f546001600160a01b038481169116148061198a57505f546001600160a01b038381169116145b61122e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016108ae565b60065460ff1680156119ee5750600a546001600160a01b038481169116145b1561122e5760085481611a15846001600160a01b03165f9081526001602052604090205490565b611a1f9190611e5a565b11158015611a57575060095481611a4a846001600160a01b03165f9081526001602052604090205490565b611a549190611e5a565b10155b61122e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016108ae565b5f60208284031215611a9c575f5ffd5b5035919050565b80356001600160a01b0381168114611ab9575f5ffd5b919050565b5f60208284031215611ace575f5ffd5b611ad782611aa3565b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611ad76020830184611ade565b5f5f60408385031215611b2f575f5ffd5b611b3883611aa3565b946020939093013593505050565b5f5f5f60608486031215611b58575f5ffd5b611b6184611aa3565b9250611b6f60208501611aa3565b929592945050506040919091013590565b5f5f60408385031215611b91575f5ffd5b50508035926020909101359150565b5f60408201848352604060208401528084518083526060850191506020860192505f5b81811015611bea5783516001600160a01b0316835260209384019390920191600101611bc3565b50909695505050505050565b5f5f5f60608486031215611c08575f5ffd5b611c1184611aa3565b95602085013595506040909401359392505050565b5f604082018483526040602084015280845180835260608501915060608160051b8601019250602086015f5b82811015611c8357605f19878603018452611c6e858351611ade565b94506020938401939190910190600101611c52565b5092979650505050505050565b5f5f60408385031215611ca1575f5ffd5b82359150611cb160208401611aa3565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b80358015158114611ab9575f5ffd5b5f5f60408385031215611cee575f5ffd5b823567ffffffffffffffff811115611d04575f5ffd5b8301601f81018513611d14575f5ffd5b803567ffffffffffffffff811115611d2e57611d2e611cba565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715611d5b57611d5b611cba565b604052918252602081840181019290810188841115611d78575f5ffd5b6020850194505b83851015611d9e57611d9085611aa3565b815260209485019401611d7f565b509450611cb19250505060208401611cce565b5f5f60408385031215611dc2575f5ffd5b611dcb83611aa3565b9150611cb160208401611aa3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611e2257607f821691505b602082108103611e4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109b8576109b8611e46565b818103818111156109b8576109b8611e46565b634e487b7160e01b5f52603260045260245ffd5b80820281158282048414176109b8576109b8611e4656fea26469706673582212209273f3840a337c5cddc5e941a39d5af73681072c24e3f37facdecbc84d06a1e464736f6c634300081b0033

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.