ETH Price: $2,967.24 (+2.29%)
Gas: 1 Gwei

Token

Punks Malaysia (PNKMY)
 

Overview

Max Total Supply

0 PNKMY

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
1king.eth
Balance
1 PNKMY
0xd60c419e408f0a80b5d7139c5741b1ca00d57456
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The 1st and the original legendary collection of Punks Malaysia Edition by @xAix2k | punks.my | @punksmalaysia

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Punk

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Punk.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/interfaces/IERC165.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Punk is ERC721, ERC721URIStorage, Ownable, IERC2981 {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    address _royaltyReceiver;
    uint16 _royaltyPercentage;
    string _contractURI;
    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        string memory _contractURIString
    ) ERC721(_name, _symbol) {
        _royaltyReceiver = msg.sender;
        proxyRegistryAddress = _proxyRegistryAddress;
        _contractURI = _contractURIString;
    }

    function _baseURI() internal pure override returns (string memory) {
        return "data:application/json;base64,";
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(_tokenId), "Royalty Info query for nonexistent token");
        uint256 _royaltyAmount = (_royaltyPercentage * _salePrice) / 10000;
        return (_royaltyReceiver, _royaltyAmount);
    }

    function setRoyaltyReceiver(address _receiver) public onlyOwner {
        _royaltyReceiver = _receiver;
    }

    function setRoyaltyPercentage(uint16 _percentage) public onlyOwner {
        _royaltyPercentage = _percentage;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function safeMint(address to, string memory _tokenURI) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, _tokenURI);
        _tokenIdCounter.increment();
    }

    // The following functions are overrides required by Solidity.
    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

File 2 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 3 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 4 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 7 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 8 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

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 10 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 13 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 14 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_contractURIString","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"safeMint","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":"uint16","name":"_percentage","type":"uint16"}],"name":"setRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setRoyaltyReceiver","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":[{"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"}]

