ETH Price: $3,497.33 (+1.99%)
Gas: 2 Gwei

Token

PokerWorldGG (PWGG)
 

Overview

Max Total Supply

1,040 PWGG

Holders

229

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PWGG
0xb73fdcaf8a52dfb157b424ee25e271a48156f01c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PokerWorldGG NFT is your pass into daily poker events. They collab with 30+ projects a week giving away whitelists and NFTs. Given away 1000+ NFTs, 10,000+ whitelists, all for free over last 6 months.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PokerWorldGG

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PokerWorldGG.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract PokerWorldGG is ERC721A, Ownable, ReentrancyGuard {
    // GENERAL VARIABLES
    struct SaleConfig {
        uint64 price;
        uint32 saleKey;
    }

    struct PresaleConfig {
        uint64 presaleSupply;
        bytes32 merkleRoot;
    }

    // PRESALE VARIABLES
    SaleConfig public saleConfig;
    PresaleConfig public presaleConfig;

    mapping(address => uint256) VIPClaimed;
    mapping(address => bool) freeClaimed;
    // FREE MINT
    bytes32 public merkleRootFree;

    // PUBLIC SALE
    uint256 public immutable maxBatchSize;
    uint256 public immutable collectionSize;

    constructor(uint256 maxBatchSize_, uint256 collectionSize_)
        ERC721A("PokerWorldGG", "PWGG")
    {
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function freeMint(bytes32[] calldata _merkleProof)
        external
        payable
        callerIsUser
    {
        require(saleConfig.saleKey > 0, "Mint is not Active");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRootFree, leaf),
            "Address not on free mint list."
        );

        require(freeClaimed[msg.sender] == false, "Already claimed free mint");

        require(totalSupply() + 1 <= collectionSize, "reached max supply");
        _safeMint(msg.sender, 1);
        freeClaimed[msg.sender] = true;
    }

    function presaleMint(bytes32[] calldata _merkleProof, uint256 quantity)
        external
        payable
        callerIsUser
    {
        SaleConfig memory config = saleConfig;
        PresaleConfig memory psConfig = presaleConfig;

        uint256 presaleSupply = uint256(psConfig.presaleSupply);
        uint256 saleKey = uint256(config.saleKey);
        uint256 price = uint256(config.price);
        require(isPresaleOn(saleKey, presaleSupply), "Presale is not active.");
        require(msg.value >= price * quantity, "Need to send more ETH.");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, psConfig.merkleRoot, leaf),
            "Address not on Whitelist."
        );

        if (saleKey == 1) {
            require(
                numberMinted(msg.sender) + quantity <= 2,
                "This surpases your presale mint limit."
            );
        } else {
            if (VIPClaimed[msg.sender] > 0) {
                require(
                    numberMinted(msg.sender) + quantity <=
                        5 + VIPClaimed[msg.sender],
                    "This surpases your presale mint limit."
                );
            } else {
                require(
                    numberMinted(msg.sender) + quantity <= 5,
                    "This surpases your presale mint limit."
                );
            }
        }

        require(
            totalSupply() + quantity <= presaleSupply,
            "reached max supply for presale"
        );

        if (saleKey == 1) {
            VIPClaimed[msg.sender] = numberMinted(msg.sender) + quantity;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        uint256 price = uint256(config.price);
        uint256 saleKey = uint256(config.saleKey);
        require(saleKey == 3, "Public Sale is not Active");
        require(msg.value >= price * quantity, "Need to send more ETH.");
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(quantity <= maxBatchSize, "can not mint this many");
        _safeMint(msg.sender, quantity);
    }

    function isPresaleOn(uint256 presaleKey, uint256 presaleSupply)
        public
        view
        returns (bool)
    {
        return presaleKey > 0 && presaleKey <= 2 && presaleSupply != 0;
    }

    function startOGListMint() external onlyOwner {
        saleConfig.price = 0.07 ether;
        presaleConfig.presaleSupply = 200;
        saleConfig.saleKey = 1;
    }

    function startAllowListMint() external onlyOwner {
        saleConfig.price = 0.09 ether;
        presaleConfig.presaleSupply = uint64(collectionSize);
        saleConfig.saleKey = 2;
    }

    function startPublicMint() external onlyOwner {
        saleConfig.price = 0.11 ether;
        saleConfig.saleKey = 3;
    }

    function endMint() external onlyOwner {
        saleConfig.saleKey = 0;
    }

    function setMerkleRoot(bytes32 _merkleroot) external onlyOwner {
        presaleConfig.merkleRoot = _merkleroot;
    }

    function setMerkleRootFree(bytes32 _merkleroot) external onlyOwner {
        merkleRootFree = _merkleroot;
    }

    function setPrice(uint64 _newPrice) external onlyOwner {
        saleConfig.price = _newPrice;
    }

    // // METADATA FUNCTIONS

    string private _baseTokenURI;

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    // OWNER/PRIVATE FUNCTIONS

    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= collectionSize,
            "too many already minted"
        );
        require(
            quantity % maxBatchSize == 0 || quantity <= maxBatchSize,
            "can only mint a multiple of the maxBatchSize or less than the maxBatchSize"
        );

        if (quantity <= maxBatchSize) {
            _safeMint(msg.sender, quantity);
        } else {
            uint256 numChunks = quantity / maxBatchSize;
            for (uint256 i = 0; i < numChunks; i++) {
                _safeMint(msg.sender, maxBatchSize);
            }
        }
    }

    function devGift(address to, uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= collectionSize,
            "too many already minted"
        );
        _safeMint(to, quantity);
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 11 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"presaleKey","type":"uint256"},{"internalType":"uint256","name":"presaleSupply","type":"uint256"}],"name":"isPresaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleConfig","outputs":[{"internalType":"uint64","name":"presaleSupply","type":"uint64"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint32","name":"saleKey","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"}],"name":"setMerkleRootFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_newPrice","type":"uint64"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startOGListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMint","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162006277380380620062778339818101604052810190620000379190620002ac565b6040518060400160405280600c81526020017f506f6b6572576f726c64474700000000000000000000000000000000000000008152506040518060400160405280600481526020017f50574747000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000bb929190620001e5565b508060029080519060200190620000d4929190620001e5565b505050620000f7620000eb6200011760201b60201c565b6200011f60201b60201c565b600160088190555081608081815250508060a08181525050505062000376565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f390620002f7565b90600052602060002090601f01602090048101928262000217576000855562000263565b82601f106200023257805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026257825182559160200191906001019062000245565b5b50905062000272919062000276565b5090565b5b808211156200029157600081600090555060010162000277565b5090565b600081519050620002a6816200035c565b92915050565b60008060408385031215620002c057600080fd5b6000620002d08582860162000295565b9250506020620002e38582860162000295565b9150509250929050565b6000819050919050565b600060028204905060018216806200031057607f821691505b602082108114156200032757620003266200032d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200036781620002ed565b81146200037357600080fd5b50565b60805160a051615e8e620003e960003960008181610cef015281816111d1015281816113b301528181611a40015281816120ba015261227a015260008181610f3f015281816112480152818161127b015281816112df0152818161131701528181611354015261212f0152615e8e6000f3fe6080604052600436106102465760003560e01c80637cb6475911610139578063b3ab66b0116100b6578063e33f6b071161007a578063e33f6b0714610837578063e608f2611461084e578063e985e9c51461088b578063f2fde38b146108c8578063fd88fa69146108f1578063fde5f5481461091d57610246565b8063b3ab66b01461074f578063b88d4fde1461076b578063b98b6a2314610794578063c87b56dd146107bd578063dc33e681146107fa57610246565b806390aa0b0f116100fd57806390aa0b0f1461067b5780639231ab2a146106a757806395d89b41146106e4578063a22cb4651461070f578063ac4460021461073857610246565b80637cb64759146105b757806380a0bcc6146105e057806388d15d501461060957806389ba959c146106255780638da5cb5b1461065057610246565b80632f745c59116101c757806355f804b31161018b57806355f804b3146104e65780636352211e1461050f57806370a082311461054c578063715018a61461058957806376c64c62146105a057610246565b80632f745c59146103ef578063375a069a1461042c57806342842e0e1461045557806345c0f5331461047e5780634f6ccce7146104a957610246565b8063095ea7b31161020e578063095ea7b31461031e57806318160ddd14610347578063229c20481461037257806323b872dd1461039b5780632913daa0146103c457610246565b8063017043a51461024b57806301ffc9a71461026257806306fdde031461029f578063081812fc146102ca57806308e1c61314610307575b600080fd5b34801561025757600080fd5b50610260610939565b005b34801561026e57600080fd5b50610289600480360381019061028491906142c1565b6109dc565b6040516102969190614b11565b60405180910390f35b3480156102ab57600080fd5b506102b4610b26565b6040516102c19190614b47565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190614358565b610bb8565b6040516102fe9190614aaa565b60405180910390f35b34801561031357600080fd5b5061031c610c3d565b005b34801561032a57600080fd5b50610345600480360381019061034091906141bf565b610d60565b005b34801561035357600080fd5b5061035c610e79565b6040516103699190615004565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906143bd565b610e82565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906140b9565b610f2d565b005b3480156103d057600080fd5b506103d9610f3d565b6040516103e69190615004565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906141bf565b610f61565b6040516104239190615004565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190614358565b611153565b005b34801561046157600080fd5b5061047c600480360381019061047791906140b9565b611391565b005b34801561048a57600080fd5b506104936113b1565b6040516104a09190615004565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614358565b6113d5565b6040516104dd9190615004565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190614313565b611428565b005b34801561051b57600080fd5b5061053660048036038101906105319190614358565b6114ba565b6040516105439190614aaa565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190614054565b6114d0565b6040516105809190615004565b60405180910390f35b34801561059557600080fd5b5061059e6115b9565b005b3480156105ac57600080fd5b506105b5611641565b005b3480156105c357600080fd5b506105de60048036038101906105d99190614298565b611718565b005b3480156105ec57600080fd5b5061060760048036038101906106029190614298565b6117a1565b005b610623600480360381019061061e91906141fb565b611827565b005b34801561063157600080fd5b5061063a611b1c565b6040516106479190614b2c565b60405180910390f35b34801561065c57600080fd5b50610665611b22565b6040516106729190614aaa565b60405180910390f35b34801561068757600080fd5b50610690611b4c565b60405161069e929190615048565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190614358565b611b82565b6040516106db9190614fe9565b60405180910390f35b3480156106f057600080fd5b506106f9611b9a565b6040516107069190614b47565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614183565b611c2c565b005b34801561074457600080fd5b5061074d611dad565b005b61076960048036038101906107649190614358565b611f2e565b005b34801561077757600080fd5b50610792600480360381019061078d9190614108565b6121a0565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906141bf565b6121fc565b005b3480156107c957600080fd5b506107e460048036038101906107df9190614358565b6122fb565b6040516107f19190614b47565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190614054565b6123a3565b60405161082e9190615004565b60405180910390f35b34801561084357600080fd5b5061084c6123b5565b005b34801561085a57600080fd5b5061087560048036038101906108709190614381565b6124b8565b6040516108829190614b11565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad919061407d565b6124df565b6040516108bf9190614b11565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190614054565b612573565b005b3480156108fd57600080fd5b5061090661266b565b60405161091492919061501f565b60405180910390f35b61093760048036038101906109329190614240565b612691565b005b610941612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661095f611b22565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90614de9565b60405180910390fd5b6000600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1f5750610b1e82612bba565b5b9050919050565b606060018054610b359061530e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b619061530e565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc382612c24565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614fc9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c45612bb2565b73ffffffffffffffffffffffffffffffffffffffff16610c63611b22565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614de9565b60405180910390fd5b67013fbe85edc90000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f0000000000000000000000000000000000000000000000000000000000000000600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506002600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b6000610d6b826114ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614e69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfb612bb2565b73ffffffffffffffffffffffffffffffffffffffff161480610e2a5750610e2981610e24612bb2565b6124df565b5b610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090614d29565b60405180910390fd5b610e74838383612c31565b505050565b60008054905090565b610e8a612bb2565b73ffffffffffffffffffffffffffffffffffffffff16610ea8611b22565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614de9565b60405180910390fd5b80600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b610f38838383612ce3565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610f6c836114d0565b8210610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490614b69565b60405180910390fd5b6000610fb7610e79565b905060008060005b83811015611111576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110b157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110fa57819550505050505061114d565b83806001019450505b508080600101915050610fbf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614f69565b60405180910390fd5b92915050565b61115b612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611179611b22565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614de9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816111f9610e79565b6112039190615115565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90614c09565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261127291906153de565b148061129e57507f00000000000000000000000000000000000000000000000000000000000000008111155b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490614c89565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081116113135761130e3382613223565b61138e565b60007f000000000000000000000000000000000000000000000000000000000000000082611341919061516b565b905060005b8181101561138b57611378337f0000000000000000000000000000000000000000000000000000000000000000613223565b808061138390615371565b915050611346565b50505b50565b6113ac838383604051806020016040528060008152506121a0565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006113df610e79565b8210611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790614c29565b60405180910390fd5b819050919050565b611430612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661144e611b22565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90614de9565b60405180910390fd5b8181600f91906114b5929190613de8565b505050565b60006114c582613241565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614d49565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115c1612bb2565b73ffffffffffffffffffffffffffffffffffffffff166115df611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614de9565b60405180910390fd5b61163f60006133db565b565b611649612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611667611b22565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614de9565b60405180910390fd5b670186cc6acd4b0000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506003600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b611720612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661173e611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90614de9565b60405180910390fd5b80600a6001018190555050565b6117a9612bb2565b73ffffffffffffffffffffffffffffffffffffffff166117c7611b22565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614de9565b60405180910390fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614ce9565b60405180910390fd5b6000600960000160089054906101000a900463ffffffff1663ffffffff16116118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90614c69565b60405180910390fd5b6000336040516020016119069190614a56565b60405160208183030381529060405280519060200120905061196c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134a1565b6119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290614be9565b60405180910390fd5b60001515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614cc9565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001611a69610e79565b611a739190615115565b1115611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90614d69565b60405180910390fd5b611abf336001613223565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b600e5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff16905082565b611b8a613e6e565b611b9382613241565b9050919050565b606060028054611ba99061530e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd59061530e565b8015611c225780601f10611bf757610100808354040283529160200191611c22565b820191906000526020600020905b815481529060010190602001808311611c0557829003601f168201915b5050505050905090565b611c34612bb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990614e29565b60405180910390fd5b8060066000611caf612bb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5c612bb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da19190614b11565b60405180910390a35050565b611db5612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611dd3611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090614de9565b60405180910390fd5b60026008541415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614f89565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611e9d90614a95565b60006040518083038185875af1925050503d8060008114611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b5050905080611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614e89565b60405180910390fd5b506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614ce9565b60405180910390fd5b600060096040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff168152505090506000816000015167ffffffffffffffff1690506000826020015163ffffffff1690506003811461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614dc9565b60405180910390fd5b8382612076919061519c565b3410156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90614ec9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000846120e2610e79565b6120ec9190615115565b111561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614d69565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000841115612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614f09565b60405180910390fd5b61219a3385613223565b50505050565b6121ab848484612ce3565b6121b7848484846134b8565b6121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed90614ea9565b60405180910390fd5b50505050565b612204612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612222611b22565b73ffffffffffffffffffffffffffffffffffffffff1614612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614de9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816122a2610e79565b6122ac9190615115565b11156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614c09565b60405180910390fd5b6122f78282613223565b5050565b606061230682612c24565b612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90614e09565b60405180910390fd5b600061234f61364f565b9050600081511415612370576040518060200160405280600081525061239b565b8061237a846136e1565b60405160200161238b929190614a71565b6040516020818303038152906040525b915050919050565b60006123ae8261388e565b9050919050565b6123bd612bb2565b73ffffffffffffffffffffffffffffffffffffffff166123db611b22565b73ffffffffffffffffffffffffffffffffffffffff1614612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890614de9565b60405180910390fd5b66f8b0a10e470000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060c8600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b600080831180156124ca575060028311155b80156124d7575060008214155b905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61257b612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612599611b22565b73ffffffffffffffffffffffffffffffffffffffff16146125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265690614ba9565b60405180910390fd5b612668816133db565b50565b600a8060000160009054906101000a900467ffffffffffffffff16908060010154905082565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f690614ce9565b60405180910390fd5b600060096040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff168152505090506000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160018201548152505090506000816000015167ffffffffffffffff1690506000836020015163ffffffff1690506000846000015167ffffffffffffffff1690506127f482846124b8565b612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282a90614f29565b60405180910390fd5b858161283f919061519c565b341015612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890614ec9565b60405180910390fd5b6000336040516020016128949190614a56565b6040516020818303038152906040528051906020012090506128fc898980806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508660200151836134a1565b61293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290614d09565b60405180910390fd5b60018314156129a057600287612950336123a3565b61295a9190615115565b111561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614d89565b60405180910390fd5b612ae7565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612a8e57600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546005612a349190615115565b87612a3e336123a3565b612a489190615115565b1115612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090614d89565b60405180910390fd5b612ae6565b600587612a9a336123a3565b612aa49190615115565b1115612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90614d89565b60405180910390fd5b5b5b8387612af1610e79565b612afb9190615115565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3390614b89565b60405180910390fd5b6001831415612b9d5786612b4f336123a3565b612b599190615115565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612ba73388613223565b505050505050505050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cee82613241565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612d15612bb2565b73ffffffffffffffffffffffffffffffffffffffff161480612d715750612d3a612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612d5984610bb8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d8d5750612d8c8260000151612d87612bb2565b6124df565b5b905080612dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc690614e49565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3890614da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890614c49565b60405180910390fd5b612ebe8585856001613977565b612ece6000848460000151612c31565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131b35761311281612c24565b156131b25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321c858585600161397d565b5050505050565b61323d828260405180602001604052806000815250613983565b5050565b613249613e6e565b61325282612c24565b613291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328890614bc9565b60405180910390fd5b60008290505b6000811061339a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461338b5780925050506133d6565b50808060019003915050613297565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd90614fa9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826134ae8584613995565b1490509392505050565b60006134d98473ffffffffffffffffffffffffffffffffffffffff16613a30565b15613642578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613502612bb2565b8786866040518563ffffffff1660e01b81526004016135249493929190614ac5565b602060405180830381600087803b15801561353e57600080fd5b505af192505050801561356f57506040513d601f19601f8201168201806040525081019061356c91906142ea565b60015b6135f2573d806000811461359f576040519150601f19603f3d011682016040523d82523d6000602084013e6135a4565b606091505b506000815114156135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614ea9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613647565b600190505b949350505050565b6060600f805461365e9061530e565b80601f016020809104026020016040519081016040528092919081815260200182805461368a9061530e565b80156136d75780601f106136ac576101008083540402835291602001916136d7565b820191906000526020600020905b8154815290600101906020018083116136ba57829003601f168201915b5050505050905090565b60606000821415613729576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613889565b600082905060005b6000821461375b57808061374490615371565b915050600a82613754919061516b565b9150613731565b60008167ffffffffffffffff81111561379d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137cf5781602001600182028036833780820191505090505b5090505b60008514613882576001826137e891906151f6565b9150600a856137f791906153de565b60306138039190615115565b60f81b81838151811061383f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561387b919061516b565b94506137d3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f690614ca9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6139908383836001613a53565b505050565b60008082905060005b8451811015613a255760008582815181106139e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613a04576139fd8382613dd1565b9250613a11565b613a0e8184613dd1565b92505b508080613a1d90615371565b91505061399e565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac090614ee9565b60405180910390fd5b6000841415613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0490614f49565b60405180910390fd5b613b1a6000868387613977565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613db457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613d9f57613d5f60008884886134b8565b613d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d9590614ea9565b60405180910390fd5b5b81806001019250508080600101915050613ce8565b508060008190555050613dca600086838761397d565b5050505050565b600082600052816020526040600020905092915050565b828054613df49061530e565b90600052602060002090601f016020900481019282613e165760008555613e5d565b82601f10613e2f57803560ff1916838001178555613e5d565b82800160010185558215613e5d579182015b82811115613e5c578235825591602001919060010190613e41565b5b509050613e6a9190613ea8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ec1576000816000905550600101613ea9565b5090565b6000613ed8613ed384615096565b615071565b905082815260208101848484011115613ef057600080fd5b613efb8482856152cc565b509392505050565b600081359050613f1281615dce565b92915050565b60008083601f840112613f2a57600080fd5b8235905067ffffffffffffffff811115613f4357600080fd5b602083019150836020820283011115613f5b57600080fd5b9250929050565b600081359050613f7181615de5565b92915050565b600081359050613f8681615dfc565b92915050565b600081359050613f9b81615e13565b92915050565b600081519050613fb081615e13565b92915050565b600082601f830112613fc757600080fd5b8135613fd7848260208601613ec5565b91505092915050565b60008083601f840112613ff257600080fd5b8235905067ffffffffffffffff81111561400b57600080fd5b60208301915083600182028301111561402357600080fd5b9250929050565b60008135905061403981615e2a565b92915050565b60008135905061404e81615e41565b92915050565b60006020828403121561406657600080fd5b600061407484828501613f03565b91505092915050565b6000806040838503121561409057600080fd5b600061409e85828601613f03565b92505060206140af85828601613f03565b9150509250929050565b6000806000606084860312156140ce57600080fd5b60006140dc86828701613f03565b93505060206140ed86828701613f03565b92505060406140fe8682870161402a565b9150509250925092565b6000806000806080858703121561411e57600080fd5b600061412c87828801613f03565b945050602061413d87828801613f03565b935050604061414e8782880161402a565b925050606085013567ffffffffffffffff81111561416b57600080fd5b61417787828801613fb6565b91505092959194509250565b6000806040838503121561419657600080fd5b60006141a485828601613f03565b92505060206141b585828601613f62565b9150509250929050565b600080604083850312156141d257600080fd5b60006141e085828601613f03565b92505060206141f18582860161402a565b9150509250929050565b6000806020838503121561420e57600080fd5b600083013567ffffffffffffffff81111561422857600080fd5b61423485828601613f18565b92509250509250929050565b60008060006040848603121561425557600080fd5b600084013567ffffffffffffffff81111561426f57600080fd5b61427b86828701613f18565b9350935050602061428e8682870161402a565b9150509250925092565b6000602082840312156142aa57600080fd5b60006142b884828501613f77565b91505092915050565b6000602082840312156142d357600080fd5b60006142e184828501613f8c565b91505092915050565b6000602082840312156142fc57600080fd5b600061430a84828501613fa1565b91505092915050565b6000806020838503121561432657600080fd5b600083013567ffffffffffffffff81111561434057600080fd5b61434c85828601613fe0565b92509250509250929050565b60006020828403121561436a57600080fd5b60006143788482850161402a565b91505092915050565b6000806040838503121561439457600080fd5b60006143a28582860161402a565b92505060206143b38582860161402a565b9150509250929050565b6000602082840312156143cf57600080fd5b60006143dd8482850161403f565b91505092915050565b6143ef8161522a565b82525050565b6143fe8161522a565b82525050565b6144156144108261522a565b6153ba565b82525050565b6144248161523c565b82525050565b61443381615248565b82525050565b6000614444826150c7565b61444e81856150dd565b935061445e8185602086016152db565b614467816154cb565b840191505092915050565b600061447d826150d2565b61448781856150f9565b93506144978185602086016152db565b6144a0816154cb565b840191505092915050565b60006144b6826150d2565b6144c0818561510a565b93506144d08185602086016152db565b80840191505092915050565b60006144e96022836150f9565b91506144f4826154e9565b604082019050919050565b600061450c601e836150f9565b915061451782615538565b602082019050919050565b600061452f6026836150f9565b915061453a82615561565b604082019050919050565b6000614552602a836150f9565b915061455d826155b0565b604082019050919050565b6000614575601e836150f9565b9150614580826155ff565b602082019050919050565b60006145986017836150f9565b91506145a382615628565b602082019050919050565b60006145bb6023836150f9565b91506145c682615651565b604082019050919050565b60006145de6025836150f9565b91506145e9826156a0565b604082019050919050565b60006146016012836150f9565b915061460c826156ef565b602082019050919050565b6000614624604a836150f9565b915061462f82615718565b606082019050919050565b60006146476031836150f9565b91506146528261578d565b604082019050919050565b600061466a6019836150f9565b9150614675826157dc565b602082019050919050565b600061468d601e836150f9565b915061469882615805565b602082019050919050565b60006146b06019836150f9565b91506146bb8261582e565b602082019050919050565b60006146d36039836150f9565b91506146de82615857565b604082019050919050565b60006146f6602b836150f9565b9150614701826158a6565b604082019050919050565b60006147196012836150f9565b9150614724826158f5565b602082019050919050565b600061473c6026836150f9565b91506147478261591e565b604082019050919050565b600061475f6026836150f9565b915061476a8261596d565b604082019050919050565b60006147826019836150f9565b915061478d826159bc565b602082019050919050565b60006147a56020836150f9565b91506147b0826159e5565b602082019050919050565b60006147c8602f836150f9565b91506147d382615a0e565b604082019050919050565b60006147eb601a836150f9565b91506147f682615a5d565b602082019050919050565b600061480e6032836150f9565b915061481982615a86565b604082019050919050565b60006148316022836150f9565b915061483c82615ad5565b604082019050919050565b60006148546000836150ee565b915061485f82615b24565b600082019050919050565b60006148776010836150f9565b915061488282615b27565b602082019050919050565b600061489a6033836150f9565b91506148a582615b50565b604082019050919050565b60006148bd6016836150f9565b91506148c882615b9f565b602082019050919050565b60006148e06021836150f9565b91506148eb82615bc8565b604082019050919050565b60006149036016836150f9565b915061490e82615c17565b602082019050919050565b60006149266016836150f9565b915061493182615c40565b602082019050919050565b60006149496028836150f9565b915061495482615c69565b604082019050919050565b600061496c602e836150f9565b915061497782615cb8565b604082019050919050565b600061498f601f836150f9565b915061499a82615d07565b602082019050919050565b60006149b2602f836150f9565b91506149bd82615d30565b604082019050919050565b60006149d5602d836150f9565b91506149e082615d7f565b604082019050919050565b604082016000820151614a0160008501826143e6565b506020820151614a146020850182614a38565b50505050565b614a238161529e565b82525050565b614a32816152a8565b82525050565b614a41816152b8565b82525050565b614a50816152b8565b82525050565b6000614a628284614404565b60148201915081905092915050565b6000614a7d82856144ab565b9150614a8982846144ab565b91508190509392505050565b6000614aa082614847565b9150819050919050565b6000602082019050614abf60008301846143f5565b92915050565b6000608082019050614ada60008301876143f5565b614ae760208301866143f5565b614af46040830185614a1a565b8181036060830152614b068184614439565b905095945050505050565b6000602082019050614b26600083018461441b565b92915050565b6000602082019050614b41600083018461442a565b92915050565b60006020820190508181036000830152614b618184614472565b905092915050565b60006020820190508181036000830152614b82816144dc565b9050919050565b60006020820190508181036000830152614ba2816144ff565b9050919050565b60006020820190508181036000830152614bc281614522565b9050919050565b60006020820190508181036000830152614be281614545565b9050919050565b60006020820190508181036000830152614c0281614568565b9050919050565b60006020820190508181036000830152614c228161458b565b9050919050565b60006020820190508181036000830152614c42816145ae565b9050919050565b60006020820190508181036000830152614c62816145d1565b9050919050565b60006020820190508181036000830152614c82816145f4565b9050919050565b60006020820190508181036000830152614ca281614617565b9050919050565b60006020820190508181036000830152614cc28161463a565b9050919050565b60006020820190508181036000830152614ce28161465d565b9050919050565b60006020820190508181036000830152614d0281614680565b9050919050565b60006020820190508181036000830152614d22816146a3565b9050919050565b60006020820190508181036000830152614d42816146c6565b9050919050565b60006020820190508181036000830152614d62816146e9565b9050919050565b60006020820190508181036000830152614d828161470c565b9050919050565b60006020820190508181036000830152614da28161472f565b9050919050565b60006020820190508181036000830152614dc281614752565b9050919050565b60006020820190508181036000830152614de281614775565b9050919050565b60006020820190508181036000830152614e0281614798565b9050919050565b60006020820190508181036000830152614e22816147bb565b9050919050565b60006020820190508181036000830152614e42816147de565b9050919050565b60006020820190508181036000830152614e6281614801565b9050919050565b60006020820190508181036000830152614e8281614824565b9050919050565b60006020820190508181036000830152614ea28161486a565b9050919050565b60006020820190508181036000830152614ec28161488d565b9050919050565b60006020820190508181036000830152614ee2816148b0565b9050919050565b60006020820190508181036000830152614f02816148d3565b9050919050565b60006020820190508181036000830152614f22816148f6565b9050919050565b60006020820190508181036000830152614f4281614919565b9050919050565b60006020820190508181036000830152614f628161493c565b9050919050565b60006020820190508181036000830152614f828161495f565b9050919050565b60006020820190508181036000830152614fa281614982565b9050919050565b60006020820190508181036000830152614fc2816149a5565b9050919050565b60006020820190508181036000830152614fe2816149c8565b9050919050565b6000604082019050614ffe60008301846149eb565b92915050565b60006020820190506150196000830184614a1a565b92915050565b60006040820190506150346000830185614a47565b615041602083018461442a565b9392505050565b600060408201905061505d6000830185614a47565b61506a6020830184614a29565b9392505050565b600061507b61508c565b90506150878282615340565b919050565b6000604051905090565b600067ffffffffffffffff8211156150b1576150b061549c565b5b6150ba826154cb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151208261529e565b915061512b8361529e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151605761515f61540f565b5b828201905092915050565b60006151768261529e565b91506151818361529e565b9250826151915761519061543e565b5b828204905092915050565b60006151a78261529e565b91506151b28361529e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151eb576151ea61540f565b5b828202905092915050565b60006152018261529e565b915061520c8361529e565b92508282101561521f5761521e61540f565b5b828203905092915050565b60006152358261527e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156152f95780820151818401526020810190506152de565b83811115615308576000848401525b50505050565b6000600282049050600182168061532657607f821691505b6020821081141561533a5761533961546d565b5b50919050565b615349826154cb565b810181811067ffffffffffffffff821117156153685761536761549c565b5b80604052505050565b600061537c8261529e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153af576153ae61540f565b5b600182019050919050565b60006153c5826153cc565b9050919050565b60006153d7826154dc565b9050919050565b60006153e98261529e565b91506153f48361529e565b9250826154045761540361543e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c7920666f722070726573616c650000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f74206f6e2066726565206d696e74206c6973742e0000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204163746976650000000000000000000000000000600082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a65206f72206c657373207468616e20746865206d6160208201527f78426174636853697a6500000000000000000000000000000000000000000000604082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f416c726561647920636c61696d65642066726565206d696e7400000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f41646472657373206e6f74206f6e2057686974656c6973742e00000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5468697320737572706173657320796f75722070726573616c65206d696e742060008201527f6c696d69742e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c65206973206e6f742041637469766500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615dd78161522a565b8114615de257600080fd5b50565b615dee8161523c565b8114615df957600080fd5b50565b615e0581615248565b8114615e1057600080fd5b50565b615e1c81615252565b8114615e2757600080fd5b50565b615e338161529e565b8114615e3e57600080fd5b50565b615e4a816152b8565b8114615e5557600080fd5b5056fea2646970667358221220c7ecc4c16c1e47c9068813f986992b8bc9d65bcc1b938eefe1ac7183a22382af64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001484

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637cb6475911610139578063b3ab66b0116100b6578063e33f6b071161007a578063e33f6b0714610837578063e608f2611461084e578063e985e9c51461088b578063f2fde38b146108c8578063fd88fa69146108f1578063fde5f5481461091d57610246565b8063b3ab66b01461074f578063b88d4fde1461076b578063b98b6a2314610794578063c87b56dd146107bd578063dc33e681146107fa57610246565b806390aa0b0f116100fd57806390aa0b0f1461067b5780639231ab2a146106a757806395d89b41146106e4578063a22cb4651461070f578063ac4460021461073857610246565b80637cb64759146105b757806380a0bcc6146105e057806388d15d501461060957806389ba959c146106255780638da5cb5b1461065057610246565b80632f745c59116101c757806355f804b31161018b57806355f804b3146104e65780636352211e1461050f57806370a082311461054c578063715018a61461058957806376c64c62146105a057610246565b80632f745c59146103ef578063375a069a1461042c57806342842e0e1461045557806345c0f5331461047e5780634f6ccce7146104a957610246565b8063095ea7b31161020e578063095ea7b31461031e57806318160ddd14610347578063229c20481461037257806323b872dd1461039b5780632913daa0146103c457610246565b8063017043a51461024b57806301ffc9a71461026257806306fdde031461029f578063081812fc146102ca57806308e1c61314610307575b600080fd5b34801561025757600080fd5b50610260610939565b005b34801561026e57600080fd5b50610289600480360381019061028491906142c1565b6109dc565b6040516102969190614b11565b60405180910390f35b3480156102ab57600080fd5b506102b4610b26565b6040516102c19190614b47565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190614358565b610bb8565b6040516102fe9190614aaa565b60405180910390f35b34801561031357600080fd5b5061031c610c3d565b005b34801561032a57600080fd5b50610345600480360381019061034091906141bf565b610d60565b005b34801561035357600080fd5b5061035c610e79565b6040516103699190615004565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906143bd565b610e82565b005b3480156103a757600080fd5b506103c260048036038101906103bd91906140b9565b610f2d565b005b3480156103d057600080fd5b506103d9610f3d565b6040516103e69190615004565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906141bf565b610f61565b6040516104239190615004565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190614358565b611153565b005b34801561046157600080fd5b5061047c600480360381019061047791906140b9565b611391565b005b34801561048a57600080fd5b506104936113b1565b6040516104a09190615004565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190614358565b6113d5565b6040516104dd9190615004565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190614313565b611428565b005b34801561051b57600080fd5b5061053660048036038101906105319190614358565b6114ba565b6040516105439190614aaa565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190614054565b6114d0565b6040516105809190615004565b60405180910390f35b34801561059557600080fd5b5061059e6115b9565b005b3480156105ac57600080fd5b506105b5611641565b005b3480156105c357600080fd5b506105de60048036038101906105d99190614298565b611718565b005b3480156105ec57600080fd5b5061060760048036038101906106029190614298565b6117a1565b005b610623600480360381019061061e91906141fb565b611827565b005b34801561063157600080fd5b5061063a611b1c565b6040516106479190614b2c565b60405180910390f35b34801561065c57600080fd5b50610665611b22565b6040516106729190614aaa565b60405180910390f35b34801561068757600080fd5b50610690611b4c565b60405161069e929190615048565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190614358565b611b82565b6040516106db9190614fe9565b60405180910390f35b3480156106f057600080fd5b506106f9611b9a565b6040516107069190614b47565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614183565b611c2c565b005b34801561074457600080fd5b5061074d611dad565b005b61076960048036038101906107649190614358565b611f2e565b005b34801561077757600080fd5b50610792600480360381019061078d9190614108565b6121a0565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906141bf565b6121fc565b005b3480156107c957600080fd5b506107e460048036038101906107df9190614358565b6122fb565b6040516107f19190614b47565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190614054565b6123a3565b60405161082e9190615004565b60405180910390f35b34801561084357600080fd5b5061084c6123b5565b005b34801561085a57600080fd5b5061087560048036038101906108709190614381565b6124b8565b6040516108829190614b11565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad919061407d565b6124df565b6040516108bf9190614b11565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190614054565b612573565b005b3480156108fd57600080fd5b5061090661266b565b60405161091492919061501f565b60405180910390f35b61093760048036038101906109329190614240565b612691565b005b610941612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661095f611b22565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90614de9565b60405180910390fd5b6000600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1f5750610b1e82612bba565b5b9050919050565b606060018054610b359061530e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b619061530e565b8015610bae5780601f10610b8357610100808354040283529160200191610bae565b820191906000526020600020905b815481529060010190602001808311610b9157829003601f168201915b5050505050905090565b6000610bc382612c24565b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614fc9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c45612bb2565b73ffffffffffffffffffffffffffffffffffffffff16610c63611b22565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614de9565b60405180910390fd5b67013fbe85edc90000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f0000000000000000000000000000000000000000000000000000000000001484600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506002600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b6000610d6b826114ba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614e69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfb612bb2565b73ffffffffffffffffffffffffffffffffffffffff161480610e2a5750610e2981610e24612bb2565b6124df565b5b610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090614d29565b60405180910390fd5b610e74838383612c31565b505050565b60008054905090565b610e8a612bb2565b73ffffffffffffffffffffffffffffffffffffffff16610ea8611b22565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614de9565b60405180910390fd5b80600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b610f38838383612ce3565b505050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b6000610f6c836114d0565b8210610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490614b69565b60405180910390fd5b6000610fb7610e79565b905060008060005b83811015611111576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110b157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110fa57819550505050505061114d565b83806001019450505b508080600101915050610fbf565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614f69565b60405180910390fd5b92915050565b61115b612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611179611b22565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614de9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001484816111f9610e79565b6112039190615115565b1115611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90614c09565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8261127291906153de565b148061129e57507f000000000000000000000000000000000000000000000000000000000000000a8111155b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490614c89565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a81116113135761130e3382613223565b61138e565b60007f000000000000000000000000000000000000000000000000000000000000000a82611341919061516b565b905060005b8181101561138b57611378337f000000000000000000000000000000000000000000000000000000000000000a613223565b808061138390615371565b915050611346565b50505b50565b6113ac838383604051806020016040528060008152506121a0565b505050565b7f000000000000000000000000000000000000000000000000000000000000148481565b60006113df610e79565b8210611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790614c29565b60405180910390fd5b819050919050565b611430612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661144e611b22565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90614de9565b60405180910390fd5b8181600f91906114b5929190613de8565b505050565b60006114c582613241565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890614d49565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115c1612bb2565b73ffffffffffffffffffffffffffffffffffffffff166115df611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614de9565b60405180910390fd5b61163f60006133db565b565b611649612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611667611b22565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614de9565b60405180910390fd5b670186cc6acd4b0000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506003600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b611720612bb2565b73ffffffffffffffffffffffffffffffffffffffff1661173e611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90614de9565b60405180910390fd5b80600a6001018190555050565b6117a9612bb2565b73ffffffffffffffffffffffffffffffffffffffff166117c7611b22565b73ffffffffffffffffffffffffffffffffffffffff161461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614de9565b60405180910390fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614ce9565b60405180910390fd5b6000600960000160089054906101000a900463ffffffff1663ffffffff16116118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90614c69565b60405180910390fd5b6000336040516020016119069190614a56565b60405160208183030381529060405280519060200120905061196c838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134a1565b6119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290614be9565b60405180910390fd5b60001515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614cc9565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000014846001611a69610e79565b611a739190615115565b1115611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90614d69565b60405180910390fd5b611abf336001613223565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b600e5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff16905082565b611b8a613e6e565b611b9382613241565b9050919050565b606060028054611ba99061530e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd59061530e565b8015611c225780601f10611bf757610100808354040283529160200191611c22565b820191906000526020600020905b815481529060010190602001808311611c0557829003601f168201915b5050505050905090565b611c34612bb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990614e29565b60405180910390fd5b8060066000611caf612bb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5c612bb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da19190614b11565b60405180910390a35050565b611db5612bb2565b73ffffffffffffffffffffffffffffffffffffffff16611dd3611b22565b73ffffffffffffffffffffffffffffffffffffffff1614611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090614de9565b60405180910390fd5b60026008541415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614f89565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611e9d90614a95565b60006040518083038185875af1925050503d8060008114611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b5050905080611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614e89565b60405180910390fd5b506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390614ce9565b60405180910390fd5b600060096040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff168152505090506000816000015167ffffffffffffffff1690506000826020015163ffffffff1690506003811461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614dc9565b60405180910390fd5b8382612076919061519c565b3410156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90614ec9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001484846120e2610e79565b6120ec9190615115565b111561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614d69565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a841115612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790614f09565b60405180910390fd5b61219a3385613223565b50505050565b6121ab848484612ce3565b6121b7848484846134b8565b6121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed90614ea9565b60405180910390fd5b50505050565b612204612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612222611b22565b73ffffffffffffffffffffffffffffffffffffffff1614612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614de9565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001484816122a2610e79565b6122ac9190615115565b11156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490614c09565b60405180910390fd5b6122f78282613223565b5050565b606061230682612c24565b612345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233c90614e09565b60405180910390fd5b600061234f61364f565b9050600081511415612370576040518060200160405280600081525061239b565b8061237a846136e1565b60405160200161238b929190614a71565b6040516020818303038152906040525b915050919050565b60006123ae8261388e565b9050919050565b6123bd612bb2565b73ffffffffffffffffffffffffffffffffffffffff166123db611b22565b73ffffffffffffffffffffffffffffffffffffffff1614612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890614de9565b60405180910390fd5b66f8b0a10e470000600960000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060c8600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600960000160086101000a81548163ffffffff021916908363ffffffff160217905550565b600080831180156124ca575060028311155b80156124d7575060008214155b905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61257b612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612599611b22565b73ffffffffffffffffffffffffffffffffffffffff16146125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265690614ba9565b60405180910390fd5b612668816133db565b50565b600a8060000160009054906101000a900467ffffffffffffffff16908060010154905082565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f690614ce9565b60405180910390fd5b600060096040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff168152505090506000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160018201548152505090506000816000015167ffffffffffffffff1690506000836020015163ffffffff1690506000846000015167ffffffffffffffff1690506127f482846124b8565b612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282a90614f29565b60405180910390fd5b858161283f919061519c565b341015612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890614ec9565b60405180910390fd5b6000336040516020016128949190614a56565b6040516020818303038152906040528051906020012090506128fc898980806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508660200151836134a1565b61293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290614d09565b60405180910390fd5b60018314156129a057600287612950336123a3565b61295a9190615115565b111561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614d89565b60405180910390fd5b612ae7565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612a8e57600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546005612a349190615115565b87612a3e336123a3565b612a489190615115565b1115612a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8090614d89565b60405180910390fd5b612ae6565b600587612a9a336123a3565b612aa49190615115565b1115612ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adc90614d89565b60405180910390fd5b5b5b8387612af1610e79565b612afb9190615115565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3390614b89565b60405180910390fd5b6001831415612b9d5786612b4f336123a3565b612b599190615115565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b612ba73388613223565b505050505050505050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612cee82613241565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612d15612bb2565b73ffffffffffffffffffffffffffffffffffffffff161480612d715750612d3a612bb2565b73ffffffffffffffffffffffffffffffffffffffff16612d5984610bb8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d8d5750612d8c8260000151612d87612bb2565b6124df565b5b905080612dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc690614e49565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3890614da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea890614c49565b60405180910390fd5b612ebe8585856001613977565b612ece6000848460000151612c31565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156131b35761311281612c24565b156131b25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321c858585600161397d565b5050505050565b61323d828260405180602001604052806000815250613983565b5050565b613249613e6e565b61325282612c24565b613291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328890614bc9565b60405180910390fd5b60008290505b6000811061339a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461338b5780925050506133d6565b50808060019003915050613297565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cd90614fa9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826134ae8584613995565b1490509392505050565b60006134d98473ffffffffffffffffffffffffffffffffffffffff16613a30565b15613642578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613502612bb2565b8786866040518563ffffffff1660e01b81526004016135249493929190614ac5565b602060405180830381600087803b15801561353e57600080fd5b505af192505050801561356f57506040513d601f19601f8201168201806040525081019061356c91906142ea565b60015b6135f2573d806000811461359f576040519150601f19603f3d011682016040523d82523d6000602084013e6135a4565b606091505b506000815114156135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614ea9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613647565b600190505b949350505050565b6060600f805461365e9061530e565b80601f016020809104026020016040519081016040528092919081815260200182805461368a9061530e565b80156136d75780601f106136ac576101008083540402835291602001916136d7565b820191906000526020600020905b8154815290600101906020018083116136ba57829003601f168201915b5050505050905090565b60606000821415613729576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613889565b600082905060005b6000821461375b57808061374490615371565b915050600a82613754919061516b565b9150613731565b60008167ffffffffffffffff81111561379d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137cf5781602001600182028036833780820191505090505b5090505b60008514613882576001826137e891906151f6565b9150600a856137f791906153de565b60306138039190615115565b60f81b81838151811061383f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561387b919061516b565b94506137d3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f690614ca9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6139908383836001613a53565b505050565b60008082905060005b8451811015613a255760008582815181106139e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613a04576139fd8382613dd1565b9250613a11565b613a0e8184613dd1565b92505b508080613a1d90615371565b91505061399e565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac090614ee9565b60405180910390fd5b6000841415613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0490614f49565b60405180910390fd5b613b1a6000868387613977565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613db457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613d9f57613d5f60008884886134b8565b613d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d9590614ea9565b60405180910390fd5b5b81806001019250508080600101915050613ce8565b508060008190555050613dca600086838761397d565b5050505050565b600082600052816020526040600020905092915050565b828054613df49061530e565b90600052602060002090601f016020900481019282613e165760008555613e5d565b82601f10613e2f57803560ff1916838001178555613e5d565b82800160010185558215613e5d579182015b82811115613e5c578235825591602001919060010190613e41565b5b509050613e6a9190613ea8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ec1576000816000905550600101613ea9565b5090565b6000613ed8613ed384615096565b615071565b905082815260208101848484011115613ef057600080fd5b613efb8482856152cc565b509392505050565b600081359050613f1281615dce565b92915050565b60008083601f840112613f2a57600080fd5b8235905067ffffffffffffffff811115613f4357600080fd5b602083019150836020820283011115613f5b57600080fd5b9250929050565b600081359050613f7181615de5565b92915050565b600081359050613f8681615dfc565b92915050565b600081359050613f9b81615e13565b92915050565b600081519050613fb081615e13565b92915050565b600082601f830112613fc757600080fd5b8135613fd7848260208601613ec5565b91505092915050565b60008083601f840112613ff257600080fd5b8235905067ffffffffffffffff81111561400b57600080fd5b60208301915083600182028301111561402357600080fd5b9250929050565b60008135905061403981615e2a565b92915050565b60008135905061404e81615e41565b92915050565b60006020828403121561406657600080fd5b600061407484828501613f03565b91505092915050565b6000806040838503121561409057600080fd5b600061409e85828601613f03565b92505060206140af85828601613f03565b9150509250929050565b6000806000606084860312156140ce57600080fd5b60006140dc86828701613f03565b93505060206140ed86828701613f03565b92505060406140fe8682870161402a565b9150509250925092565b6000806000806080858703121561411e57600080fd5b600061412c87828801613f03565b945050602061413d87828801613f03565b935050604061414e8782880161402a565b925050606085013567ffffffffffffffff81111561416b57600080fd5b61417787828801613fb6565b91505092959194509250565b6000806040838503121561419657600080fd5b60006141a485828601613f03565b92505060206141b585828601613f62565b9150509250929050565b600080604083850312156141d257600080fd5b60006141e085828601613f03565b92505060206141f18582860161402a565b9150509250929050565b6000806020838503121561420e57600080fd5b600083013567ffffffffffffffff81111561422857600080fd5b61423485828601613f18565b92509250509250929050565b60008060006040848603121561425557600080fd5b600084013567ffffffffffffffff81111561426f57600080fd5b61427b86828701613f18565b9350935050602061428e8682870161402a565b9150509250925092565b6000602082840312156142aa57600080fd5b60006142b884828501613f77565b91505092915050565b6000602082840312156142d357600080fd5b60006142e184828501613f8c565b91505092915050565b6000602082840312156142fc57600080fd5b600061430a84828501613fa1565b91505092915050565b6000806020838503121561432657600080fd5b600083013567ffffffffffffffff81111561434057600080fd5b61434c85828601613fe0565b92509250509250929050565b60006020828403121561436a57600080fd5b60006143788482850161402a565b91505092915050565b6000806040838503121561439457600080fd5b60006143a28582860161402a565b92505060206143b38582860161402a565b9150509250929050565b6000602082840312156143cf57600080fd5b60006143dd8482850161403f565b91505092915050565b6143ef8161522a565b82525050565b6143fe8161522a565b82525050565b6144156144108261522a565b6153ba565b82525050565b6144248161523c565b82525050565b61443381615248565b82525050565b6000614444826150c7565b61444e81856150dd565b935061445e8185602086016152db565b614467816154cb565b840191505092915050565b600061447d826150d2565b61448781856150f9565b93506144978185602086016152db565b6144a0816154cb565b840191505092915050565b60006144b6826150d2565b6144c0818561510a565b93506144d08185602086016152db565b80840191505092915050565b60006144e96022836150f9565b91506144f4826154e9565b604082019050919050565b600061450c601e836150f9565b915061451782615538565b602082019050919050565b600061452f6026836150f9565b915061453a82615561565b604082019050919050565b6000614552602a836150f9565b915061455d826155b0565b604082019050919050565b6000614575601e836150f9565b9150614580826155ff565b602082019050919050565b60006145986017836150f9565b91506145a382615628565b602082019050919050565b60006145bb6023836150f9565b91506145c682615651565b604082019050919050565b60006145de6025836150f9565b91506145e9826156a0565b604082019050919050565b60006146016012836150f9565b915061460c826156ef565b602082019050919050565b6000614624604a836150f9565b915061462f82615718565b606082019050919050565b60006146476031836150f9565b91506146528261578d565b604082019050919050565b600061466a6019836150f9565b9150614675826157dc565b602082019050919050565b600061468d601e836150f9565b915061469882615805565b602082019050919050565b60006146b06019836150f9565b91506146bb8261582e565b602082019050919050565b60006146d36039836150f9565b91506146de82615857565b604082019050919050565b60006146f6602b836150f9565b9150614701826158a6565b604082019050919050565b60006147196012836150f9565b9150614724826158f5565b602082019050919050565b600061473c6026836150f9565b91506147478261591e565b604082019050919050565b600061475f6026836150f9565b915061476a8261596d565b604082019050919050565b60006147826019836150f9565b915061478d826159bc565b602082019050919050565b60006147a56020836150f9565b91506147b0826159e5565b602082019050919050565b60006147c8602f836150f9565b91506147d382615a0e565b604082019050919050565b60006147eb601a836150f9565b91506147f682615a5d565b602082019050919050565b600061480e6032836150f9565b915061481982615a86565b604082019050919050565b60006148316022836150f9565b915061483c82615ad5565b604082019050919050565b60006148546000836150ee565b915061485f82615b24565b600082019050919050565b60006148776010836150f9565b915061488282615b27565b602082019050919050565b600061489a6033836150f9565b91506148a582615b50565b604082019050919050565b60006148bd6016836150f9565b91506148c882615b9f565b602082019050919050565b60006148e06021836150f9565b91506148eb82615bc8565b604082019050919050565b60006149036016836150f9565b915061490e82615c17565b602082019050919050565b60006149266016836150f9565b915061493182615c40565b602082019050919050565b60006149496028836150f9565b915061495482615c69565b604082019050919050565b600061496c602e836150f9565b915061497782615cb8565b604082019050919050565b600061498f601f836150f9565b915061499a82615d07565b602082019050919050565b60006149b2602f836150f9565b91506149bd82615d30565b604082019050919050565b60006149d5602d836150f9565b91506149e082615d7f565b604082019050919050565b604082016000820151614a0160008501826143e6565b506020820151614a146020850182614a38565b50505050565b614a238161529e565b82525050565b614a32816152a8565b82525050565b614a41816152b8565b82525050565b614a50816152b8565b82525050565b6000614a628284614404565b60148201915081905092915050565b6000614a7d82856144ab565b9150614a8982846144ab565b91508190509392505050565b6000614aa082614847565b9150819050919050565b6000602082019050614abf60008301846143f5565b92915050565b6000608082019050614ada60008301876143f5565b614ae760208301866143f5565b614af46040830185614a1a565b8181036060830152614b068184614439565b905095945050505050565b6000602082019050614b26600083018461441b565b92915050565b6000602082019050614b41600083018461442a565b92915050565b60006020820190508181036000830152614b618184614472565b905092915050565b60006020820190508181036000830152614b82816144dc565b9050919050565b60006020820190508181036000830152614ba2816144ff565b9050919050565b60006020820190508181036000830152614bc281614522565b9050919050565b60006020820190508181036000830152614be281614545565b9050919050565b60006020820190508181036000830152614c0281614568565b9050919050565b60006020820190508181036000830152614c228161458b565b9050919050565b60006020820190508181036000830152614c42816145ae565b9050919050565b60006020820190508181036000830152614c62816145d1565b9050919050565b60006020820190508181036000830152614c82816145f4565b9050919050565b60006020820190508181036000830152614ca281614617565b9050919050565b60006020820190508181036000830152614cc28161463a565b9050919050565b60006020820190508181036000830152614ce28161465d565b9050919050565b60006020820190508181036000830152614d0281614680565b9050919050565b60006020820190508181036000830152614d22816146a3565b9050919050565b60006020820190508181036000830152614d42816146c6565b9050919050565b60006020820190508181036000830152614d62816146e9565b9050919050565b60006020820190508181036000830152614d828161470c565b9050919050565b60006020820190508181036000830152614da28161472f565b9050919050565b60006020820190508181036000830152614dc281614752565b9050919050565b60006020820190508181036000830152614de281614775565b9050919050565b60006020820190508181036000830152614e0281614798565b9050919050565b60006020820190508181036000830152614e22816147bb565b9050919050565b60006020820190508181036000830152614e42816147de565b9050919050565b60006020820190508181036000830152614e6281614801565b9050919050565b60006020820190508181036000830152614e8281614824565b9050919050565b60006020820190508181036000830152614ea28161486a565b9050919050565b60006020820190508181036000830152614ec28161488d565b9050919050565b60006020820190508181036000830152614ee2816148b0565b9050919050565b60006020820190508181036000830152614f02816148d3565b9050919050565b60006020820190508181036000830152614f22816148f6565b9050919050565b60006020820190508181036000830152614f4281614919565b9050919050565b60006020820190508181036000830152614f628161493c565b9050919050565b60006020820190508181036000830152614f828161495f565b9050919050565b60006020820190508181036000830152614fa281614982565b9050919050565b60006020820190508181036000830152614fc2816149a5565b9050919050565b60006020820190508181036000830152614fe2816149c8565b9050919050565b6000604082019050614ffe60008301846149eb565b92915050565b60006020820190506150196000830184614a1a565b92915050565b60006040820190506150346000830185614a47565b615041602083018461442a565b9392505050565b600060408201905061505d6000830185614a47565b61506a6020830184614a29565b9392505050565b600061507b61508c565b90506150878282615340565b919050565b6000604051905090565b600067ffffffffffffffff8211156150b1576150b061549c565b5b6150ba826154cb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151208261529e565b915061512b8361529e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151605761515f61540f565b5b828201905092915050565b60006151768261529e565b91506151818361529e565b9250826151915761519061543e565b5b828204905092915050565b60006151a78261529e565b91506151b28361529e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151eb576151ea61540f565b5b828202905092915050565b60006152018261529e565b915061520c8361529e565b92508282101561521f5761521e61540f565b5b828203905092915050565b60006152358261527e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156152f95780820151818401526020810190506152de565b83811115615308576000848401525b50505050565b6000600282049050600182168061532657607f821691505b6020821081141561533a5761533961546d565b5b50919050565b615349826154cb565b810181811067ffffffffffffffff821117156153685761536761549c565b5b80604052505050565b600061537c8261529e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153af576153ae61540f565b5b600182019050919050565b60006153c5826153cc565b9050919050565b60006153d7826154dc565b9050919050565b60006153e98261529e565b91506153f48361529e565b9250826154045761540361543e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c7920666f722070726573616c650000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f74206f6e2066726565206d696e74206c6973742e0000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74204163746976650000000000000000000000000000600082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a65206f72206c657373207468616e20746865206d6160208201527f78426174636853697a6500000000000000000000000000000000000000000000604082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f416c726561647920636c61696d65642066726565206d696e7400000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f41646472657373206e6f74206f6e2057686974656c6973742e00000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f5468697320737572706173657320796f75722070726573616c65206d696e742060008201527f6c696d69742e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632053616c65206973206e6f742041637469766500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b615dd78161522a565b8114615de257600080fd5b50565b615dee8161523c565b8114615df957600080fd5b50565b615e0581615248565b8114615e1057600080fd5b50565b615e1c81615252565b8114615e2757600080fd5b50565b615e338161529e565b8114615e3e57600080fd5b50565b615e4a816152b8565b8114615e5557600080fd5b5056fea2646970667358221220c7ecc4c16c1e47c9068813f986992b8bc9d65bcc1b938eefe1ac7183a22382af64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001484

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 5252

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001484


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.