ETH Price: $3,355.33 (-2.87%)
Gas: 2 Gwei

Token

PiratesOfTheOpensea (POTO)
 

Overview

Max Total Supply

2,000 POTO

Holders

669

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xbacc.eth
Balance
1 POTO
0x3c28dac79d3f1a393412c159253af276a850420a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PiratesOfTheOpensea

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 12 : PiratesOfTheOpensea.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";

contract PiratesOfTheOpensea is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public price = 0.005 ether;

    uint256 public maxMintPerTx = 5;
    uint256 public maxFreeMintPerAddr = 5;

    uint256 public totalFreeSupply = 500;
    uint256 public maxSupply = 2000;

    bool public mintEnabled = true;

    mapping(address => uint256) private _mintedFreeAmount;
    string public baseURI;

    constructor(string memory initBaseURI)
        ERC721A("PiratesOfTheOpensea", "POTO")
    {
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFreeSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more bears");
        require(mintEnabled, "Minting is not live yet, hold on bear.");
        require(count < maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFreeSupply = amount;
    }

    function saleStateToggle() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

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

File 2 of 12 : 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 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _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_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev 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 contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

File 5 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 11 of 12 : 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 12 of 12 : 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStateToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e080006009556005600a556005600b556101f4600c556107d0600d556001600e60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b5060405162003d2f38038062003d2f833981810160405281019062000073919062000489565b6040518060400160405280601381526020017f506972617465734f665468654f70656e736561000000000000000000000000008152506040518060400160405280600481526020017f504f544f000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f79291906200023c565b508060039080519060200190620001109291906200023c565b50620001216200016960201b60201c565b6000819055505050620001496200013d6200016e60201b60201c565b6200017660201b60201c565b8060109080519060200190620001619291906200023c565b50506200053f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a9062000509565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000355826200030a565b810181811067ffffffffffffffff821117156200037757620003766200031b565b5b80604052505050565b60006200038c620002ec565b90506200039a82826200034a565b919050565b600067ffffffffffffffff821115620003bd57620003bc6200031b565b5b620003c8826200030a565b9050602081019050919050565b60005b83811015620003f5578082015181840152602081019050620003d8565b8381111562000405576000848401525b50505050565b6000620004226200041c846200039f565b62000380565b90508281526020810184848401111562000441576200044062000305565b5b6200044e848285620003d5565b509392505050565b600082601f8301126200046e576200046d62000300565b5b8151620004808482602086016200040b565b91505092915050565b600060208284031215620004a257620004a1620002f6565b5b600082015167ffffffffffffffff811115620004c357620004c2620002fb565b5b620004d18482850162000456565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052257607f821691505b60208210811415620005395762000538620004da565b5b50919050565b6137e0806200054f6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461062f578063de7fcb1d1461065a578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063a22cb46514610575578063b88d4fde1461059e578063c87b56dd146105c7578063d123973014610604576101cd565b806394979a41116100d157806394979a41146104d857806395d89b4114610503578063a035b1fe1461052e578063a0712d6814610559576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806392910eec146104af576101cd565b80633ccfd60b1161016f5780636c0360eb1161013e5780636c0360eb146103c55780636e8f6aba146103f057806370a0823114610407578063715018a614610444576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d2578063027c89771461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128a6565b6106eb565b60405161020691906128ee565b60405180910390f35b34801561021b57600080fd5b506102246107cd565b6040516102319190612922565b60405180910390f35b34801561024657600080fd5b5061024f6107d3565b60405161025c91906129d6565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612a24565b610865565b6040516102999190612a92565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612ad9565b6108e1565b005b3480156102d757600080fd5b506102e06109e6565b6040516102ed9190612922565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612b19565b6109fd565b005b34801561032b57600080fd5b50610334610a0d565b005b34801561034257600080fd5b5061035d60048036038101906103589190612b19565b610b38565b005b34801561036b57600080fd5b5061038660048036038101906103819190612ca1565b610b58565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612a24565b610bee565b6040516103bc9190612a92565b60405180910390f35b3480156103d157600080fd5b506103da610c04565b6040516103e791906129d6565b60405180910390f35b3480156103fc57600080fd5b50610405610c92565b005b34801561041357600080fd5b5061042e60048036038101906104299190612cea565b610d3a565b60405161043b9190612922565b60405180910390f35b34801561045057600080fd5b50610459610e0a565b005b34801561046757600080fd5b50610470610e92565b60405161047d9190612a92565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612a24565b610ebc565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190612a24565b610f42565b005b3480156104e457600080fd5b506104ed610fc8565b6040516104fa9190612922565b60405180910390f35b34801561050f57600080fd5b50610518610fce565b60405161052591906129d6565b60405180910390f35b34801561053a57600080fd5b50610543611060565b6040516105509190612922565b60405180910390f35b610573600480360381019061056e9190612a24565b611066565b005b34801561058157600080fd5b5061059c60048036038101906105979190612d43565b6112ef565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612e24565b611467565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612a24565b6114df565b6040516105fb91906129d6565b60405180910390f35b34801561061057600080fd5b5061061961155b565b60405161062691906128ee565b60405180910390f35b34801561063b57600080fd5b5061064461156e565b6040516106519190612922565b60405180910390f35b34801561066657600080fd5b5061066f611574565b60405161067c9190612922565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612ea7565b61157a565b6040516106b991906128ee565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612cea565b61160e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c657506107c582611706565b5b9050919050565b600c5481565b6060600280546107e290612f16565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90612f16565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b600061087082611770565b6108a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610bee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109736117be565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a6117be565b61157a565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109e18383836117c6565b505050565b60006109f0611878565b6001546000540303905090565b610a0883838361187d565b505050565b610a156117be565b73ffffffffffffffffffffffffffffffffffffffff16610a33610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612f94565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aaf90612fe5565b60006040518083038185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613046565b60405180910390fd5b50565b610b5383838360405180602001604052806000815250611467565b505050565b610b606117be565b73ffffffffffffffffffffffffffffffffffffffff16610b7e610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90612f94565b60405180910390fd5b8060109080519060200190610bea929190612754565b5050565b6000610bf982611d33565b600001519050919050565b60108054610c1190612f16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d90612f16565b8015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b505050505081565b610c9a6117be565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612f94565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e126117be565b73ffffffffffffffffffffffffffffffffffffffff16610e30610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612f94565b60405180910390fd5b610e906000611fbe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec46117be565b73ffffffffffffffffffffffffffffffffffffffff16610ee2610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90612f94565b60405180910390fd5b8060098190555050565b610f4a6117be565b73ffffffffffffffffffffffffffffffffffffffff16610f68610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612f94565b60405180910390fd5b80600c8190555050565b600b5481565b606060038054610fdd90612f16565b80601f016020809104026020016040519081016040528092919081815260200182805461100990612f16565b80156110565780601f1061102b57610100808354040283529160200191611056565b820191906000526020600020905b81548152906001019060200180831161103957829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600c5461107e9190613095565b836110876109e6565b6110919190613095565b1080156110ea5750600b5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110e79190613095565b11155b8061112757506110f8610e92565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561113457600091505b818361114091906130eb565b341015611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613191565b60405180910390fd5b6001600d546111919190613095565b8361119a6109e6565b6111a49190613095565b106111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906131fd565b60405180910390fd5b600e60009054906101000a900460ff16611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a9061328f565b60405180910390fd5b6001600a546112429190613095565b8310611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906132fb565b60405180910390fd5b80156112e05782600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d89190613095565b925050819055505b6112ea3384612084565b505050565b6112f76117be565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113696117be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114166117be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145b91906128ee565b60405180910390a35050565b61147284848461187d565b6114918373ffffffffffffffffffffffffffffffffffffffff166120a2565b156114d9576114a2848484846120c5565b6114d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114ea82611770565b611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061338d565b60405180910390fd5b601061153483612225565b6040516020016115459291906134c9565b6040516020818303038152906040529050919050565b600e60009054906101000a900460ff1681565b600d5481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116166117be565b73ffffffffffffffffffffffffffffffffffffffff16611634610e92565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190612f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f19061356a565b60405180910390fd5b61170381611fbe565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161177b611878565b1115801561178a575060005482105b80156117b7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061188882611d33565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119146117be565b73ffffffffffffffffffffffffffffffffffffffff16148061194357506119428561193d6117be565b61157a565b5b8061198857506119516117be565b73ffffffffffffffffffffffffffffffffffffffff1661197084610865565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a28576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a358585856001612386565b611a41600084876117c6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cc1576000548214611cc057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2c858585600161238c565b5050505050565b611d3b6127da565b600082905080611d49611878565b11611f8757600054811015611f86576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f8457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e68578092505050611fb9565b5b600115611f8357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f7e578092505050611fb9565b611e69565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209e828260405180602001604052806000815250612392565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120eb6117be565b8786866040518563ffffffff1660e01b815260040161210d94939291906135df565b602060405180830381600087803b15801561212757600080fd5b505af192505050801561215857506040513d601f19601f820116820180604052508101906121559190613640565b60015b6121d2573d8060008114612188576040519150601f19603f3d011682016040523d82523d6000602084013e61218d565b606091505b506000815114156121ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561226d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612381565b600082905060005b6000821461229f5780806122889061366d565b915050600a8261229891906136e5565b9150612275565b60008167ffffffffffffffff8111156122bb576122ba612b76565b5b6040519080825280601f01601f1916602001820160405280156122ed5781602001600182028036833780820191505090505b5090505b6000851461237a576001826123069190613716565b9150600a85612315919061374a565b60306123219190613095565b60f81b8183815181106123375761233661377b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237391906136e5565b94506122f1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561243a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124476000858386612386565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506126088673ffffffffffffffffffffffffffffffffffffffff166120a2565b156126cd575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267d60008784806001019550876120c5565b6126b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061260e5782600054146126c857600080fd5b612738565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126ce575b81600081905550505061274e600085838661238c565b50505050565b82805461276090612f16565b90600052602060002090601f01602090048101928261278257600085556127c9565b82601f1061279b57805160ff19168380011785556127c9565b828001600101855582156127c9579182015b828111156127c85782518255916020019190600101906127ad565b5b5090506127d6919061281d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561283657600081600090555060010161281e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128838161284e565b811461288e57600080fd5b50565b6000813590506128a08161287a565b92915050565b6000602082840312156128bc576128bb612844565b5b60006128ca84828501612891565b91505092915050565b60008115159050919050565b6128e8816128d3565b82525050565b600060208201905061290360008301846128df565b92915050565b6000819050919050565b61291c81612909565b82525050565b60006020820190506129376000830184612913565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297757808201518184015260208101905061295c565b83811115612986576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a88261293d565b6129b28185612948565b93506129c2818560208601612959565b6129cb8161298c565b840191505092915050565b600060208201905081810360008301526129f0818461299d565b905092915050565b612a0181612909565b8114612a0c57600080fd5b50565b600081359050612a1e816129f8565b92915050565b600060208284031215612a3a57612a39612844565b5b6000612a4884828501612a0f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a7c82612a51565b9050919050565b612a8c81612a71565b82525050565b6000602082019050612aa76000830184612a83565b92915050565b612ab681612a71565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b60008060408385031215612af057612aef612844565b5b6000612afe85828601612ac4565b9250506020612b0f85828601612a0f565b9150509250929050565b600080600060608486031215612b3257612b31612844565b5b6000612b4086828701612ac4565b9350506020612b5186828701612ac4565b9250506040612b6286828701612a0f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bae8261298c565b810181811067ffffffffffffffff82111715612bcd57612bcc612b76565b5b80604052505050565b6000612be061283a565b9050612bec8282612ba5565b919050565b600067ffffffffffffffff821115612c0c57612c0b612b76565b5b612c158261298c565b9050602081019050919050565b82818337600083830152505050565b6000612c44612c3f84612bf1565b612bd6565b905082815260208101848484011115612c6057612c5f612b71565b5b612c6b848285612c22565b509392505050565b600082601f830112612c8857612c87612b6c565b5b8135612c98848260208601612c31565b91505092915050565b600060208284031215612cb757612cb6612844565b5b600082013567ffffffffffffffff811115612cd557612cd4612849565b5b612ce184828501612c73565b91505092915050565b600060208284031215612d0057612cff612844565b5b6000612d0e84828501612ac4565b91505092915050565b612d20816128d3565b8114612d2b57600080fd5b50565b600081359050612d3d81612d17565b92915050565b60008060408385031215612d5a57612d59612844565b5b6000612d6885828601612ac4565b9250506020612d7985828601612d2e565b9150509250929050565b600067ffffffffffffffff821115612d9e57612d9d612b76565b5b612da78261298c565b9050602081019050919050565b6000612dc7612dc284612d83565b612bd6565b905082815260208101848484011115612de357612de2612b71565b5b612dee848285612c22565b509392505050565b600082601f830112612e0b57612e0a612b6c565b5b8135612e1b848260208601612db4565b91505092915050565b60008060008060808587031215612e3e57612e3d612844565b5b6000612e4c87828801612ac4565b9450506020612e5d87828801612ac4565b9350506040612e6e87828801612a0f565b925050606085013567ffffffffffffffff811115612e8f57612e8e612849565b5b612e9b87828801612df6565b91505092959194509250565b60008060408385031215612ebe57612ebd612844565b5b6000612ecc85828601612ac4565b9250506020612edd85828601612ac4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2e57607f821691505b60208210811415612f4257612f41612ee7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7e602083612948565b9150612f8982612f48565b602082019050919050565b60006020820190508181036000830152612fad81612f71565b9050919050565b600081905092915050565b50565b6000612fcf600083612fb4565b9150612fda82612fbf565b600082019050919050565b6000612ff082612fc2565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613030601083612948565b915061303b82612ffa565b602082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a082612909565b91506130ab83612909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130e0576130df613066565b5b828201905092915050565b60006130f682612909565b915061310183612909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561313a57613139613066565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061317b601d83612948565b915061318682613145565b602082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b60006131e7600d83612948565b91506131f2826131b1565b602082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b6000613279602683612948565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006132e5601383612948565b91506132f0826132af565b602082019050919050565b60006020820190508181036000830152613314816132d8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613377602f83612948565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546133da81612f16565b6133e481866133ad565b945060018216600081146133ff576001811461341057613443565b60ff19831686528186019350613443565b613419856133b8565b60005b8381101561343b5781548189015260018201915060208101905061341c565b838801955050505b50505092915050565b60006134578261293d565b61346181856133ad565b9350613471818560208601612959565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134b36005836133ad565b91506134be8261347d565b600582019050919050565b60006134d582856133cd565b91506134e1828461344c565b91506134ec826134a6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613554602683612948565b915061355f826134f8565b604082019050919050565b6000602082019050818103600083015261358381613547565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135b18261358a565b6135bb8185613595565b93506135cb818560208601612959565b6135d48161298c565b840191505092915050565b60006080820190506135f46000830187612a83565b6136016020830186612a83565b61360e6040830185612913565b818103606083015261362081846135a6565b905095945050505050565b60008151905061363a8161287a565b92915050565b60006020828403121561365657613655612844565b5b60006136648482850161362b565b91505092915050565b600061367882612909565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ab576136aa613066565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f082612909565b91506136fb83612909565b92508261370b5761370a6136b6565b5b828204905092915050565b600061372182612909565b915061372c83612909565b92508282101561373f5761373e613066565b5b828203905092915050565b600061375582612909565b915061376083612909565b9250826137705761376f6136b6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207a546a0ea2f9479e0319c3d7d6c9cf5818a042445463bafa9c8f92f0dca5b44d64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647533563773335270343331776e76337a4e4154534a5466754b48387a70426963676964476a6438705244392f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461062f578063de7fcb1d1461065a578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063a22cb46514610575578063b88d4fde1461059e578063c87b56dd146105c7578063d123973014610604576101cd565b806394979a41116100d157806394979a41146104d857806395d89b4114610503578063a035b1fe1461052e578063a0712d6814610559576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806392910eec146104af576101cd565b80633ccfd60b1161016f5780636c0360eb1161013e5780636c0360eb146103c55780636e8f6aba146103f057806370a0823114610407578063715018a614610444576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d2578063027c89771461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128a6565b6106eb565b60405161020691906128ee565b60405180910390f35b34801561021b57600080fd5b506102246107cd565b6040516102319190612922565b60405180910390f35b34801561024657600080fd5b5061024f6107d3565b60405161025c91906129d6565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612a24565b610865565b6040516102999190612a92565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612ad9565b6108e1565b005b3480156102d757600080fd5b506102e06109e6565b6040516102ed9190612922565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612b19565b6109fd565b005b34801561032b57600080fd5b50610334610a0d565b005b34801561034257600080fd5b5061035d60048036038101906103589190612b19565b610b38565b005b34801561036b57600080fd5b5061038660048036038101906103819190612ca1565b610b58565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612a24565b610bee565b6040516103bc9190612a92565b60405180910390f35b3480156103d157600080fd5b506103da610c04565b6040516103e791906129d6565b60405180910390f35b3480156103fc57600080fd5b50610405610c92565b005b34801561041357600080fd5b5061042e60048036038101906104299190612cea565b610d3a565b60405161043b9190612922565b60405180910390f35b34801561045057600080fd5b50610459610e0a565b005b34801561046757600080fd5b50610470610e92565b60405161047d9190612a92565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612a24565b610ebc565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190612a24565b610f42565b005b3480156104e457600080fd5b506104ed610fc8565b6040516104fa9190612922565b60405180910390f35b34801561050f57600080fd5b50610518610fce565b60405161052591906129d6565b60405180910390f35b34801561053a57600080fd5b50610543611060565b6040516105509190612922565b60405180910390f35b610573600480360381019061056e9190612a24565b611066565b005b34801561058157600080fd5b5061059c60048036038101906105979190612d43565b6112ef565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612e24565b611467565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612a24565b6114df565b6040516105fb91906129d6565b60405180910390f35b34801561061057600080fd5b5061061961155b565b60405161062691906128ee565b60405180910390f35b34801561063b57600080fd5b5061064461156e565b6040516106519190612922565b60405180910390f35b34801561066657600080fd5b5061066f611574565b60405161067c9190612922565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612ea7565b61157a565b6040516106b991906128ee565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612cea565b61160e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c657506107c582611706565b5b9050919050565b600c5481565b6060600280546107e290612f16565b80601f016020809104026020016040519081016040528092919081815260200182805461080e90612f16565b801561085b5780601f106108305761010080835404028352916020019161085b565b820191906000526020600020905b81548152906001019060200180831161083e57829003601f168201915b5050505050905090565b600061087082611770565b6108a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610bee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109736117be565b73ffffffffffffffffffffffffffffffffffffffff16146109d65761099f8161099a6117be565b61157a565b6109d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109e18383836117c6565b505050565b60006109f0611878565b6001546000540303905090565b610a0883838361187d565b505050565b610a156117be565b73ffffffffffffffffffffffffffffffffffffffff16610a33610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612f94565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aaf90612fe5565b60006040518083038185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90613046565b60405180910390fd5b50565b610b5383838360405180602001604052806000815250611467565b505050565b610b606117be565b73ffffffffffffffffffffffffffffffffffffffff16610b7e610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90612f94565b60405180910390fd5b8060109080519060200190610bea929190612754565b5050565b6000610bf982611d33565b600001519050919050565b60108054610c1190612f16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3d90612f16565b8015610c8a5780601f10610c5f57610100808354040283529160200191610c8a565b820191906000526020600020905b815481529060010190602001808311610c6d57829003601f168201915b505050505081565b610c9a6117be565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590612f94565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e126117be565b73ffffffffffffffffffffffffffffffffffffffff16610e30610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90612f94565b60405180910390fd5b610e906000611fbe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ec46117be565b73ffffffffffffffffffffffffffffffffffffffff16610ee2610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90612f94565b60405180910390fd5b8060098190555050565b610f4a6117be565b73ffffffffffffffffffffffffffffffffffffffff16610f68610e92565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590612f94565b60405180910390fd5b80600c8190555050565b600b5481565b606060038054610fdd90612f16565b80601f016020809104026020016040519081016040528092919081815260200182805461100990612f16565b80156110565780601f1061102b57610100808354040283529160200191611056565b820191906000526020600020905b81548152906001019060200180831161103957829003601f168201915b5050505050905090565b60095481565b6000600954905060006001600c5461107e9190613095565b836110876109e6565b6110919190613095565b1080156110ea5750600b5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110e79190613095565b11155b8061112757506110f8610e92565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561113457600091505b818361114091906130eb565b341015611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613191565b60405180910390fd5b6001600d546111919190613095565b8361119a6109e6565b6111a49190613095565b106111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906131fd565b60405180910390fd5b600e60009054906101000a900460ff16611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a9061328f565b60405180910390fd5b6001600a546112429190613095565b8310611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906132fb565b60405180910390fd5b80156112e05782600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d89190613095565b925050819055505b6112ea3384612084565b505050565b6112f76117be565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113696117be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114166117be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145b91906128ee565b60405180910390a35050565b61147284848461187d565b6114918373ffffffffffffffffffffffffffffffffffffffff166120a2565b156114d9576114a2848484846120c5565b6114d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114ea82611770565b611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061338d565b60405180910390fd5b601061153483612225565b6040516020016115459291906134c9565b6040516020818303038152906040529050919050565b600e60009054906101000a900460ff1681565b600d5481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116166117be565b73ffffffffffffffffffffffffffffffffffffffff16611634610e92565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190612f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f19061356a565b60405180910390fd5b61170381611fbe565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161177b611878565b1115801561178a575060005482105b80156117b7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061188882611d33565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119146117be565b73ffffffffffffffffffffffffffffffffffffffff16148061194357506119428561193d6117be565b61157a565b5b8061198857506119516117be565b73ffffffffffffffffffffffffffffffffffffffff1661197084610865565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a28576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a358585856001612386565b611a41600084876117c6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cc1576000548214611cc057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2c858585600161238c565b5050505050565b611d3b6127da565b600082905080611d49611878565b11611f8757600054811015611f86576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f8457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e68578092505050611fb9565b5b600115611f8357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f7e578092505050611fb9565b611e69565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209e828260405180602001604052806000815250612392565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120eb6117be565b8786866040518563ffffffff1660e01b815260040161210d94939291906135df565b602060405180830381600087803b15801561212757600080fd5b505af192505050801561215857506040513d601f19601f820116820180604052508101906121559190613640565b60015b6121d2573d8060008114612188576040519150601f19603f3d011682016040523d82523d6000602084013e61218d565b606091505b506000815114156121ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561226d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612381565b600082905060005b6000821461229f5780806122889061366d565b915050600a8261229891906136e5565b9150612275565b60008167ffffffffffffffff8111156122bb576122ba612b76565b5b6040519080825280601f01601f1916602001820160405280156122ed5781602001600182028036833780820191505090505b5090505b6000851461237a576001826123069190613716565b9150600a85612315919061374a565b60306123219190613095565b60f81b8183815181106123375761233661377b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237391906136e5565b94506122f1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561243a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124476000858386612386565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506126088673ffffffffffffffffffffffffffffffffffffffff166120a2565b156126cd575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267d60008784806001019550876120c5565b6126b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061260e5782600054146126c857600080fd5b612738565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126ce575b81600081905550505061274e600085838661238c565b50505050565b82805461276090612f16565b90600052602060002090601f01602090048101928261278257600085556127c9565b82601f1061279b57805160ff19168380011785556127c9565b828001600101855582156127c9579182015b828111156127c85782518255916020019190600101906127ad565b5b5090506127d6919061281d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561283657600081600090555060010161281e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128838161284e565b811461288e57600080fd5b50565b6000813590506128a08161287a565b92915050565b6000602082840312156128bc576128bb612844565b5b60006128ca84828501612891565b91505092915050565b60008115159050919050565b6128e8816128d3565b82525050565b600060208201905061290360008301846128df565b92915050565b6000819050919050565b61291c81612909565b82525050565b60006020820190506129376000830184612913565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297757808201518184015260208101905061295c565b83811115612986576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a88261293d565b6129b28185612948565b93506129c2818560208601612959565b6129cb8161298c565b840191505092915050565b600060208201905081810360008301526129f0818461299d565b905092915050565b612a0181612909565b8114612a0c57600080fd5b50565b600081359050612a1e816129f8565b92915050565b600060208284031215612a3a57612a39612844565b5b6000612a4884828501612a0f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a7c82612a51565b9050919050565b612a8c81612a71565b82525050565b6000602082019050612aa76000830184612a83565b92915050565b612ab681612a71565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b60008060408385031215612af057612aef612844565b5b6000612afe85828601612ac4565b9250506020612b0f85828601612a0f565b9150509250929050565b600080600060608486031215612b3257612b31612844565b5b6000612b4086828701612ac4565b9350506020612b5186828701612ac4565b9250506040612b6286828701612a0f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bae8261298c565b810181811067ffffffffffffffff82111715612bcd57612bcc612b76565b5b80604052505050565b6000612be061283a565b9050612bec8282612ba5565b919050565b600067ffffffffffffffff821115612c0c57612c0b612b76565b5b612c158261298c565b9050602081019050919050565b82818337600083830152505050565b6000612c44612c3f84612bf1565b612bd6565b905082815260208101848484011115612c6057612c5f612b71565b5b612c6b848285612c22565b509392505050565b600082601f830112612c8857612c87612b6c565b5b8135612c98848260208601612c31565b91505092915050565b600060208284031215612cb757612cb6612844565b5b600082013567ffffffffffffffff811115612cd557612cd4612849565b5b612ce184828501612c73565b91505092915050565b600060208284031215612d0057612cff612844565b5b6000612d0e84828501612ac4565b91505092915050565b612d20816128d3565b8114612d2b57600080fd5b50565b600081359050612d3d81612d17565b92915050565b60008060408385031215612d5a57612d59612844565b5b6000612d6885828601612ac4565b9250506020612d7985828601612d2e565b9150509250929050565b600067ffffffffffffffff821115612d9e57612d9d612b76565b5b612da78261298c565b9050602081019050919050565b6000612dc7612dc284612d83565b612bd6565b905082815260208101848484011115612de357612de2612b71565b5b612dee848285612c22565b509392505050565b600082601f830112612e0b57612e0a612b6c565b5b8135612e1b848260208601612db4565b91505092915050565b60008060008060808587031215612e3e57612e3d612844565b5b6000612e4c87828801612ac4565b9450506020612e5d87828801612ac4565b9350506040612e6e87828801612a0f565b925050606085013567ffffffffffffffff811115612e8f57612e8e612849565b5b612e9b87828801612df6565b91505092959194509250565b60008060408385031215612ebe57612ebd612844565b5b6000612ecc85828601612ac4565b9250506020612edd85828601612ac4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2e57607f821691505b60208210811415612f4257612f41612ee7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7e602083612948565b9150612f8982612f48565b602082019050919050565b60006020820190508181036000830152612fad81612f71565b9050919050565b600081905092915050565b50565b6000612fcf600083612fb4565b9150612fda82612fbf565b600082019050919050565b6000612ff082612fc2565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613030601083612948565b915061303b82612ffa565b602082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a082612909565b91506130ab83612909565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130e0576130df613066565b5b828201905092915050565b60006130f682612909565b915061310183612909565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561313a57613139613066565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061317b601d83612948565b915061318682613145565b602082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b60006131e7600d83612948565b91506131f2826131b1565b602082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b6000613279602683612948565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006132e5601383612948565b91506132f0826132af565b602082019050919050565b60006020820190508181036000830152613314816132d8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613377602f83612948565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546133da81612f16565b6133e481866133ad565b945060018216600081146133ff576001811461341057613443565b60ff19831686528186019350613443565b613419856133b8565b60005b8381101561343b5781548189015260018201915060208101905061341c565b838801955050505b50505092915050565b60006134578261293d565b61346181856133ad565b9350613471818560208601612959565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134b36005836133ad565b91506134be8261347d565b600582019050919050565b60006134d582856133cd565b91506134e1828461344c565b91506134ec826134a6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613554602683612948565b915061355f826134f8565b604082019050919050565b6000602082019050818103600083015261358381613547565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135b18261358a565b6135bb8185613595565b93506135cb818560208601612959565b6135d48161298c565b840191505092915050565b60006080820190506135f46000830187612a83565b6136016020830186612a83565b61360e6040830185612913565b818103606083015261362081846135a6565b905095945050505050565b60008151905061363a8161287a565b92915050565b60006020828403121561365657613655612844565b5b60006136648482850161362b565b91505092915050565b600061367882612909565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ab576136aa613066565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f082612909565b91506136fb83612909565b92508261370b5761370a6136b6565b5b828204905092915050565b600061372182612909565b915061372c83612909565b92508282101561373f5761373e613066565b5b828203905092915050565b600061375582612909565b915061376083612909565b9250826137705761376f6136b6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207a546a0ea2f9479e0319c3d7d6c9cf5818a042445463bafa9c8f92f0dca5b44d64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647533563773335270343331776e76337a4e4154534a5466754b48387a70426963676964476a6438705244392f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://Qmdu3V7s3Rp431wnv3zNATSJTfuKH8zpBicgidGjd8pRD9/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d647533563773335270343331776e76337a4e4154534a54
Arg [3] : 66754b48387a70426963676964476a6438705244392f00000000000000000000


Deployed Bytecode Sourcemap

157:2422:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;374:36:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6087:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7544:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7120:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2319:306;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8383:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2370:206:9;;;;;;;;;;;;;:::i;:::-;;8613:179:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1966:88:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5902:123:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;556:21:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2171:91;;;;;;;;;;;;;:::i;:::-;;3416:203:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;1036:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2270:92:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2062:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;328:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:102:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;247:34:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;726:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7811:282:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8858:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1608:350:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;457:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;417:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;290;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8159:162:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3057:300:10;3159:4;3209:25;3194:40;;;:11;:40;;;;:104;;;;3265:33;3250:48;;;:11;:48;;;;3194:104;:156;;;;3314:36;3338:11;3314:23;:36::i;:::-;3194:156;3175:175;;3057:300;;;:::o;374:36:9:-;;;;:::o;6087:98:10:-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;;;;;;;;;;;;;7631:64;7713:15;:24;7729:7;7713:24;;;;;;;;;;;;;;;;;;;;;7706:31;;7544:200;;;:::o;7120:363::-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;7246:11;;:2;:11;;;7242:48;;;7266:24;;;;;;;;;;;;;;7242:48;7321:5;7305:21;;:12;:10;:12::i;:::-;:21;;;7301:137;;7332:37;7349:5;7356:12;:10;:12::i;:::-;7332:16;:37::i;:::-;7328:110;;7392:35;;;;;;;;;;;;;;7328:110;7301:137;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;2319:306::-;2372:7;2593:15;:13;:15::i;:::-;2578:12;;2562:13;;:28;:46;2555:53;;2319:306;:::o;8383:164::-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;:::-;8383:164;;;:::o;2370:206:9:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2421:12:9::1;2447:10;2439:24;;2485:21;2439:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420:101;;;2540:7;2532:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2409:167;2370:206::o:0;8613:179:10:-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;:::-;8613:179;;;:::o;1966:88:9:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2043:3:9::1;2033:7;:13;;;;;;;;;;;;:::i;:::-;;1966:88:::0;:::o;5902:123:10:-;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;;5985:33;;5902:123;;;:::o;556:21:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2171:91::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2243:11:9::1;;;;;;;;;;;2242:12;2228:11;;:26;;;;;;;;;;;;;;;;;;2171:91::o:0;3416:203:10:-;3480:7;3520:1;3503:19;;:5;:19;;;3499:60;;;3531:28;;;;;;;;;;;;;;3499:60;3584:12;:19;3597:5;3584:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;3576:36;;3569:43;;3416:203;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;2270:92:9:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2345:9:9::1;2337:5;:17;;;;2270:92:::0;:::o;2062:101::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2149:6:9::1;2131:15;:24;;;;2062:101:::0;:::o;328:37::-;;;;:::o;6249:102:10:-;6305:13;6337:7;6330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6249:102;:::o;247:34:9:-;;;;:::o;726:758::-;783:12;798:5;;783:20;;814:11;872:1;854:15;;:19;;;;:::i;:::-;846:5;830:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:43;829:123;;;;;933:18;;924:5;892:17;:29;910:10;892:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:59;;829:123;828:165;;;;985:7;:5;:7::i;:::-;971:21;;:10;:21;;;828:165;814:179;;1010:6;1006:47;;;1040:1;1033:8;;1006:47;1094:4;1086:5;:12;;;;:::i;:::-;1073:9;:25;;1065:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1187:1;1175:9;;:13;;;;:::i;:::-;1167:5;1151:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;1143:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1225:11;;;;;;;;;;;1217:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1321:1;1306:12;;:16;;;;:::i;:::-;1298:5;:24;1290:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1363:6;1359:77;;;1419:5;1386:17;:29;1404:10;1386:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;1359:77;1448:28;1458:10;1470:5;1448:9;:28::i;:::-;772:712;;726:758;:::o;7811:282:10:-;7921:12;:10;:12::i;:::-;7909:24;;:8;:24;;;7905:54;;;7942:17;;;;;;;;;;;;;;7905:54;8015:8;7970:18;:32;7989:12;:10;:12::i;:::-;7970:32;;;;;;;;;;;;;;;:42;8003:8;7970:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8067:8;8038:48;;8053:12;:10;:12::i;:::-;8038:48;;;8077:8;8038:48;;;;;;:::i;:::-;;;;;;;;7811:282;;:::o;8858:360::-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;9061:15;:2;:13;;;:15::i;:::-;9057:155;;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;;;;;;;;;;;;;9078:134;9057:155;8858:360;;;;:::o;1608:350:9:-;1726:13;1779:16;1787:7;1779;:16::i;:::-;1757:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;1912:7;1921:18;:7;:16;:18::i;:::-;1895:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1881:69;;1608:350;;;:::o;457:30::-;;;;;;;;;;;;;:::o;417:31::-;;;;:::o;290:::-;;;;:::o;8159:162:10:-;8256:4;8279:18;:25;8298:5;8279:25;;;;;;;;;;;;;;;:35;8305:8;8279:35;;;;;;;;;;;;;;;;;;;;;;;;;8272:42;;8159:162;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9464:172:10:-;9521:4;9563:7;9544:15;:13;:15::i;:::-;:26;;:53;;;;;9584:13;;9574:7;:23;9544:53;:85;;;;;9602:11;:20;9614:7;9602:20;;;;;;;;;;;:27;;;;;;;;;;;;9601:28;9544:85;9537:92;;9464:172;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;18445:189:10:-;18582:2;18555:15;:24;18571:7;18555:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18619:7;18615:2;18599:28;;18608:5;18599:28;;;;;;;;;;;;18445:189;;;:::o;2100:90::-;2156:7;2100:90;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;13704:26;;:13;:18;;;:26;;;13700:67;;13739:28;;;;;;;;;;;;;;13700:67;13778:22;13820:4;13804:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;13840:36;13857:4;13863:12;:10;:12::i;:::-;13840:16;:36::i;:::-;13804:72;:124;;;;13916:12;:10;:12::i;:::-;13892:36;;:20;13904:7;13892:11;:20::i;:::-;:36;;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;;;;;;;;;;;;;13940:66;14034:1;14020:16;;:2;:16;;;14016:52;;;14045:23;;;;;;;;;;;;;;14016:52;14079:43;14101:4;14107:2;14111:7;14120:1;14079:21;:43::i;:::-;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;14539:1;14509:12;:18;14522:4;14509:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14582:1;14554:12;:16;14567:2;14554:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14598:31;14632:11;:20;14644:7;14632:20;;;;;;;;;;;14598:54;;14682:2;14666:8;:13;;;:18;;;;;;;;;;;;;;;;;;14731:15;14698:8;:23;;;:49;;;;;;;;;;;;;;;;;;14995:19;15027:1;15017:7;:11;14995:33;;15042:31;15076:11;:24;15088:11;15076:24;;;;;;;;;;;15042:58;;15143:1;15118:27;;:8;:13;;;;;;;;;;;;:27;;;15114:377;;;15325:13;;15310:11;:28;15306:171;;15378:4;15362:8;:13;;;:20;;;;;;;;;;;;;;;;;;15430:13;:28;;;15404:8;:23;;;:54;;;;;;;;;;;;;;;;;;15306:171;15114:377;14485:1016;;;15535:7;15531:2;15516:27;;15525:4;15516:27;;;;;;;;;;;;15553:42;15574:4;15580:2;15584:7;15593:1;15553:20;:42::i;:::-;13620:1982;;13520:2082;;;:::o;4759:1086::-;4821:21;;:::i;:::-;4854:12;4869:7;4854:22;;4934:4;4915:15;:13;:15::i;:::-;:23;4911:870;;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:11;:17;5030:4;5018:17;;;;;;;;;;;4984:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5058:9;:16;;;5053:714;;5128:1;5102:28;;:9;:14;;;:28;;;5098:99;;5165:9;5158:16;;;;;;5098:99;5494:255;5501:4;5494:255;;;5533:6;;;;;;;;5577:11;:17;5589:4;5577:17;;;;;;;;;;;5565:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650:1;5624:28;;:9;:14;;;:28;;;5620:107;;5691:9;5684:16;;;;;;5620:107;5494:255;;;5053:714;4966:815;4940:841;4911:870;5807:31;;;;;;;;;;;;;;4759:1086;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;9715:102:10:-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;:::-;9715:102;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;19115:650:10:-;19273:4;19309:2;19293:36;;;19330:12;:10;:12::i;:::-;19344:4;19350:7;19359:5;19293:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19541:1;19524:6;:13;:18;19520:229;;;19569:40;;;;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;19421:45;;;19411:55;;;:6;:55;;;;19404:62;;;19115:650;;;;;;:::o;328:703:6:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;20396:154:10:-;;;;;:::o;21191:153::-;;;;;:::o;10177:1708::-;10295:20;10318:13;;10295:36;;10359:1;10345:16;;:2;:16;;;10341:48;;;10370:19;;;;;;;;;;;;;;10341:48;10415:1;10403:8;:13;10399:44;;;10425:18;;;;;;;;;;;;;;10399:44;10454:61;10484:1;10488:2;10492:12;10506:8;10454:21;:61::i;:::-;10821:8;10786:12;:16;10799:2;10786:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10884:8;10844:12;:16;10857:2;10844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10941:2;10908:11;:25;10920:12;10908:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;11007:15;10957:11;:25;10969:12;10957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;11038:20;11061:12;11038:35;;11087:11;11116:8;11101:12;:23;11087:37;;11143:15;:2;:13;;;:15::i;:::-;11139:618;;;11178:308;11233:12;11229:2;11208:38;;11225:1;11208:38;;;;;;;;;;;;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;;;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11681:14;;;;;;11677:2;11656:40;;11673:1;11656:40;;;;;;;;;;;;11738:3;11723:12;:18;11626:117;;11139:618;11786:12;11770:13;:28;;;;10762:1047;;11818:60;11847:1;11851:2;11855:12;11869:8;11818:20;:60::i;:::-;10285:1600;10177:1708;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:166::-;14820:18;14816:1;14808:6;14804:14;14797:42;14680:166;:::o;14852:366::-;14994:3;15015:67;15079:2;15074:3;15015:67;:::i;:::-;15008:74;;15091:93;15180:3;15091:93;:::i;:::-;15209:2;15204:3;15200:12;15193:19;;14852:366;;;:::o;15224:419::-;15390:4;15428:2;15417:9;15413:18;15405:26;;15477:9;15471:4;15467:20;15463:1;15452:9;15448:17;15441:47;15505:131;15631:4;15505:131;:::i;:::-;15497:139;;15224:419;;;:::o;15649:180::-;15697:77;15694:1;15687:88;15794:4;15791:1;15784:15;15818:4;15815:1;15808:15;15835:305;15875:3;15894:20;15912:1;15894:20;:::i;:::-;15889:25;;15928:20;15946:1;15928:20;:::i;:::-;15923:25;;16082:1;16014:66;16010:74;16007:1;16004:81;16001:107;;;16088:18;;:::i;:::-;16001:107;16132:1;16129;16125:9;16118:16;;15835:305;;;;:::o;16146:348::-;16186:7;16209:20;16227:1;16209:20;:::i;:::-;16204:25;;16243:20;16261:1;16243:20;:::i;:::-;16238:25;;16431:1;16363:66;16359:74;16356:1;16353:81;16348:1;16341:9;16334:17;16330:105;16327:131;;;16438:18;;:::i;:::-;16327:131;16486:1;16483;16479:9;16468:20;;16146:348;;;;:::o;16500:179::-;16640:31;16636:1;16628:6;16624:14;16617:55;16500:179;:::o;16685:366::-;16827:3;16848:67;16912:2;16907:3;16848:67;:::i;:::-;16841:74;;16924:93;17013:3;16924:93;:::i;:::-;17042:2;17037:3;17033:12;17026:19;;16685:366;;;:::o;17057:419::-;17223:4;17261:2;17250:9;17246:18;17238:26;;17310:9;17304:4;17300:20;17296:1;17285:9;17281:17;17274:47;17338:131;17464:4;17338:131;:::i;:::-;17330:139;;17057:419;;;:::o;17482:163::-;17622:15;17618:1;17610:6;17606:14;17599:39;17482:163;:::o;17651:366::-;17793:3;17814:67;17878:2;17873:3;17814:67;:::i;:::-;17807:74;;17890:93;17979:3;17890:93;:::i;:::-;18008:2;18003:3;17999:12;17992:19;;17651:366;;;:::o;18023:419::-;18189:4;18227:2;18216:9;18212:18;18204:26;;18276:9;18270:4;18266:20;18262:1;18251:9;18247:17;18240:47;18304:131;18430:4;18304:131;:::i;:::-;18296:139;;18023:419;;;:::o;18448:225::-;18588:34;18584:1;18576:6;18572:14;18565:58;18657:8;18652:2;18644:6;18640:15;18633:33;18448:225;:::o;18679:366::-;18821:3;18842:67;18906:2;18901:3;18842:67;:::i;:::-;18835:74;;18918:93;19007:3;18918:93;:::i;:::-;19036:2;19031:3;19027:12;19020:19;;18679:366;;;:::o;19051:419::-;19217:4;19255:2;19244:9;19240:18;19232:26;;19304:9;19298:4;19294:20;19290:1;19279:9;19275:17;19268:47;19332:131;19458:4;19332:131;:::i;:::-;19324:139;;19051:419;;;:::o;19476:169::-;19616:21;19612:1;19604:6;19600:14;19593:45;19476:169;:::o;19651:366::-;19793:3;19814:67;19878:2;19873:3;19814:67;:::i;:::-;19807:74;;19890:93;19979:3;19890:93;:::i;:::-;20008:2;20003:3;19999:12;19992:19;;19651:366;;;:::o;20023:419::-;20189:4;20227:2;20216:9;20212:18;20204:26;;20276:9;20270:4;20266:20;20262:1;20251:9;20247:17;20240:47;20304:131;20430:4;20304:131;:::i;:::-;20296:139;;20023:419;;;:::o;20448:234::-;20588:34;20584:1;20576:6;20572:14;20565:58;20657:17;20652:2;20644:6;20640:15;20633:42;20448:234;:::o;20688:366::-;20830:3;20851:67;20915:2;20910:3;20851:67;:::i;:::-;20844:74;;20927:93;21016:3;20927:93;:::i;:::-;21045:2;21040:3;21036:12;21029:19;;20688:366;;;:::o;21060:419::-;21226:4;21264:2;21253:9;21249:18;21241:26;;21313:9;21307:4;21303:20;21299:1;21288:9;21284:17;21277:47;21341:131;21467:4;21341:131;:::i;:::-;21333:139;;21060:419;;;:::o;21485:148::-;21587:11;21624:3;21609:18;;21485:148;;;;:::o;21639:141::-;21688:4;21711:3;21703:11;;21734:3;21731:1;21724:14;21768:4;21765:1;21755:18;21747:26;;21639:141;;;:::o;21810:845::-;21913:3;21950:5;21944:12;21979:36;22005:9;21979:36;:::i;:::-;22031:89;22113:6;22108:3;22031:89;:::i;:::-;22024:96;;22151:1;22140:9;22136:17;22167:1;22162:137;;;;22313:1;22308:341;;;;22129:520;;22162:137;22246:4;22242:9;22231;22227:25;22222:3;22215:38;22282:6;22277:3;22273:16;22266:23;;22162:137;;22308:341;22375:38;22407:5;22375:38;:::i;:::-;22435:1;22449:154;22463:6;22460:1;22457:13;22449:154;;;22537:7;22531:14;22527:1;22522:3;22518:11;22511:35;22587:1;22578:7;22574:15;22563:26;;22485:4;22482:1;22478:12;22473:17;;22449:154;;;22632:6;22627:3;22623:16;22616:23;;22315:334;;22129:520;;21917:738;;21810:845;;;;:::o;22661:377::-;22767:3;22795:39;22828:5;22795:39;:::i;:::-;22850:89;22932:6;22927:3;22850:89;:::i;:::-;22843:96;;22948:52;22993:6;22988:3;22981:4;22974:5;22970:16;22948:52;:::i;:::-;23025:6;23020:3;23016:16;23009:23;;22771:267;22661:377;;;;:::o;23044:155::-;23184:7;23180:1;23172:6;23168:14;23161:31;23044:155;:::o;23205:400::-;23365:3;23386:84;23468:1;23463:3;23386:84;:::i;:::-;23379:91;;23479:93;23568:3;23479:93;:::i;:::-;23597:1;23592:3;23588:11;23581:18;;23205:400;;;:::o;23611:695::-;23889:3;23911:92;23999:3;23990:6;23911:92;:::i;:::-;23904:99;;24020:95;24111:3;24102:6;24020:95;:::i;:::-;24013:102;;24132:148;24276:3;24132:148;:::i;:::-;24125:155;;24297:3;24290:10;;23611:695;;;;;:::o;24312:225::-;24452:34;24448:1;24440:6;24436:14;24429:58;24521:8;24516:2;24508:6;24504:15;24497:33;24312:225;:::o;24543:366::-;24685:3;24706:67;24770:2;24765:3;24706:67;:::i;:::-;24699:74;;24782:93;24871:3;24782:93;:::i;:::-;24900:2;24895:3;24891:12;24884:19;;24543:366;;;:::o;24915:419::-;25081:4;25119:2;25108:9;25104:18;25096:26;;25168:9;25162:4;25158:20;25154:1;25143:9;25139:17;25132:47;25196:131;25322:4;25196:131;:::i;:::-;25188:139;;24915:419;;;:::o;25340:98::-;25391:6;25425:5;25419:12;25409:22;;25340:98;;;:::o;25444:168::-;25527:11;25561:6;25556:3;25549:19;25601:4;25596:3;25592:14;25577:29;;25444:168;;;;:::o;25618:360::-;25704:3;25732:38;25764:5;25732:38;:::i;:::-;25786:70;25849:6;25844:3;25786:70;:::i;:::-;25779:77;;25865:52;25910:6;25905:3;25898:4;25891:5;25887:16;25865:52;:::i;:::-;25942:29;25964:6;25942:29;:::i;:::-;25937:3;25933:39;25926:46;;25708:270;25618:360;;;;:::o;25984:640::-;26179:4;26217:3;26206:9;26202:19;26194:27;;26231:71;26299:1;26288:9;26284:17;26275:6;26231:71;:::i;:::-;26312:72;26380:2;26369:9;26365:18;26356:6;26312:72;:::i;:::-;26394;26462:2;26451:9;26447:18;26438:6;26394:72;:::i;:::-;26513:9;26507:4;26503:20;26498:2;26487:9;26483:18;26476:48;26541:76;26612:4;26603:6;26541:76;:::i;:::-;26533:84;;25984:640;;;;;;;:::o;26630:141::-;26686:5;26717:6;26711:13;26702:22;;26733:32;26759:5;26733:32;:::i;:::-;26630:141;;;;:::o;26777:349::-;26846:6;26895:2;26883:9;26874:7;26870:23;26866:32;26863:119;;;26901:79;;:::i;:::-;26863:119;27021:1;27046:63;27101:7;27092:6;27081:9;27077:22;27046:63;:::i;:::-;27036:73;;26992:127;26777:349;;;;:::o;27132:233::-;27171:3;27194:24;27212:5;27194:24;:::i;:::-;27185:33;;27240:66;27233:5;27230:77;27227:103;;;27310:18;;:::i;:::-;27227:103;27357:1;27350:5;27346:13;27339:20;;27132:233;;;:::o;27371:180::-;27419:77;27416:1;27409:88;27516:4;27513:1;27506:15;27540:4;27537:1;27530:15;27557:185;27597:1;27614:20;27632:1;27614:20;:::i;:::-;27609:25;;27648:20;27666:1;27648:20;:::i;:::-;27643:25;;27687:1;27677:35;;27692:18;;:::i;:::-;27677:35;27734:1;27731;27727:9;27722:14;;27557:185;;;;:::o;27748:191::-;27788:4;27808:20;27826:1;27808:20;:::i;:::-;27803:25;;27842:20;27860:1;27842:20;:::i;:::-;27837:25;;27881:1;27878;27875:8;27872:34;;;27886:18;;:::i;:::-;27872:34;27931:1;27928;27924:9;27916:17;;27748:191;;;;:::o;27945:176::-;27977:1;27994:20;28012:1;27994:20;:::i;:::-;27989:25;;28028:20;28046:1;28028:20;:::i;:::-;28023:25;;28067:1;28057:35;;28072:18;;:::i;:::-;28057:35;28113:1;28110;28106:9;28101:14;;27945:176;;;;:::o;28127:180::-;28175:77;28172:1;28165:88;28272:4;28269:1;28262:15;28296:4;28293:1;28286:15

Swarm Source

ipfs://7a546a0ea2f9479e0319c3d7d6c9cf5818a042445463bafa9c8f92f0dca5b44d
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.