60806040523480156200001157600080fd5b5060405162003d6e38038062003d6e833981810160405281019062000037919062000345565b838381600090805190602001906200005192919062000200565b5080600190805190602001906200006a92919062000200565b5050506200008d620000816200013260201b60201c565b6200013a60201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a90805190602001906200012792919062000200565b5050505050620005e6565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020e90620004dd565b90600052602060002090601f0160209004810192826200023257600085556200027e565b82601f106200024d57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027d57825182559160200191906001019062000260565b5b5090506200028d919062000291565b5090565b5b80821115620002ac57600081600090555060010162000292565b5090565b6000620002c7620002c1846200043d565b62000414565b905082815260208101848484011115620002e657620002e5620005ac565b5b620002f3848285620004a7565b509392505050565b6000815190506200030c81620005cc565b92915050565b600082601f8301126200032a5762000329620005a7565b5b81516200033c848260208601620002b0565b91505092915050565b60008060008060808587031215620003625762000361620005b6565b5b600085015167ffffffffffffffff811115620003835762000382620005b1565b5b620003918782880162000312565b945050602085015167ffffffffffffffff811115620003b557620003b4620005b1565b5b620003c38782880162000312565b9350506040620003d687828801620002fb565b925050606085015167ffffffffffffffff811115620003fa57620003f9620005b1565b5b620004088782880162000312565b91505092959194509250565b60006200042062000433565b90506200042e828262000513565b919050565b6000604051905090565b600067ffffffffffffffff8211156200045b576200045a62000578565b5b6200046682620005bb565b9050602081019050919050565b6000620004808262000487565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004c7578082015181840152602081019050620004aa565b83811115620004d7576000848401525b50505050565b60006002820490506001821680620004f657607f821691505b602082108114156200050d576200050c62000549565b5b50919050565b6200051e82620005bb565b810181811067ffffffffffffffff8211171562000540576200053f62000578565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005d78162000473565b8114620005e357600080fd5b50565b61377880620005f66000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610339578063c87b56dd14610355578063d204c45e14610385578063e8a3d485146103a1578063e985e9c5146103bf578063f2fde38b146103ef57610137565b8063715018a6146102bb5780638da5cb5b146102c55780638dc251e3146102e357806395d89b41146102ff578063a22cb4651461031d57610137565b806323b872dd116100ff57806323b872dd146101f25780632a55205a1461020e57806342842e0e1461023f5780636352211e1461025b57806370a082311461028b57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631bc8637e146101d6575b600080fd5b610156600480360381019061015191906124db565b61040b565b6040516101639190612a19565b60405180910390f35b610174610485565b6040516101819190612a34565b60405180910390f35b6101a4600480360381019061019f919061258f565b610517565b6040516101b19190612989565b60405180910390f35b6101d460048036038101906101cf919061249b565b61059c565b005b6101f060048036038101906101eb9190612562565b6106b4565b005b61020c60048036038101906102079190612329565b610750565b005b610228600480360381019061022391906125bc565b6107b0565b6040516102369291906129f0565b60405180910390f35b61025960048036038101906102549190612329565b61085c565b005b6102756004803603810190610270919061258f565b61087c565b6040516102829190612989565b60405180910390f35b6102a560048036038101906102a091906122bc565b61092e565b6040516102b29190612cb6565b60405180910390f35b6102c36109e6565b005b6102cd610a6e565b6040516102da9190612989565b60405180910390f35b6102fd60048036038101906102f891906122bc565b610a98565b005b610307610b58565b6040516103149190612a34565b60405180910390f35b610337600480360381019061033291906123ff565b610bea565b005b610353600480360381019061034e919061237c565b610d6b565b005b61036f600480360381019061036a919061258f565b610dcd565b60405161037c9190612a34565b60405180910390f35b61039f600480360381019061039a919061243f565b610ddf565b005b6103a9610e8c565b6040516103b69190612a34565b60405180910390f35b6103d960048036038101906103d491906122e9565b610f1e565b6040516103e69190612a19565b60405180910390f35b610409600480360381019061040491906122bc565b611020565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047e575061047d82611118565b5b9050919050565b60606000805461049490612f86565b80601f01602080910402602001604051908101604052809291908181526020018280546104c090612f86565b801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b6000610522826111fa565b610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055890612bf6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a78261087c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90612c76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610637611266565b73ffffffffffffffffffffffffffffffffffffffff161480610666575061066581610660611266565b610f1e565b5b6106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90612b16565b60405180910390fd5b6106af838361126e565b505050565b6106bc611266565b73ffffffffffffffffffffffffffffffffffffffff166106da610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790612c16565b60405180910390fd5b80600960146101000a81548161ffff021916908361ffff16021790555050565b61076161075b611266565b82611327565b6107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079790612c96565b60405180910390fd5b6107ab838383611405565b505050565b6000806107bc846111fa565b6107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b96565b60405180910390fd5b600061271084600960149054906101000a900461ffff1661ffff166108209190612e22565b61082a9190612df1565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b61087783838360405180602001604052806000815250610d6b565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612b56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612b36565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ee611266565b73ffffffffffffffffffffffffffffffffffffffff16610a0c610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612c16565b60405180910390fd5b610a6c6000611661565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610aa0611266565b73ffffffffffffffffffffffffffffffffffffffff16610abe610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90612c16565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610b6790612f86565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9390612f86565b8015610be05780601f10610bb557610100808354040283529160200191610be0565b820191906000526020600020905b815481529060010190602001808311610bc357829003601f168201915b5050505050905090565b610bf2611266565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790612ad6565b60405180910390fd5b8060056000610c6d611266565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d1a611266565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d5f9190612a19565b60405180910390a35050565b610d7c610d76611266565b83611327565b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612c96565b60405180910390fd5b610dc784848484611727565b50505050565b6060610dd882611783565b9050919050565b610de7611266565b73ffffffffffffffffffffffffffffffffffffffff16610e05610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612c16565b60405180910390fd5b6000610e6760086118d5565b9050610e7383826118e3565b610e7d8183611901565b610e876008611975565b505050565b6060600a8054610e9b90612f86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790612f86565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b5050505050905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401610f969190612989565b60206040518083038186803b158015610fae57600080fd5b505afa158015610fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe69190612535565b73ffffffffffffffffffffffffffffffffffffffff16141561100c57600191505061101a565b611016848461198b565b9150505b92915050565b611028611266565b73ffffffffffffffffffffffffffffffffffffffff16611046610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612a76565b60405180910390fd5b61111581611661565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111f357506111f282611a1f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112e18361087c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611332826111fa565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890612af6565b60405180910390fd5b600061137c8361087c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113eb57508373ffffffffffffffffffffffffffffffffffffffff166113d384610517565b73ffffffffffffffffffffffffffffffffffffffff16145b806113fc57506113fb8185610f1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114258261087c565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612ab6565b60405180910390fd5b6114f6838383611a89565b61150160008261126e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115519190612e7c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a89190612d9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611732848484611405565b61173e84848484611a8e565b61177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612a56565b60405180910390fd5b50505050565b606061178e826111fa565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490612bd6565b60405180910390fd5b60006006600084815260200190815260200160002080546117ed90612f86565b80601f016020809104026020016040519081016040528092919081815260200182805461181990612f86565b80156118665780601f1061183b57610100808354040283529160200191611866565b820191906000526020600020905b81548152906001019060200180831161184957829003601f168201915b505050505090506000611877611c25565b905060008151141561188d5781925050506118d0565b6000825111156118c25780826040516020016118aa929190612965565b604051602081830303815290604052925050506118d0565b6118cb84611c62565b925050505b919050565b600081600001549050919050565b6118fd828260405180602001604052806000815250611d09565b5050565b61190a826111fa565b611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612b76565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906119709291906120a6565b505050565b6001816000016000828254019250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000611aaf8473ffffffffffffffffffffffffffffffffffffffff16611d64565b15611c18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ad8611266565b8786866040518563ffffffff1660e01b8152600401611afa94939291906129a4565b602060405180830381600087803b158015611b1457600080fd5b505af1925050508015611b4557506040513d601f19601f82011682018060405250810190611b429190612508565b60015b611bc8573d8060008114611b75576040519150601f19603f3d011682016040523d82523d6000602084013e611b7a565b606091505b50600081511415611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790612a56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c1d565b600190505b949350505050565b60606040518060400160405280601d81526020017f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815250905090565b6060611c6d826111fa565b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390612c56565b60405180910390fd5b6000611cb6611c25565b90506000815111611cd65760405180602001604052806000815250611d01565b80611ce084611d77565b604051602001611cf1929190612965565b6040516020818303038152906040525b915050919050565b611d138383611ed8565b611d206000848484611a8e565b611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690612a56565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415611dbf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ed3565b600082905060005b60008214611df1578080611dda90612fe9565b915050600a82611dea9190612df1565b9150611dc7565b60008167ffffffffffffffff811115611e0d57611e0c61311f565b5b6040519080825280601f01601f191660200182016040528015611e3f5781602001600182028036833780820191505090505b5090505b60008514611ecc57600182611e589190612e7c565b9150600a85611e679190613032565b6030611e739190612d9b565b60f81b818381518110611e8957611e886130f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec59190612df1565b9450611e43565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90612bb6565b60405180910390fd5b611f51816111fa565b15611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890612a96565b60405180910390fd5b611f9d60008383611a89565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fed9190612d9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546120b290612f86565b90600052602060002090601f0160209004810192826120d4576000855561211b565b82601f106120ed57805160ff191683800117855561211b565b8280016001018555821561211b579182015b8281111561211a5782518255916020019190600101906120ff565b5b509050612128919061212c565b5090565b5b8082111561214557600081600090555060010161212d565b5090565b600061215c61215784612cf6565b612cd1565b90508281526020810184848401111561217857612177613153565b5b612183848285612f44565b509392505050565b600061219e61219984612d27565b612cd1565b9050828152602081018484840111156121ba576121b9613153565b5b6121c5848285612f44565b509392505050565b6000813590506121dc816136b8565b92915050565b6000813590506121f1816136cf565b92915050565b600081359050612206816136e6565b92915050565b60008151905061221b816136e6565b92915050565b600082601f8301126122365761223561314e565b5b8135612246848260208601612149565b91505092915050565b60008151905061225e816136fd565b92915050565b600082601f8301126122795761227861314e565b5b813561228984826020860161218b565b91505092915050565b6000813590506122a181613714565b92915050565b6000813590506122b68161372b565b92915050565b6000602082840312156122d2576122d161315d565b5b60006122e0848285016121cd565b91505092915050565b60008060408385031215612300576122ff61315d565b5b600061230e858286016121cd565b925050602061231f858286016121cd565b9150509250929050565b6000806000606084860312156123425761234161315d565b5b6000612350868287016121cd565b9350506020612361868287016121cd565b9250506040612372868287016122a7565b9150509250925092565b600080600080608085870312156123965761239561315d565b5b60006123a4878288016121cd565b94505060206123b5878288016121cd565b93505060406123c6878288016122a7565b925050606085013567ffffffffffffffff8111156123e7576123e6613158565b5b6123f387828801612221565b91505092959194509250565b600080604083850312156124165761241561315d565b5b6000612424858286016121cd565b9250506020612435858286016121e2565b9150509250929050565b600080604083850312156124565761245561315d565b5b6000612464858286016121cd565b925050602083013567ffffffffffffffff81111561248557612484613158565b5b61249185828601612264565b9150509250929050565b600080604083850312156124b2576124b161315d565b5b60006124c0858286016121cd565b92505060206124d1858286016122a7565b9150509250929050565b6000602082840312156124f1576124f061315d565b5b60006124ff848285016121f7565b91505092915050565b60006020828403121561251e5761251d61315d565b5b600061252c8482850161220c565b91505092915050565b60006020828403121561254b5761254a61315d565b5b60006125598482850161224f565b91505092915050565b6000602082840312156125785761257761315d565b5b600061258684828501612292565b91505092915050565b6000602082840312156125a5576125a461315d565b5b60006125b3848285016122a7565b91505092915050565b600080604083850312156125d3576125d261315d565b5b60006125e1858286016122a7565b92505060206125f2858286016122a7565b9150509250929050565b61260581612eb0565b82525050565b61261481612ec2565b82525050565b600061262582612d58565b61262f8185612d6e565b935061263f818560208601612f53565b61264881613162565b840191505092915050565b600061265e82612d63565b6126688185612d7f565b9350612678818560208601612f53565b61268181613162565b840191505092915050565b600061269782612d63565b6126a18185612d90565b93506126b1818560208601612f53565b80840191505092915050565b60006126ca603283612d7f565b91506126d582613173565b604082019050919050565b60006126ed602683612d7f565b91506126f8826131c2565b604082019050919050565b6000612710601c83612d7f565b915061271b82613211565b602082019050919050565b6000612733602483612d7f565b915061273e8261323a565b604082019050919050565b6000612756601983612d7f565b915061276182613289565b602082019050919050565b6000612779602c83612d7f565b9150612784826132b2565b604082019050919050565b600061279c603883612d7f565b91506127a782613301565b604082019050919050565b60006127bf602a83612d7f565b91506127ca82613350565b604082019050919050565b60006127e2602983612d7f565b91506127ed8261339f565b604082019050919050565b6000612805602e83612d7f565b9150612810826133ee565b604082019050919050565b6000612828602883612d7f565b91506128338261343d565b604082019050919050565b600061284b602083612d7f565b91506128568261348c565b602082019050919050565b600061286e603183612d7f565b9150612879826134b5565b604082019050919050565b6000612891602c83612d7f565b915061289c82613504565b604082019050919050565b60006128b4602083612d7f565b91506128bf82613553565b602082019050919050565b60006128d7602983612d7f565b91506128e28261357c565b604082019050919050565b60006128fa602f83612d7f565b9150612905826135cb565b604082019050919050565b600061291d602183612d7f565b91506129288261361a565b604082019050919050565b6000612940603183612d7f565b915061294b82613669565b604082019050919050565b61295f81612f3a565b82525050565b6000612971828561268c565b915061297d828461268c565b91508190509392505050565b600060208201905061299e60008301846125fc565b92915050565b60006080820190506129b960008301876125fc565b6129c660208301866125fc565b6129d36040830185612956565b81810360608301526129e5818461261a565b905095945050505050565b6000604082019050612a0560008301856125fc565b612a126020830184612956565b9392505050565b6000602082019050612a2e600083018461260b565b92915050565b60006020820190508181036000830152612a4e8184612653565b905092915050565b60006020820190508181036000830152612a6f816126bd565b9050919050565b60006020820190508181036000830152612a8f816126e0565b9050919050565b60006020820190508181036000830152612aaf81612703565b9050919050565b60006020820190508181036000830152612acf81612726565b9050919050565b60006020820190508181036000830152612aef81612749565b9050919050565b60006020820190508181036000830152612b0f8161276c565b9050919050565b60006020820190508181036000830152612b2f8161278f565b9050919050565b60006020820190508181036000830152612b4f816127b2565b9050919050565b60006020820190508181036000830152612b6f816127d5565b9050919050565b60006020820190508181036000830152612b8f816127f8565b9050919050565b60006020820190508181036000830152612baf8161281b565b9050919050565b60006020820190508181036000830152612bcf8161283e565b9050919050565b60006020820190508181036000830152612bef81612861565b9050919050565b60006020820190508181036000830152612c0f81612884565b9050919050565b60006020820190508181036000830152612c2f816128a7565b9050919050565b60006020820190508181036000830152612c4f816128ca565b9050919050565b60006020820190508181036000830152612c6f816128ed565b9050919050565b60006020820190508181036000830152612c8f81612910565b9050919050565b60006020820190508181036000830152612caf81612933565b9050919050565b6000602082019050612ccb6000830184612956565b92915050565b6000612cdb612cec565b9050612ce78282612fb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1157612d1061311f565b5b612d1a82613162565b9050602081019050919050565b600067ffffffffffffffff821115612d4257612d4161311f565b5b612d4b82613162565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da682612f3a565b9150612db183612f3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de657612de5613063565b5b828201905092915050565b6000612dfc82612f3a565b9150612e0783612f3a565b925082612e1757612e16613092565b5b828204905092915050565b6000612e2d82612f3a565b9150612e3883612f3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7157612e70613063565b5b828202905092915050565b6000612e8782612f3a565b9150612e9283612f3a565b925082821015612ea557612ea4613063565b5b828203905092915050565b6000612ebb82612f1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612f0582612eb0565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f71578082015181840152602081019050612f56565b83811115612f80576000848401525b50505050565b60006002820490506001821680612f9e57607f821691505b60208210811415612fb257612fb16130c1565b5b50919050565b612fc182613162565b810181811067ffffffffffffffff82111715612fe057612fdf61311f565b5b80604052505050565b6000612ff482612f3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561302757613026613063565b5b600182019050919050565b600061303d82612f3a565b915061304883612f3a565b92508261305857613057613092565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f526f79616c747920496e666f20717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6136c181612eb0565b81146136cc57600080fd5b50565b6136d881612ec2565b81146136e357600080fd5b50565b6136ef81612ece565b81146136fa57600080fd5b50565b61370681612efa565b811461371157600080fd5b50565b61371d81612f0c565b811461372857600080fd5b50565b61373481612f3a565b811461373f57600080fd5b5056fea26469706673582212209443ae8d7eaefc0a5355c760461dda32a17a7b70af46abd5ea4c85d6789680ac64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000e50756e6b73204d616c61797369610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504e4b4d5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f1646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c65794a755957316c496a6f67496c4231626d747a494531686247463563326c68496977695a47567a59334a7063485270623234694f6941695647686c4944467a64434268626d51676447686c4947397961576470626d46734947786c5a3256755a4746796553426a623278735a574e30615739754947396d49464231626d747a494531686247463563326c684945566b6158527062323467596e6b6751486842615867796179423849484231626d747a4c6d31354948776751484231626d747a6257467359586c7a6157456749697769615731685a3255694f694a7063475a7a4f693876555731515646564b576d343252484532566c704751576c7954464e4459555246597a6830536b4e6d61484269526c643163544a784f48566a5644567665434973496d563464475679626d467358327870626d73694f6941696148523063484d364c793977645735726379357465534973496e4e6c6247786c636c396d5a575666596d467a61584e6663473970626e527a496a6f67496a55774d434973496d5a6c5a5639795a574e7063476c6c626e51694f6941694d4867794e544d32597a4135525456474e5459354d5451354f4467774e5467344e475a684d7a63344d5446435a544e694d6b4a455a474930496e303d000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063b88d4fde1161007c578063b88d4fde14610339578063c87b56dd14610355578063d204c45e14610385578063e8a3d485146103a1578063e985e9c5146103bf578063f2fde38b146103ef57610137565b8063715018a6146102bb5780638da5cb5b146102c55780638dc251e3146102e357806395d89b41146102ff578063a22cb4651461031d57610137565b806323b872dd116100ff57806323b872dd146101f25780632a55205a1461020e57806342842e0e1461023f5780636352211e1461025b57806370a082311461028b57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba5780631bc8637e146101d6575b600080fd5b610156600480360381019061015191906124db565b61040b565b6040516101639190612a19565b60405180910390f35b610174610485565b6040516101819190612a34565b60405180910390f35b6101a4600480360381019061019f919061258f565b610517565b6040516101b19190612989565b60405180910390f35b6101d460048036038101906101cf919061249b565b61059c565b005b6101f060048036038101906101eb9190612562565b6106b4565b005b61020c60048036038101906102079190612329565b610750565b005b610228600480360381019061022391906125bc565b6107b0565b6040516102369291906129f0565b60405180910390f35b61025960048036038101906102549190612329565b61085c565b005b6102756004803603810190610270919061258f565b61087c565b6040516102829190612989565b60405180910390f35b6102a560048036038101906102a091906122bc565b61092e565b6040516102b29190612cb6565b60405180910390f35b6102c36109e6565b005b6102cd610a6e565b6040516102da9190612989565b60405180910390f35b6102fd60048036038101906102f891906122bc565b610a98565b005b610307610b58565b6040516103149190612a34565b60405180910390f35b610337600480360381019061033291906123ff565b610bea565b005b610353600480360381019061034e919061237c565b610d6b565b005b61036f600480360381019061036a919061258f565b610dcd565b60405161037c9190612a34565b60405180910390f35b61039f600480360381019061039a919061243f565b610ddf565b005b6103a9610e8c565b6040516103b69190612a34565b60405180910390f35b6103d960048036038101906103d491906122e9565b610f1e565b6040516103e69190612a19565b60405180910390f35b610409600480360381019061040491906122bc565b611020565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061047e575061047d82611118565b5b9050919050565b60606000805461049490612f86565b80601f01602080910402602001604051908101604052809291908181526020018280546104c090612f86565b801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b6000610522826111fa565b610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055890612bf6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a78261087c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90612c76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610637611266565b73ffffffffffffffffffffffffffffffffffffffff161480610666575061066581610660611266565b610f1e565b5b6106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90612b16565b60405180910390fd5b6106af838361126e565b505050565b6106bc611266565b73ffffffffffffffffffffffffffffffffffffffff166106da610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790612c16565b60405180910390fd5b80600960146101000a81548161ffff021916908361ffff16021790555050565b61076161075b611266565b82611327565b6107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079790612c96565b60405180910390fd5b6107ab838383611405565b505050565b6000806107bc846111fa565b6107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290612b96565b60405180910390fd5b600061271084600960149054906101000a900461ffff1661ffff166108209190612e22565b61082a9190612df1565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b61087783838360405180602001604052806000815250610d6b565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612b56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690612b36565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ee611266565b73ffffffffffffffffffffffffffffffffffffffff16610a0c610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612c16565b60405180910390fd5b610a6c6000611661565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610aa0611266565b73ffffffffffffffffffffffffffffffffffffffff16610abe610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90612c16565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610b6790612f86565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9390612f86565b8015610be05780601f10610bb557610100808354040283529160200191610be0565b820191906000526020600020905b815481529060010190602001808311610bc357829003601f168201915b5050505050905090565b610bf2611266565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790612ad6565b60405180910390fd5b8060056000610c6d611266565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d1a611266565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d5f9190612a19565b60405180910390a35050565b610d7c610d76611266565b83611327565b610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612c96565b60405180910390fd5b610dc784848484611727565b50505050565b6060610dd882611783565b9050919050565b610de7611266565b73ffffffffffffffffffffffffffffffffffffffff16610e05610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612c16565b60405180910390fd5b6000610e6760086118d5565b9050610e7383826118e3565b610e7d8183611901565b610e876008611975565b505050565b6060600a8054610e9b90612f86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790612f86565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b5050505050905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401610f969190612989565b60206040518083038186803b158015610fae57600080fd5b505afa158015610fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe69190612535565b73ffffffffffffffffffffffffffffffffffffffff16141561100c57600191505061101a565b611016848461198b565b9150505b92915050565b611028611266565b73ffffffffffffffffffffffffffffffffffffffff16611046610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390612c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612a76565b60405180910390fd5b61111581611661565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111f357506111f282611a1f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112e18361087c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611332826111fa565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890612af6565b60405180910390fd5b600061137c8361087c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113eb57508373ffffffffffffffffffffffffffffffffffffffff166113d384610517565b73ffffffffffffffffffffffffffffffffffffffff16145b806113fc57506113fb8185610f1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114258261087c565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290612ab6565b60405180910390fd5b6114f6838383611a89565b61150160008261126e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115519190612e7c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a89190612d9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611732848484611405565b61173e84848484611a8e565b61177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612a56565b60405180910390fd5b50505050565b606061178e826111fa565b6117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490612bd6565b60405180910390fd5b60006006600084815260200190815260200160002080546117ed90612f86565b80601f016020809104026020016040519081016040528092919081815260200182805461181990612f86565b80156118665780601f1061183b57610100808354040283529160200191611866565b820191906000526020600020905b81548152906001019060200180831161184957829003601f168201915b505050505090506000611877611c25565b905060008151141561188d5781925050506118d0565b6000825111156118c25780826040516020016118aa929190612965565b604051602081830303815290604052925050506118d0565b6118cb84611c62565b925050505b919050565b600081600001549050919050565b6118fd828260405180602001604052806000815250611d09565b5050565b61190a826111fa565b611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090612b76565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906119709291906120a6565b505050565b6001816000016000828254019250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000611aaf8473ffffffffffffffffffffffffffffffffffffffff16611d64565b15611c18578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ad8611266565b8786866040518563ffffffff1660e01b8152600401611afa94939291906129a4565b602060405180830381600087803b158015611b1457600080fd5b505af1925050508015611b4557506040513d601f19601f82011682018060405250810190611b429190612508565b60015b611bc8573d8060008114611b75576040519150601f19603f3d011682016040523d82523d6000602084013e611b7a565b606091505b50600081511415611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790612a56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c1d565b600190505b949350505050565b60606040518060400160405280601d81526020017f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815250905090565b6060611c6d826111fa565b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390612c56565b60405180910390fd5b6000611cb6611c25565b90506000815111611cd65760405180602001604052806000815250611d01565b80611ce084611d77565b604051602001611cf1929190612965565b6040516020818303038152906040525b915050919050565b611d138383611ed8565b611d206000848484611a8e565b611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690612a56565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415611dbf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ed3565b600082905060005b60008214611df1578080611dda90612fe9565b915050600a82611dea9190612df1565b9150611dc7565b60008167ffffffffffffffff811115611e0d57611e0c61311f565b5b6040519080825280601f01601f191660200182016040528015611e3f5781602001600182028036833780820191505090505b5090505b60008514611ecc57600182611e589190612e7c565b9150600a85611e679190613032565b6030611e739190612d9b565b60f81b818381518110611e8957611e886130f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec59190612df1565b9450611e43565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90612bb6565b60405180910390fd5b611f51816111fa565b15611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890612a96565b60405180910390fd5b611f9d60008383611a89565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fed9190612d9b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546120b290612f86565b90600052602060002090601f0160209004810192826120d4576000855561211b565b82601f106120ed57805160ff191683800117855561211b565b8280016001018555821561211b579182015b8281111561211a5782518255916020019190600101906120ff565b5b509050612128919061212c565b5090565b5b8082111561214557600081600090555060010161212d565b5090565b600061215c61215784612cf6565b612cd1565b90508281526020810184848401111561217857612177613153565b5b612183848285612f44565b509392505050565b600061219e61219984612d27565b612cd1565b9050828152602081018484840111156121ba576121b9613153565b5b6121c5848285612f44565b509392505050565b6000813590506121dc816136b8565b92915050565b6000813590506121f1816136cf565b92915050565b600081359050612206816136e6565b92915050565b60008151905061221b816136e6565b92915050565b600082601f8301126122365761223561314e565b5b8135612246848260208601612149565b91505092915050565b60008151905061225e816136fd565b92915050565b600082601f8301126122795761227861314e565b5b813561228984826020860161218b565b91505092915050565b6000813590506122a181613714565b92915050565b6000813590506122b68161372b565b92915050565b6000602082840312156122d2576122d161315d565b5b60006122e0848285016121cd565b91505092915050565b60008060408385031215612300576122ff61315d565b5b600061230e858286016121cd565b925050602061231f858286016121cd565b9150509250929050565b6000806000606084860312156123425761234161315d565b5b6000612350868287016121cd565b9350506020612361868287016121cd565b9250506040612372868287016122a7565b9150509250925092565b600080600080608085870312156123965761239561315d565b5b60006123a4878288016121cd565b94505060206123b5878288016121cd565b93505060406123c6878288016122a7565b925050606085013567ffffffffffffffff8111156123e7576123e6613158565b5b6123f387828801612221565b91505092959194509250565b600080604083850312156124165761241561315d565b5b6000612424858286016121cd565b9250506020612435858286016121e2565b9150509250929050565b600080604083850312156124565761245561315d565b5b6000612464858286016121cd565b925050602083013567ffffffffffffffff81111561248557612484613158565b5b61249185828601612264565b9150509250929050565b600080604083850312156124b2576124b161315d565b5b60006124c0858286016121cd565b92505060206124d1858286016122a7565b9150509250929050565b6000602082840312156124f1576124f061315d565b5b60006124ff848285016121f7565b91505092915050565b60006020828403121561251e5761251d61315d565b5b600061252c8482850161220c565b91505092915050565b60006020828403121561254b5761254a61315d565b5b60006125598482850161224f565b91505092915050565b6000602082840312156125785761257761315d565b5b600061258684828501612292565b91505092915050565b6000602082840312156125a5576125a461315d565b5b60006125b3848285016122a7565b91505092915050565b600080604083850312156125d3576125d261315d565b5b60006125e1858286016122a7565b92505060206125f2858286016122a7565b9150509250929050565b61260581612eb0565b82525050565b61261481612ec2565b82525050565b600061262582612d58565b61262f8185612d6e565b935061263f818560208601612f53565b61264881613162565b840191505092915050565b600061265e82612d63565b6126688185612d7f565b9350612678818560208601612f53565b61268181613162565b840191505092915050565b600061269782612d63565b6126a18185612d90565b93506126b1818560208601612f53565b80840191505092915050565b60006126ca603283612d7f565b91506126d582613173565b604082019050919050565b60006126ed602683612d7f565b91506126f8826131c2565b604082019050919050565b6000612710601c83612d7f565b915061271b82613211565b602082019050919050565b6000612733602483612d7f565b915061273e8261323a565b604082019050919050565b6000612756601983612d7f565b915061276182613289565b602082019050919050565b6000612779602c83612d7f565b9150612784826132b2565b604082019050919050565b600061279c603883612d7f565b91506127a782613301565b604082019050919050565b60006127bf602a83612d7f565b91506127ca82613350565b604082019050919050565b60006127e2602983612d7f565b91506127ed8261339f565b604082019050919050565b6000612805602e83612d7f565b9150612810826133ee565b604082019050919050565b6000612828602883612d7f565b91506128338261343d565b604082019050919050565b600061284b602083612d7f565b91506128568261348c565b602082019050919050565b600061286e603183612d7f565b9150612879826134b5565b604082019050919050565b6000612891602c83612d7f565b915061289c82613504565b604082019050919050565b60006128b4602083612d7f565b91506128bf82613553565b602082019050919050565b60006128d7602983612d7f565b91506128e28261357c565b604082019050919050565b60006128fa602f83612d7f565b9150612905826135cb565b604082019050919050565b600061291d602183612d7f565b91506129288261361a565b604082019050919050565b6000612940603183612d7f565b915061294b82613669565b604082019050919050565b61295f81612f3a565b82525050565b6000612971828561268c565b915061297d828461268c565b91508190509392505050565b600060208201905061299e60008301846125fc565b92915050565b60006080820190506129b960008301876125fc565b6129c660208301866125fc565b6129d36040830185612956565b81810360608301526129e5818461261a565b905095945050505050565b6000604082019050612a0560008301856125fc565b612a126020830184612956565b9392505050565b6000602082019050612a2e600083018461260b565b92915050565b60006020820190508181036000830152612a4e8184612653565b905092915050565b60006020820190508181036000830152612a6f816126bd565b9050919050565b60006020820190508181036000830152612a8f816126e0565b9050919050565b60006020820190508181036000830152612aaf81612703565b9050919050565b60006020820190508181036000830152612acf81612726565b9050919050565b60006020820190508181036000830152612aef81612749565b9050919050565b60006020820190508181036000830152612b0f8161276c565b9050919050565b60006020820190508181036000830152612b2f8161278f565b9050919050565b60006020820190508181036000830152612b4f816127b2565b9050919050565b60006020820190508181036000830152612b6f816127d5565b9050919050565b60006020820190508181036000830152612b8f816127f8565b9050919050565b60006020820190508181036000830152612baf8161281b565b9050919050565b60006020820190508181036000830152612bcf8161283e565b9050919050565b60006020820190508181036000830152612bef81612861565b9050919050565b60006020820190508181036000830152612c0f81612884565b9050919050565b60006020820190508181036000830152612c2f816128a7565b9050919050565b60006020820190508181036000830152612c4f816128ca565b9050919050565b60006020820190508181036000830152612c6f816128ed565b9050919050565b60006020820190508181036000830152612c8f81612910565b9050919050565b60006020820190508181036000830152612caf81612933565b9050919050565b6000602082019050612ccb6000830184612956565b92915050565b6000612cdb612cec565b9050612ce78282612fb8565b919050565b6000604051905090565b600067ffffffffffffffff821115612d1157612d1061311f565b5b612d1a82613162565b9050602081019050919050565b600067ffffffffffffffff821115612d4257612d4161311f565b5b612d4b82613162565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612da682612f3a565b9150612db183612f3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612de657612de5613063565b5b828201905092915050565b6000612dfc82612f3a565b9150612e0783612f3a565b925082612e1757612e16613092565b5b828204905092915050565b6000612e2d82612f3a565b9150612e3883612f3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7157612e70613063565b5b828202905092915050565b6000612e8782612f3a565b9150612e9283612f3a565b925082821015612ea557612ea4613063565b5b828203905092915050565b6000612ebb82612f1a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000612f0582612eb0565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f71578082015181840152602081019050612f56565b83811115612f80576000848401525b50505050565b60006002820490506001821680612f9e57607f821691505b60208210811415612fb257612fb16130c1565b5b50919050565b612fc182613162565b810181811067ffffffffffffffff82111715612fe057612fdf61311f565b5b80604052505050565b6000612ff482612f3a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561302757613026613063565b5b600182019050919050565b600061303d82612f3a565b915061304883612f3a565b92508261305857613057613092565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f526f79616c747920496e666f20717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6136c181612eb0565b81146136cc57600080fd5b50565b6136d881612ec2565b81146136e357600080fd5b50565b6136ef81612ece565b81146136fa57600080fd5b50565b61370681612efa565b811461371157600080fd5b50565b61371d81612f0c565b811461372857600080fd5b50565b61373481612f3a565b811461373f57600080fd5b5056fea26469706673582212209443ae8d7eaefc0a5355c760461dda32a17a7b70af46abd5ea4c85d6789680ac64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000e50756e6b73204d616c61797369610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504e4b4d5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f1646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c65794a755957316c496a6f67496c4231626d747a494531686247463563326c68496977695a47567a59334a7063485270623234694f6941695647686c4944467a64434268626d51676447686c4947397961576470626d46734947786c5a3256755a4746796553426a623278735a574e30615739754947396d49464231626d747a494531686247463563326c684945566b6158527062323467596e6b6751486842615867796179423849484231626d747a4c6d31354948776751484231626d747a6257467359586c7a6157456749697769615731685a3255694f694a7063475a7a4f693876555731515646564b576d343252484532566c704751576c7954464e4459555246597a6830536b4e6d61484269526c643163544a784f48566a5644567665434973496d563464475679626d467358327870626d73694f6941696148523063484d364c793977645735726379357465534973496e4e6c6247786c636c396d5a575666596d467a61584e6663473970626e527a496a6f67496a55774d434973496d5a6c5a5639795a574e7063476c6c626e51694f6941694d4867794e544d32597a4135525456474e5459354d5451354f4467774e5467344e475a684d7a63344d5446435a544e694d6b4a455a474930496e303d000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Punks Malaysia
Arg [1] : _symbol (string): PNKMY
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : _contractURIString (string): data:application/json;base64,eyJuYW1lIjogIlB1bmtzIE1hbGF5c2lhIiwiZGVzY3JpcHRpb24iOiAiVGhlIDFzdCBhbmQgdGhlIG9yaWdpbmFsIGxlZ2VuZGFyeSBjb2xsZWN0aW9uIG9mIFB1bmtzIE1hbGF5c2lhIEVkaXRpb24gYnkgQHhBaXgyayB8IHB1bmtzLm15IHwgQHB1bmtzbWFsYXlzaWEgIiwiaW1hZ2UiOiJpcGZzOi8vUW1QVFVKWm42RHE2VlpGQWlyTFNDYURFYzh0SkNmaHBiRld1cTJxOHVjVDVveCIsImV4dGVybmFsX2xpbmsiOiAiaHR0cHM6Ly9wdW5rcy5teSIsInNlbGxlcl9mZWVfYmFzaXNfcG9pbnRzIjogIjUwMCIsImZlZV9yZWNpcGllbnQiOiAiMHgyNTM2YzA5RTVGNTY5MTQ5ODgwNTg4NGZhMzc4MTFCZTNiMkJEZGI0In0=

