ETH Price: $2,982.19 (-3.92%)
Gas: 2 Gwei

Token

Web4Ded (W4D)
 

Overview

Max Total Supply

6,666 W4D

Holders

2,109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
delf0s.eth
Balance
1 W4D
0x57d88c7551d1c570733bacd995493ff40291bfcb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A display to embrace people in this current web3 situations. Web4ded is a free mint of 6666 NFT collections. Art by Djoni Cobra.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Web4Ded

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

/*
       ___       __   _______   ________          ___   ___          ________  _______   ________
      |\  \     |\  \|\  ___ \ |\   __  \        |\  \ |\  \        |\   ___ \|\  ___ \ |\   ___ \
      \ \  \    \ \  \ \   __/|\ \  \|\ /_       \ \  \\_\  \       \ \  \_|\ \ \   __/|\ \  \_|\ \
       \ \  \  __\ \  \ \  \_|/_\ \   __  \       \ \______  \       \ \  \ \\ \ \  \_|/_\ \  \ \\ \
        \ \  \|\__\_\  \ \  \_|\ \ \  \|\  \       \|_____|\  \       \ \  \_\\ \ \  \_|\ \ \  \_\\ \
         \ \____________\ \_______\ \_______\             \ \__\       \ \_______\ \_______\ \_______\
          \|____________|\|_______|\|_______|              \|__|        \|_______|\|_______|\|_______|

*/

pragma solidity ^0.8.4;

import "./ERC721Ded.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract Web4Ded is ERC721Ded, Ownable {
    using Strings for uint256;

    bool public isDedMintTime = false;
    uint256 public dedMaxMint = 6;
    uint256 public constant DED_SUPPLY = 6666;

    bool public isDedTransformTime = false;
    uint256 public dedMaxTransform = 5;

    string private dedFace;
    string private dedRealFace;

    event TransfromDed(
        address dedMan,
        uint256 dedIdTransform,
        uint256[] burnedDeds
    );

    constructor() ERC721Ded("Web4Ded", "W4D") {}

    function flipDedMintState() external onlyOwner {
        isDedMintTime = !isDedMintTime;
    }

    function setDedMaxMint(uint256 _amount) external onlyOwner {
        dedMaxMint = _amount;
    }

    function dedMint(uint256 _amount) external {
        require(isDedMintTime, "why so hurry?!");
        require(totalSupply() + _amount <= DED_SUPPLY, "why u so lame?!");
        require(
            balanceOf(msg.sender) + _amount <= dedMaxMint,
            "don't be greedy u fookin !dedman"
        );

        _safeMint(msg.sender, _amount);
    }

    function dedFromAbove(address _dedMan, uint256 _amount) external onlyOwner {
        require(totalSupply() + _amount <= DED_SUPPLY, "why u so lame?!");
        _safeMint(_dedMan, _amount);
    }

    function flipDedTransformState() external onlyOwner {
        isDedTransformTime = !isDedTransformTime;
    }

    function setDedMaxTransform(uint256 _amount) external onlyOwner {
        dedMaxTransform = _amount;
    }

    function dedTransform(uint256[] calldata ids) external {
        require(isDedTransformTime, "why so hurry?!");

        uint256 amount = ids.length;

        require(amount > 1, "can't transform less than 1 ded");
        require(amount <= dedMaxTransform, "too much ded to transform");

        uint256[] memory burnedDeds = new uint256[](amount - 1);

        for (uint256 i; i < amount; ) {
            require(ownerOf(ids[i]) == msg.sender, "u'r not the ded owner");
            if (i > 0) {
                burnedDeds[i - 1] = ids[i];
                _burn(ids[i]);
            }
            unchecked {
                ++i;
            }
        }

        emit TransfromDed(msg.sender, ids[0], burnedDeds);
    }

    function setDedFace(string calldata URI) external onlyOwner {
        dedFace = URI;
    }

    function setDedRealFace(string calldata URI) external onlyOwner {
        dedRealFace = URI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        string memory _dedRealFace = dedRealFace;
        return
            bytes(_dedRealFace).length > 0
                ? string(abi.encodePacked(_dedRealFace, tokenId.toString()))
                : dedFace;
    }
}

File 2 of 7 : ERC721Ded.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";