-----Encoded View---------------
25 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 50756e6b73204d616c6179736961000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 504e4b4d59000000000000000000000000000000000000000000000000000000
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001f1
Arg [9] : 646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c65794a
Arg [10] : 755957316c496a6f67496c4231626d747a494531686247463563326c68496977
Arg [11] : 695a47567a59334a7063485270623234694f6941695647686c4944467a644342
Arg [12] : 68626d51676447686c4947397961576470626d46734947786c5a3256755a4746
Arg [13] : 796553426a623278735a574e30615739754947396d49464231626d747a494531
Arg [14] : 686247463563326c684945566b6158527062323467596e6b6751486842615867
Arg [15] : 796179423849484231626d747a4c6d31354948776751484231626d747a625746
Arg [16] : 7359586c7a6157456749697769615731685a3255694f694a7063475a7a4f6938
Arg [17] : 76555731515646564b576d343252484532566c704751576c7954464e44595552
Arg [18] : 46597a6830536b4e6d61484269526c643163544a784f48566a56445676654349
Arg [19] : 73496d563464475679626d467358327870626d73694f6941696148523063484d
Arg [20] : 364c793977645735726379357465534973496e4e6c6247786c636c396d5a5756
Arg [21] : 66596d467a61584e6663473970626e527a496a6f67496a55774d434973496d5a
Arg [22] : 6c5a5639795a574e7063476c6c626e51694f6941694d4867794e544d32597a41
Arg [23] : 35525456474e5459354d5451354f4467774e5467344e475a684d7a63344d5446
Arg [24] : 435a544e694d6b4a455a474930496e303d000000000000000000000000000000


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.