contract ERC721Ded is ERC721A {
    constructor(string memory name_, string memory symbol_)
        ERC721A(name_, symbol_)
    {}

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
}

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 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 4 of 7 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 5 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 6 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 7 of 7 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"dedMan","type":"address"},{"indexed":false,"internalType":"uint256","name":"dedIdTransform","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"burnedDeds","type":"uint256[]"}],"name":"TransfromDed","type":"event"},{"inputs":[],"name":"DED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dedMan","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"dedFromAbove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dedMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dedMaxTransform","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"dedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"dedTransform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipDedMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipDedTransformState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDedMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDedTransformTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setDedFace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDedMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDedMaxTransform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setDedRealFace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff02191690831515021790555060066009556000600a60006101000a81548160ff0219169083151502179055506005600b553480156200005157600080fd5b506040518060400160405280600781526020017f57656234446564000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f573444000000000000000000000000000000000000000000000000000000000081525081818160029080519060200190620000d892919062000209565b508060039080519060200190620000f192919062000209565b50620001026200013260201b60201c565b600081905550505050506200012c620001206200013b60201b60201c565b6200014360201b60201c565b6200031e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002b9565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e8620002ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137c4806200032e6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b88d4fde116100a2578063dc98548a11610071578063dc98548a1461051c578063e985e9c514610538578063f2fde38b14610568578063fd84c91114610584576101e5565b8063b88d4fde14610496578063c87b56dd146104b2578063d7fba2dc146104e2578063d93256bd146104fe576101e5565b80638da5cb5b116100de5780638da5cb5b1461043457806395d89b4114610452578063a22cb46514610470578063b74ad3a71461048c576101e5565b806370a08231146103c0578063715018a6146103f057806386a184b3146103fa5780638d0b903b14610416576101e5565b80633465d1b51161018757806345e562fe1161015657806345e562fe1461033c57806349c5874b146103585780636352211e14610374578063681e560f146103a4576101e5565b80633465d1b5146102dc5780633bc2998f146102fa57806342842e0e1461030457806344ebd18914610320576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd14610284578063184987ed146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612c1d565b6105a2565b6040516102119190613036565b60405180910390f35b610222610634565b60405161022f9190613051565b60405180910390f35b610252600480360381019061024d9190612cb4565b6106c6565b60405161025f9190612f91565b60405180910390f35b610282600480360381019061027d9190612b9c565b610742565b005b61028c6108e9565b6040516102999190613193565b60405180910390f35b6102aa610900565b6040516102b79190613036565b60405180910390f35b6102da60048036038101906102d59190612a96565b610913565b005b6102e4610923565b6040516102f19190613193565b60405180910390f35b610302610929565b005b61031e60048036038101906103199190612a96565b6109d1565b005b61033a60048036038101906103359190612c6f565b6109f1565b005b61035660048036038101906103519190612cb4565b610a83565b005b610372600480360381019061036d9190612b9c565b610b09565b005b61038e60048036038101906103899190612cb4565b610bea565b60405161039b9190612f91565b60405180910390f35b6103be60048036038101906103b99190612bd8565b610bfc565b005b6103da60048036038101906103d59190612a31565b610f8a565b6040516103e79190613193565b60405180910390f35b6103f8611043565b005b610414600480360381019061040f9190612cb4565b6110cb565b005b61041e6111d6565b60405161042b9190613036565b60405180910390f35b61043c6111e9565b6040516104499190612f91565b60405180910390f35b61045a611213565b6040516104679190613051565b60405180910390f35b61048a60048036038101906104859190612b60565b6112a5565b005b61049461141d565b005b6104b060048036038101906104ab9190612ae5565b6114c5565b005b6104cc60048036038101906104c79190612cb4565b611538565b6040516104d99190613051565b60405180910390f35b6104fc60048036038101906104f79190612c6f565b6116dd565b005b61050661176f565b6040516105139190613193565b60405180910390f35b61053660048036038101906105319190612cb4565b611775565b005b610552600480360381019061054d9190612a5a565b6117fb565b60405161055f9190613036565b60405180910390f35b610582600480360381019061057d9190612a31565b61188f565b005b61058c611987565b6040516105999190613193565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610643906133f1565b80601f016020809104026020016040519081016040528092919081815260200182805461066f906133f1565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b60006106d18261198d565b610707576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074d826119ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d4611aba565b73ffffffffffffffffffffffffffffffffffffffff161461083757610800816107fb611aba565b6117fb565b610836576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108f3611ac2565b6001546000540303905090565b600860149054906101000a900460ff1681565b61091e838383611acb565b505050565b60095481565b610931611e75565b73ffffffffffffffffffffffffffffffffffffffff1661094f6111e9565b73ffffffffffffffffffffffffffffffffffffffff16146109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906130f3565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6109ec838383604051806020016040528060008152506114c5565b505050565b6109f9611e75565b73ffffffffffffffffffffffffffffffffffffffff16610a176111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906130f3565b60405180910390fd5b8181600d9190610a7e929190612829565b505050565b610a8b611e75565b73ffffffffffffffffffffffffffffffffffffffff16610aa96111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af6906130f3565b60405180910390fd5b80600b8190555050565b610b11611e75565b73ffffffffffffffffffffffffffffffffffffffff16610b2f6111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906130f3565b60405180910390fd5b611a0a81610b916108e9565b610b9b9190613280565b1115610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613173565b60405180910390fd5b610be68282611e7d565b5050565b6000610bf5826119ec565b9050919050565b600a60009054906101000a900460ff16610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613113565b60405180910390fd5b600082829050905060018111610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613133565b60405180910390fd5b600b54811115610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906130d3565b60405180910390fd5b6000600182610cea9190613307565b67ffffffffffffffff811115610d29577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d575781602001602082028036833780820191505090505b50905060005b82811015610f08573373ffffffffffffffffffffffffffffffffffffffff16610dc4868684818110610db8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610bea565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613073565b60405180910390fd5b6000811115610efd57848482818110610e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013582600183610e719190613307565b81518110610ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050610efc858583818110610ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611e9b565b5b806001019050610d5d565b507fbf981eafeba7a76ae07c224eb5b96f73187ffe9e7c8f8eecab89da17a2e0cf5f3385856000818110610f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013583604051610f7c93929190612ff8565b60405180910390a150505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104b611e75565b73ffffffffffffffffffffffffffffffffffffffff166110696111e9565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906130f3565b60405180910390fd5b6110c96000611ea9565b565b600860149054906101000a900460ff1661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613113565b60405180910390fd5b611a0a816111266108e9565b6111309190613280565b1115611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613173565b60405180910390fd5b6009548161117e33610f8a565b6111889190613280565b11156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613153565b60405180910390fd5b6111d33382611e7d565b50565b600a60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611222906133f1565b80601f016020809104026020016040519081016040528092919081815260200182805461124e906133f1565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b5050505050905090565b6112ad611aba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131f611aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113cc611aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114119190613036565b60405180910390a35050565b611425611e75565b73ffffffffffffffffffffffffffffffffffffffff166114436111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906130f3565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6114d0848484611acb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611532576114fb84848484611f6f565b611531576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115438261198d565b611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906130b3565b60405180910390fd5b6000600d8054611591906133f1565b80601f01602080910402602001604051908101604052809291908181526020018280546115bd906133f1565b801561160a5780601f106115df5761010080835404028352916020019161160a565b820191906000526020600020905b8154815290600101906020018083116115ed57829003601f168201915b5050505050905060008151116116aa57600c8054611627906133f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611653906133f1565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b50505050506116d5565b806116b4846120cf565b6040516020016116c5929190612f6d565b6040516020818303038152906040525b915050919050565b6116e5611e75565b73ffffffffffffffffffffffffffffffffffffffff166117036111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906130f3565b60405180910390fd5b8181600c919061176a929190612829565b505050565b611a0a81565b61177d611e75565b73ffffffffffffffffffffffffffffffffffffffff1661179b6111e9565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906130f3565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611897611e75565b73ffffffffffffffffffffffffffffffffffffffff166118b56111e9565b73ffffffffffffffffffffffffffffffffffffffff161461190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906130f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613093565b60405180910390fd5b61198481611ea9565b50565b600b5481565b600081611998611ac2565b111580156119a7575060005482105b80156119e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119fb611ac2565b11611a8357600054811015611a825760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a80575b6000811415611a76576004600083600190039350838152602001908152602001600020549050611a4b565b8092505050611ab5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611ad6826119ec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b5e611aba565b73ffffffffffffffffffffffffffffffffffffffff161480611b8d5750611b8c85611b87611aba565b6117fb565b5b80611bd25750611b9b611aba565b73ffffffffffffffffffffffffffffffffffffffff16611bba846106c6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7f858585600161227c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d7c86612282565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611e06576000600184019050600060046000838152602001908152602001600020541415611e04576000548114611e03578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6e858585600161228c565b5050505050565b600033905090565b611e97828260405180602001604052806000815250612292565b5050565b611ea6816000612547565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f95611aba565b8786866040518563ffffffff1660e01b8152600401611fb79493929190612fac565b602060405180830381600087803b158015611fd157600080fd5b505af192505050801561200257506040513d601f19601f82011682018060405250810190611fff9190612c46565b60015b61207c573d8060008114612032576040519150601f19603f3d011682016040523d82523d6000602084013e612037565b606091505b50600081511415612074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612117576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612277565b600082905060005b6000821461214957808061213290613454565b915050600a8261214291906132d6565b915061211f565b60008167ffffffffffffffff81111561218b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121bd5781602001600182028036833780820191505090505b5090505b60008514612270576001826121d69190613307565b9150600a856121e5919061349d565b60306121f19190613280565b60f81b81838151811061222d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226991906132d6565b94506121c1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561233a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612347600085838661227c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123ac6001851461281f565b901b60a042901b6123bc86612282565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124c0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124706000878480600101955087611f6f565b6124a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106124015782600054146124bb57600080fd5b61252b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124c1575b816000819055505050612541600085838661228c565b50505050565b6000612552836119ec565b90506000819050821561262f5760008173ffffffffffffffffffffffffffffffffffffffff16612580611aba565b73ffffffffffffffffffffffffffffffffffffffff1614806125af57506125ae826125a9611aba565b6117fb565b5b806125f457506125bd611aba565b73ffffffffffffffffffffffffffffffffffffffff166125dc866106c6565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061262d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61263d81600086600161227c565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61271284612282565b171717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561279d57600060018501905060006004600083815260200190815260200160002054141561279b57600054811461279a578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280781600086600161228c565b60016000815480929190600101919050555050505050565b6000819050919050565b828054612835906133f1565b90600052602060002090601f016020900481019282612857576000855561289e565b82601f1061287057803560ff191683800117855561289e565b8280016001018555821561289e579182015b8281111561289d578235825591602001919060010190612882565b5b5090506128ab91906128af565b5090565b5b808211156128c85760008160009055506001016128b0565b5090565b60006128df6128da846131d3565b6131ae565b9050828152602081018484840111156128f757600080fd5b6129028482856133af565b509392505050565b60008135905061291981613732565b92915050565b60008083601f84011261293157600080fd5b8235905067ffffffffffffffff81111561294a57600080fd5b60208301915083602082028301111561296257600080fd5b9250929050565b60008135905061297881613749565b92915050565b60008135905061298d81613760565b92915050565b6000815190506129a281613760565b92915050565b600082601f8301126129b957600080fd5b81356129c98482602086016128cc565b91505092915050565b60008083601f8401126129e457600080fd5b8235905067ffffffffffffffff8111156129fd57600080fd5b602083019150836001820283011115612a1557600080fd5b9250929050565b600081359050612a2b81613777565b92915050565b600060208284031215612a4357600080fd5b6000612a518482850161290a565b91505092915050565b60008060408385031215612a6d57600080fd5b6000612a7b8582860161290a565b9250506020612a8c8582860161290a565b9150509250929050565b600080600060608486031215612aab57600080fd5b6000612ab98682870161290a565b9350506020612aca8682870161290a565b9250506040612adb86828701612a1c565b9150509250925092565b60008060008060808587031215612afb57600080fd5b6000612b098782880161290a565b9450506020612b1a8782880161290a565b9350506040612b2b87828801612a1c565b925050606085013567ffffffffffffffff811115612b4857600080fd5b612b54878288016129a8565b91505092959194509250565b60008060408385031215612b7357600080fd5b6000612b818582860161290a565b9250506020612b9285828601612969565b9150509250929050565b60008060408385031215612baf57600080fd5b6000612bbd8582860161290a565b9250506020612bce85828601612a1c565b9150509250929050565b60008060208385031215612beb57600080fd5b600083013567ffffffffffffffff811115612c0557600080fd5b612c118582860161291f565b92509250509250929050565b600060208284031215612c2f57600080fd5b6000612c3d8482850161297e565b91505092915050565b600060208284031215612c5857600080fd5b6000612c6684828501612993565b91505092915050565b60008060208385031215612c8257600080fd5b600083013567ffffffffffffffff811115612c9c57600080fd5b612ca8858286016129d2565b92509250509250929050565b600060208284031215612cc657600080fd5b6000612cd484828501612a1c565b91505092915050565b6000612ce98383612f4f565b60208301905092915050565b612cfe8161333b565b82525050565b6000612d0f82613214565b612d198185613242565b9350612d2483613204565b8060005b83811015612d55578151612d3c8882612cdd565b9750612d4783613235565b925050600181019050612d28565b5085935050505092915050565b612d6b8161334d565b82525050565b6000612d7c8261321f565b612d868185613253565b9350612d968185602086016133be565b612d9f8161358a565b840191505092915050565b6000612db58261322a565b612dbf8185613264565b9350612dcf8185602086016133be565b612dd88161358a565b840191505092915050565b6000612dee8261322a565b612df88185613275565b9350612e088185602086016133be565b80840191505092915050565b6000612e21601583613264565b9150612e2c8261359b565b602082019050919050565b6000612e44602683613264565b9150612e4f826135c4565b604082019050919050565b6000612e67601483613264565b9150612e7282613613565b602082019050919050565b6000612e8a601983613264565b9150612e958261363c565b602082019050919050565b6000612ead602083613264565b9150612eb882613665565b602082019050919050565b6000612ed0600e83613264565b9150612edb8261368e565b602082019050919050565b6000612ef3601f83613264565b9150612efe826136b7565b602082019050919050565b6000612f16602083613264565b9150612f21826136e0565b602082019050919050565b6000612f39600f83613264565b9150612f4482613709565b602082019050919050565b612f58816133a5565b82525050565b612f67816133a5565b82525050565b6000612f798285612de3565b9150612f858284612de3565b91508190509392505050565b6000602082019050612fa66000830184612cf5565b92915050565b6000608082019050612fc16000830187612cf5565b612fce6020830186612cf5565b612fdb6040830185612f5e565b8181036060830152612fed8184612d71565b905095945050505050565b600060608201905061300d6000830186612cf5565b61301a6020830185612f5e565b818103604083015261302c8184612d04565b9050949350505050565b600060208201905061304b6000830184612d62565b92915050565b6000602082019050818103600083015261306b8184612daa565b905092915050565b6000602082019050818103600083015261308c81612e14565b9050919050565b600060208201905081810360008301526130ac81612e37565b9050919050565b600060208201905081810360008301526130cc81612e5a565b9050919050565b600060208201905081810360008301526130ec81612e7d565b9050919050565b6000602082019050818103600083015261310c81612ea0565b9050919050565b6000602082019050818103600083015261312c81612ec3565b9050919050565b6000602082019050818103600083015261314c81612ee6565b9050919050565b6000602082019050818103600083015261316c81612f09565b9050919050565b6000602082019050818103600083015261318c81612f2c565b9050919050565b60006020820190506131a86000830184612f5e565b92915050565b60006131b86131c9565b90506131c48282613423565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ee576131ed61355b565b5b6131f78261358a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061328b826133a5565b9150613296836133a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132cb576132ca6134ce565b5b828201905092915050565b60006132e1826133a5565b91506132ec836133a5565b9250826132fc576132fb6134fd565b5b828204905092915050565b6000613312826133a5565b915061331d836133a5565b9250828210156133305761332f6134ce565b5b828203905092915050565b600061334682613385565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133dc5780820151818401526020810190506133c1565b838111156133eb576000848401525b50505050565b6000600282049050600182168061340957607f821691505b6020821081141561341d5761341c61352c565b5b50919050565b61342c8261358a565b810181811067ffffffffffffffff8211171561344b5761344a61355b565b5b80604052505050565b600061345f826133a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613492576134916134ce565b5b600182019050919050565b60006134a8826133a5565b91506134b3836133a5565b9250826134c3576134c26134fd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f752772206e6f742074686520646564206f776e65720000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f746f6f206d7563682064656420746f207472616e73666f726d00000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f77687920736f2068757272793f21000000000000000000000000000000000000600082015250565b7f63616e2774207472616e73666f726d206c657373207468616e20312064656400600082015250565b7f646f6e277420626520677265656479207520666f6f6b696e20216465646d616e600082015250565b7f776879207520736f206c616d653f210000000000000000000000000000000000600082015250565b61373b8161333b565b811461374657600080fd5b50565b6137528161334d565b811461375d57600080fd5b50565b61376981613359565b811461377457600080fd5b50565b613780816133a5565b811461378b57600080fd5b5056fea2646970667358221220b48d936b183830dfb9e6228d2c283a290e63b93f62405cff2e90db8235f851bd64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b88d4fde116100a2578063dc98548a11610071578063dc98548a1461051c578063e985e9c514610538578063f2fde38b14610568578063fd84c91114610584576101e5565b8063b88d4fde14610496578063c87b56dd146104b2578063d7fba2dc146104e2578063d93256bd146104fe576101e5565b80638da5cb5b116100de5780638da5cb5b1461043457806395d89b4114610452578063a22cb46514610470578063b74ad3a71461048c576101e5565b806370a08231146103c0578063715018a6146103f057806386a184b3146103fa5780638d0b903b14610416576101e5565b80633465d1b51161018757806345e562fe1161015657806345e562fe1461033c57806349c5874b146103585780636352211e14610374578063681e560f146103a4576101e5565b80633465d1b5146102dc5780633bc2998f146102fa57806342842e0e1461030457806344ebd18914610320576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd14610284578063184987ed146102a257806323b872dd146102c0576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff9190612c1d565b6105a2565b6040516102119190613036565b60405180910390f35b610222610634565b60405161022f9190613051565b60405180910390f35b610252600480360381019061024d9190612cb4565b6106c6565b60405161025f9190612f91565b60405180910390f35b610282600480360381019061027d9190612b9c565b610742565b005b61028c6108e9565b6040516102999190613193565b60405180910390f35b6102aa610900565b6040516102b79190613036565b60405180910390f35b6102da60048036038101906102d59190612a96565b610913565b005b6102e4610923565b6040516102f19190613193565b60405180910390f35b610302610929565b005b61031e60048036038101906103199190612a96565b6109d1565b005b61033a60048036038101906103359190612c6f565b6109f1565b005b61035660048036038101906103519190612cb4565b610a83565b005b610372600480360381019061036d9190612b9c565b610b09565b005b61038e60048036038101906103899190612cb4565b610bea565b60405161039b9190612f91565b60405180910390f35b6103be60048036038101906103b99190612bd8565b610bfc565b005b6103da60048036038101906103d59190612a31565b610f8a565b6040516103e79190613193565b60405180910390f35b6103f8611043565b005b610414600480360381019061040f9190612cb4565b6110cb565b005b61041e6111d6565b60405161042b9190613036565b60405180910390f35b61043c6111e9565b6040516104499190612f91565b60405180910390f35b61045a611213565b6040516104679190613051565b60405180910390f35b61048a60048036038101906104859190612b60565b6112a5565b005b61049461141d565b005b6104b060048036038101906104ab9190612ae5565b6114c5565b005b6104cc60048036038101906104c79190612cb4565b611538565b6040516104d99190613051565b60405180910390f35b6104fc60048036038101906104f79190612c6f565b6116dd565b005b61050661176f565b6040516105139190613193565b60405180910390f35b61053660048036038101906105319190612cb4565b611775565b005b610552600480360381019061054d9190612a5a565b6117fb565b60405161055f9190613036565b60405180910390f35b610582600480360381019061057d9190612a31565b61188f565b005b61058c611987565b6040516105999190613193565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105fd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610643906133f1565b80601f016020809104026020016040519081016040528092919081815260200182805461066f906133f1565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b60006106d18261198d565b610707576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074d826119ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d4611aba565b73ffffffffffffffffffffffffffffffffffffffff161461083757610800816107fb611aba565b6117fb565b610836576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108f3611ac2565b6001546000540303905090565b600860149054906101000a900460ff1681565b61091e838383611acb565b505050565b60095481565b610931611e75565b73ffffffffffffffffffffffffffffffffffffffff1661094f6111e9565b73ffffffffffffffffffffffffffffffffffffffff16146109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906130f3565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6109ec838383604051806020016040528060008152506114c5565b505050565b6109f9611e75565b73ffffffffffffffffffffffffffffffffffffffff16610a176111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906130f3565b60405180910390fd5b8181600d9190610a7e929190612829565b505050565b610a8b611e75565b73ffffffffffffffffffffffffffffffffffffffff16610aa96111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af6906130f3565b60405180910390fd5b80600b8190555050565b610b11611e75565b73ffffffffffffffffffffffffffffffffffffffff16610b2f6111e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906130f3565b60405180910390fd5b611a0a81610b916108e9565b610b9b9190613280565b1115610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613173565b60405180910390fd5b610be68282611e7d565b5050565b6000610bf5826119ec565b9050919050565b600a60009054906101000a900460ff16610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613113565b60405180910390fd5b600082829050905060018111610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613133565b60405180910390fd5b600b54811115610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906130d3565b60405180910390fd5b6000600182610cea9190613307565b67ffffffffffffffff811115610d29577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d575781602001602082028036833780820191505090505b50905060005b82811015610f08573373ffffffffffffffffffffffffffffffffffffffff16610dc4868684818110610db8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610bea565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613073565b60405180910390fd5b6000811115610efd57848482818110610e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013582600183610e719190613307565b81518110610ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050610efc858583818110610ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611e9b565b5b806001019050610d5d565b507fbf981eafeba7a76ae07c224eb5b96f73187ffe9e7c8f8eecab89da17a2e0cf5f3385856000818110610f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013583604051610f7c93929190612ff8565b60405180910390a150505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104b611e75565b73ffffffffffffffffffffffffffffffffffffffff166110696111e9565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b6906130f3565b60405180910390fd5b6110c96000611ea9565b565b600860149054906101000a900460ff1661111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613113565b60405180910390fd5b611a0a816111266108e9565b6111309190613280565b1115611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613173565b60405180910390fd5b6009548161117e33610f8a565b6111889190613280565b11156111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613153565b60405180910390fd5b6111d33382611e7d565b50565b600a60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611222906133f1565b80601f016020809104026020016040519081016040528092919081815260200182805461124e906133f1565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b5050505050905090565b6112ad611aba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131f611aba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113cc611aba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114119190613036565b60405180910390a35050565b611425611e75565b73ffffffffffffffffffffffffffffffffffffffff166114436111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906130f3565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6114d0848484611acb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611532576114fb84848484611f6f565b611531576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115438261198d565b611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906130b3565b60405180910390fd5b6000600d8054611591906133f1565b80601f01602080910402602001604051908101604052809291908181526020018280546115bd906133f1565b801561160a5780601f106115df5761010080835404028352916020019161160a565b820191906000526020600020905b8154815290600101906020018083116115ed57829003601f168201915b5050505050905060008151116116aa57600c8054611627906133f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611653906133f1565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b50505050506116d5565b806116b4846120cf565b6040516020016116c5929190612f6d565b6040516020818303038152906040525b915050919050565b6116e5611e75565b73ffffffffffffffffffffffffffffffffffffffff166117036111e9565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611750906130f3565b60405180910390fd5b8181600c919061176a929190612829565b505050565b611a0a81565b61177d611e75565b73ffffffffffffffffffffffffffffffffffffffff1661179b6111e9565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906130f3565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611897611e75565b73ffffffffffffffffffffffffffffffffffffffff166118b56111e9565b73ffffffffffffffffffffffffffffffffffffffff161461190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906130f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613093565b60405180910390fd5b61198481611ea9565b50565b600b5481565b600081611998611ac2565b111580156119a7575060005482105b80156119e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119fb611ac2565b11611a8357600054811015611a825760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a80575b6000811415611a76576004600083600190039350838152602001908152602001600020549050611a4b565b8092505050611ab5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611ad6826119ec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b5e611aba565b73ffffffffffffffffffffffffffffffffffffffff161480611b8d5750611b8c85611b87611aba565b6117fb565b5b80611bd25750611b9b611aba565b73ffffffffffffffffffffffffffffffffffffffff16611bba846106c6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7f858585600161227c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d7c86612282565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611e06576000600184019050600060046000838152602001908152602001600020541415611e04576000548114611e03578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e6e858585600161228c565b5050505050565b600033905090565b611e97828260405180602001604052806000815250612292565b5050565b611ea6816000612547565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f95611aba565b8786866040518563ffffffff1660e01b8152600401611fb79493929190612fac565b602060405180830381600087803b158015611fd157600080fd5b505af192505050801561200257506040513d601f19601f82011682018060405250810190611fff9190612c46565b60015b61207c573d8060008114612032576040519150601f19603f3d011682016040523d82523d6000602084013e612037565b606091505b50600081511415612074576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612117576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612277565b600082905060005b6000821461214957808061213290613454565b915050600a8261214291906132d6565b915061211f565b60008167ffffffffffffffff81111561218b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121bd5781602001600182028036833780820191505090505b5090505b60008514612270576001826121d69190613307565b9150600a856121e5919061349d565b60306121f19190613280565b60f81b81838151811061222d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226991906132d6565b94506121c1565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561233a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612347600085838661227c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123ac6001851461281f565b901b60a042901b6123bc86612282565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124c0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124706000878480600101955087611f6f565b6124a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106124015782600054146124bb57600080fd5b61252b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124c1575b816000819055505050612541600085838661228c565b50505050565b6000612552836119ec565b90506000819050821561262f5760008173ffffffffffffffffffffffffffffffffffffffff16612580611aba565b73ffffffffffffffffffffffffffffffffffffffff1614806125af57506125ae826125a9611aba565b6117fb565b5b806125f457506125bd611aba565b73ffffffffffffffffffffffffffffffffffffffff166125dc866106c6565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061262d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61263d81600086600161227c565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61271284612282565b171717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561279d57600060018501905060006004600083815260200190815260200160002054141561279b57600054811461279a578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280781600086600161228c565b60016000815480929190600101919050555050505050565b6000819050919050565b828054612835906133f1565b90600052602060002090601f016020900481019282612857576000855561289e565b82601f1061287057803560ff191683800117855561289e565b8280016001018555821561289e579182015b8281111561289d578235825591602001919060010190612882565b5b5090506128ab91906128af565b5090565b5b808211156128c85760008160009055506001016128b0565b5090565b60006128df6128da846131d3565b6131ae565b9050828152602081018484840111156128f757600080fd5b6129028482856133af565b509392505050565b60008135905061291981613732565b92915050565b60008083601f84011261293157600080fd5b8235905067ffffffffffffffff81111561294a57600080fd5b60208301915083602082028301111561296257600080fd5b9250929050565b60008135905061297881613749565b92915050565b60008135905061298d81613760565b92915050565b6000815190506129a281613760565b92915050565b600082601f8301126129b957600080fd5b81356129c98482602086016128cc565b91505092915050565b60008083601f8401126129e457600080fd5b8235905067ffffffffffffffff8111156129fd57600080fd5b602083019150836001820283011115612a1557600080fd5b9250929050565b600081359050612a2b81613777565b92915050565b600060208284031215612a4357600080fd5b6000612a518482850161290a565b91505092915050565b60008060408385031215612a6d57600080fd5b6000612a7b8582860161290a565b9250506020612a8c8582860161290a565b9150509250929050565b600080600060608486031215612aab57600080fd5b6000612ab98682870161290a565b9350506020612aca8682870161290a565b9250506040612adb86828701612a1c565b9150509250925092565b60008060008060808587031215612afb57600080fd5b6000612b098782880161290a565b9450506020612b1a8782880161290a565b9350506040612b2b87828801612a1c565b925050606085013567ffffffffffffffff811115612b4857600080fd5b612b54878288016129a8565b91505092959194509250565b60008060408385031215612b7357600080fd5b6000612b818582860161290a565b9250506020612b9285828601612969565b9150509250929050565b60008060408385031215612baf57600080fd5b6000612bbd8582860161290a565b9250506020612bce85828601612a1c565b9150509250929050565b60008060208385031215612beb57600080fd5b600083013567ffffffffffffffff811115612c0557600080fd5b612c118582860161291f565b92509250509250929050565b600060208284031215612c2f57600080fd5b6000612c3d8482850161297e565b91505092915050565b600060208284031215612c5857600080fd5b6000612c6684828501612993565b91505092915050565b60008060208385031215612c8257600080fd5b600083013567ffffffffffffffff811115612c9c57600080fd5b612ca8858286016129d2565b92509250509250929050565b600060208284031215612cc657600080fd5b6000612cd484828501612a1c565b91505092915050565b6000612ce98383612f4f565b60208301905092915050565b612cfe8161333b565b82525050565b6000612d0f82613214565b612d198185613242565b9350612d2483613204565b8060005b83811015612d55578151612d3c8882612cdd565b9750612d4783613235565b925050600181019050612d28565b5085935050505092915050565b612d6b8161334d565b82525050565b6000612d7c8261321f565b612d868185613253565b9350612d968185602086016133be565b612d9f8161358a565b840191505092915050565b6000612db58261322a565b612dbf8185613264565b9350612dcf8185602086016133be565b612dd88161358a565b840191505092915050565b6000612dee8261322a565b612df88185613275565b9350612e088185602086016133be565b80840191505092915050565b6000612e21601583613264565b9150612e2c8261359b565b602082019050919050565b6000612e44602683613264565b9150612e4f826135c4565b604082019050919050565b6000612e67601483613264565b9150612e7282613613565b602082019050919050565b6000612e8a601983613264565b9150612e958261363c565b602082019050919050565b6000612ead602083613264565b9150612eb882613665565b602082019050919050565b6000612ed0600e83613264565b9150612edb8261368e565b602082019050919050565b6000612ef3601f83613264565b9150612efe826136b7565b602082019050919050565b6000612f16602083613264565b9150612f21826136e0565b602082019050919050565b6000612f39600f83613264565b9150612f4482613709565b602082019050919050565b612f58816133a5565b82525050565b612f67816133a5565b82525050565b6000612f798285612de3565b9150612f858284612de3565b91508190509392505050565b6000602082019050612fa66000830184612cf5565b92915050565b6000608082019050612fc16000830187612cf5565b612fce6020830186612cf5565b612fdb6040830185612f5e565b8181036060830152612fed8184612d71565b905095945050505050565b600060608201905061300d6000830186612cf5565b61301a6020830185612f5e565b818103604083015261302c8184612d04565b9050949350505050565b600060208201905061304b6000830184612d62565b92915050565b6000602082019050818103600083015261306b8184612daa565b905092915050565b6000602082019050818103600083015261308c81612e14565b9050919050565b600060208201905081810360008301526130ac81612e37565b9050919050565b600060208201905081810360008301526130cc81612e5a565b9050919050565b600060208201905081810360008301526130ec81612e7d565b9050919050565b6000602082019050818103600083015261310c81612ea0565b9050919050565b6000602082019050818103600083015261312c81612ec3565b9050919050565b6000602082019050818103600083015261314c81612ee6565b9050919050565b6000602082019050818103600083015261316c81612f09565b9050919050565b6000602082019050818103600083015261318c81612f2c565b9050919050565b60006020820190506131a86000830184612f5e565b92915050565b60006131b86131c9565b90506131c48282613423565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ee576131ed61355b565b5b6131f78261358a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061328b826133a5565b9150613296836133a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132cb576132ca6134ce565b5b828201905092915050565b60006132e1826133a5565b91506132ec836133a5565b9250826132fc576132fb6134fd565b5b828204905092915050565b6000613312826133a5565b915061331d836133a5565b9250828210156133305761332f6134ce565b5b828203905092915050565b600061334682613385565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133dc5780820151818401526020810190506133c1565b838111156133eb576000848401525b50505050565b6000600282049050600182168061340957607f821691505b6020821081141561341d5761341c61352c565b5b50919050565b61342c8261358a565b810181811067ffffffffffffffff8211171561344b5761344a61355b565b5b80604052505050565b600061345f826133a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613492576134916134ce565b5b600182019050919050565b60006134a8826133a5565b91506134b3836133a5565b9250826134c3576134c26134fd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f752772206e6f742074686520646564206f776e65720000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f746f6f206d7563682064656420746f207472616e73666f726d00000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f77687920736f2068757272793f21000000000000000000000000000000000000600082015250565b7f63616e2774207472616e73666f726d206c657373207468616e20312064656400600082015250565b7f646f6e277420626520677265656479207520666f6f6b696e20216465646d616e600082015250565b7f776879207520736f206c616d653f210000000000000000000000000000000000600082015250565b61373b8161333b565b811461374657600080fd5b50565b6137528161334d565b811461375d57600080fd5b50565b61376981613359565b811461377457600080fd5b50565b613780816133a5565b811461378b57600080fd5b5056fea2646970667358221220b48d936b183830dfb9e6228d2c283a290e63b93f62405cff2e90db8235f851bd64736f6c63430008040033

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.