ETH Price: $3,506.41 (-0.30%)
Gas: 11 Gwei

Token

IAMROBOT (ROBOT)
 

Overview

Max Total Supply

2,414 ROBOT

Holders

1,113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ROBOT
0x474e6656c8287fcd6cd8f807d620e550b9220a7d
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:
IAMROBOT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 12: nft.sol
//  ____    __    __  __  ____  _____  ____  _____  ____ 
// (_  _)  /__\  (  \/  )(  _ \(  _  )(  _ \(  _  )(_  _)
//  _)(_  /(__)\  )    (  )   / )(_)(  ) _ < )(_)(   )(  
// (____)(__)(__)(_/\/\_)(_)\_)(_____)(____/(_____) (__) 


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * 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,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

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

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

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

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 && !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
        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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (
                    safe &&
                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)
                ) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

/**
 * @dev 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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

    uint256 public maxSupply = 3333;

    uint256 public maxFreeAmount = 3333;

    uint256 public maxFreePerWallet = 2;

    uint256 public maxFreePerTx = 2;

    uint256 public price = 0.005 ether;

    uint256 public maxPerTx = 10;

    string public baseURI;

    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("IAMROBOT", "ROBOT") {
        _safeMint(msg.sender, 5);
    }

    function mint(uint256 amount) external payable {
        uint256 cost = price;
        uint256 num = amount > 0 ? amount : 1;
        bool free = ((totalSupply() + num < maxFreeAmount + 1) &&
            (_mintedFreeAmount[msg.sender] + num <= maxFreePerWallet));
        if (free) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += num;
            require(num < maxFreePerTx + 1, "Max per TX reached.");
        } else {
            require(num < maxPerTx + 1, "Max per TX reached.");
        }
        require(tx.origin == msg.sender, "Yo!!!");
        require(mintEnabled, "Minting is not live yet.");
        require(msg.value >= num * cost, "Please send the exact amount.");
        require(totalSupply() + num < maxSupply + 1, "No more");

        _safeMint(msg.sender, num);
    }

    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 setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTx = _amount;
    }

    function setMaxFreePerTx(uint256 _amount) external onlyOwner {
        maxFreePerTx = _amount;
    }

    function setMaxFreeAmount(uint256 _amount) external onlyOwner {
        maxFreeAmount = _amount;
    }

    function setMaxFreePerWallet(uint256 _amount) external onlyOwner {
        maxFreePerWallet = _amount;
    }

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 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 4 of 12: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 12: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 12 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"amount","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":[{"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":"setMaxFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600955610d05600a556002600b556002600c556611c37937e08000600d55600a600e556000601060006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600881526020017f49414d524f424f540000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f524f424f540000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d792919062000738565b508060039080519060200190620000f092919062000738565b505050600062000105620001bd60201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b7336005620001c560201b60201c565b62000a39565b600033905090565b620001e7828260405180602001604052806000815250620001eb60201b60201c565b5050565b6200020083838360016200020560201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000273576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620002af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002c460008683876200055a60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200053557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620004e75750620004e560008884886200056060201b60201c565b155b156200051f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000462565b5080600081905550506200055360008683876200070f60201b60201c565b5050505050565b50505050565b60006200058e8473ffffffffffffffffffffffffffffffffffffffff166200071560201b62001f5b1760201c565b1562000702578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005c0620001bd60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005e4949392919062000894565b602060405180830381600087803b158015620005ff57600080fd5b505af19250505080156200063357506040513d601f19601f82011682018060405250810190620006309190620007ff565b60015b620006b1573d806000811462000666576040519150601f19603f3d011682016040523d82523d6000602084013e6200066b565b606091505b50600081511415620006a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000707565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200074690620009a4565b90600052602060002090601f0160209004810192826200076a5760008555620007b6565b82601f106200078557805160ff1916838001178555620007b6565b82800160010185558215620007b6579182015b82811115620007b557825182559160200191906001019062000798565b5b509050620007c59190620007c9565b5090565b5b80821115620007e4576000816000905550600101620007ca565b5090565b600081519050620007f98162000a1f565b92915050565b60006020828403121562000818576200081762000a09565b5b60006200082884828501620007e8565b91505092915050565b6200083c8162000904565b82525050565b60006200084f82620008e8565b6200085b8185620008f3565b93506200086d8185602086016200096e565b620008788162000a0e565b840191505092915050565b6200088e8162000964565b82525050565b6000608082019050620008ab600083018762000831565b620008ba602083018662000831565b620008c9604083018562000883565b8181036060830152620008dd818462000842565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620009118262000944565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200098e57808201518184015260208101905062000971565b838111156200099e576000848401525b50505050565b60006002820490506001821680620009bd57607f821691505b60208210811415620009d457620009d3620009da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000a2a8162000918565b811462000a3657600080fd5b50565b613f7d8062000a496000396000f3fe60806040526004361061020f5760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610766578063e985e9c514610791578063f2fde38b146107ce578063f892c6e2146107f7578063f968adbe146108225761020f565b8063b88d4fde146106ac578063c6f6f216146106d5578063c87b56dd146106fe578063d12397301461073b5761020f565b806395d89b41116100e757806395d89b41146105e6578063a035b1fe14610611578063a0712d681461063c578063a22cb46514610658578063a7027357146106815761020f565b80637ba5e621146105505780637dc949b2146105675780638da5cb5b1461059257806391b7f5ed146105bd5761020f565b806340f070a81161019b5780636352211e1161016a5780636352211e1461046b5780636c0360eb146104a85780636d7c4a4b146104d357806370a08231146104fc578063715018a6146105395761020f565b806340f070a8146103b357806342842e0e146103dc5780634f6ccce71461040557806355f804b3146104425761020f565b80630c23bb3f116101e25780630c23bb3f146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f5780633ccfd60b1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061329d565b61084d565b60405161024891906136e8565b60405180910390f35b34801561025d57600080fd5b50610266610997565b6040516102739190613703565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613340565b610a29565b6040516102b09190613681565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061325d565b610aa5565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613340565b610bb0565b005b34801561031757600080fd5b50610320610c36565b60405161032d9190613845565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613147565b610c44565b005b34801561036b57600080fd5b506103866004803603810190610381919061325d565b610c54565b6040516103939190613845565b60405180910390f35b3480156103a857600080fd5b506103b1610e2d565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613340565b610f58565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613147565b610fde565b005b34801561041157600080fd5b5061042c60048036038101906104279190613340565b610ffe565b6040516104399190613845565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906132f7565b611143565b005b34801561047757600080fd5b50610492600480360381019061048d9190613340565b6111d9565b60405161049f9190613681565b60405180910390f35b3480156104b457600080fd5b506104bd6111ef565b6040516104ca9190613703565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613340565b61127d565b005b34801561050857600080fd5b50610523600480360381019061051e91906130da565b611303565b6040516105309190613845565b60405180910390f35b34801561054557600080fd5b5061054e6113d3565b005b34801561055c57600080fd5b50610565611510565b005b34801561057357600080fd5b5061057c6115b8565b6040516105899190613845565b60405180910390f35b34801561059e57600080fd5b506105a76115be565b6040516105b49190613681565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613340565b6115e8565b005b3480156105f257600080fd5b506105fb61166e565b6040516106089190613703565b60405180910390f35b34801561061d57600080fd5b50610626611700565b6040516106339190613845565b60405180910390f35b61065660048036038101906106519190613340565b611706565b005b34801561066457600080fd5b5061067f600480360381019061067a919061321d565b611a23565b005b34801561068d57600080fd5b50610696611b9b565b6040516106a39190613845565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061319a565b611ba1565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613340565b611bf4565b005b34801561070a57600080fd5b5061072560048036038101906107209190613340565b611c7a565b6040516107329190613703565b60405180910390f35b34801561074757600080fd5b50610750611cf6565b60405161075d91906136e8565b60405180910390f35b34801561077257600080fd5b5061077b611d09565b6040516107889190613845565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613107565b611d0f565b6040516107c591906136e8565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906130da565b611da3565b005b34801561080357600080fd5b5061080c611f4f565b6040516108199190613845565b60405180910390f35b34801561082e57600080fd5b50610837611f55565b6040516108449190613845565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611f7e565b5b9050919050565b6060600280546109a690613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613b15565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611fe8565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab0826111d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b37612022565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b695750610b6781610b62612022565b611d0f565b155b15610ba0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bab83838361202a565b505050565b610bb8612022565b73ffffffffffffffffffffffffffffffffffffffff16610bd66115be565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613765565b60405180910390fd5b80600a8190555050565b600060015460005403905090565b610c4f8383836120dc565b505050565b6000610c5f83611303565b8210610c97576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e21576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d805750610e14565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e125786841415610e09578195505050505050610e27565b83806001019450505b505b8080600101915050610ca3565b50600080fd5b92915050565b610e35612022565b73ffffffffffffffffffffffffffffffffffffffff16610e536115be565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613765565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ecf9061366c565b60006040518083038185875af1925050503d8060008114610f0c576040519150601f19603f3d011682016040523d82523d6000602084013e610f11565b606091505b5050905080610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906137e5565b60405180910390fd5b50565b610f60612022565b73ffffffffffffffffffffffffffffffffffffffff16610f7e6115be565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613765565b60405180910390fd5b80600c8190555050565b610ff983838360405180602001604052806000815250611ba1565b505050565b60008060005490506000805b8281101561110b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110fd57858314156110f4578194505050505061113e565b82806001019350505b50808060010191505061100a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61114b612022565b73ffffffffffffffffffffffffffffffffffffffff166111696115be565b73ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613765565b60405180910390fd5b80600f90805190602001906111d5929190612eab565b5050565b60006111e4826125cd565b600001519050919050565b600f80546111fc90613b15565b80601f016020809104026020016040519081016040528092919081815260200182805461122890613b15565b80156112755780601f1061124a57610100808354040283529160200191611275565b820191906000526020600020905b81548152906001019060200180831161125857829003601f168201915b505050505081565b611285612022565b73ffffffffffffffffffffffffffffffffffffffff166112a36115be565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613765565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113db612022565b73ffffffffffffffffffffffffffffffffffffffff166113f96115be565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611518612022565b73ffffffffffffffffffffffffffffffffffffffff166115366115be565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613765565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115f0612022565b73ffffffffffffffffffffffffffffffffffffffff1661160e6115be565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613765565b60405180910390fd5b80600d8190555050565b60606003805461167d90613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990613b15565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b5050505050905090565b600d5481565b6000600d549050600080831161171d57600161171f565b825b905060006001600a54611732919061394a565b8261173b610c36565b611745919061394a565b10801561179e5750600b5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179b919061394a565b11155b90508015611855576000925081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f9919061394a565b925050819055506001600c5461180f919061394a565b8210611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790613805565b60405180910390fd5b6118a6565b6001600e54611864919061394a565b82106118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613805565b60405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613825565b60405180910390fd5b601060009054906101000a900460ff16611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90613785565b60405180910390fd5b828261196f91906139d1565b3410156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906137c5565b60405180910390fd5b60016009546119c0919061394a565b826119c9610c36565b6119d3919061394a565b10611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613725565b60405180910390fd5b611a1d3383612849565b50505050565b611a2b612022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a9d612022565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4a612022565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8f91906136e8565b60405180910390a35050565b600b5481565b611bac8484846120dc565b611bb884848484612867565b611bee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bfc612022565b73ffffffffffffffffffffffffffffffffffffffff16611c1a6115be565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613765565b60405180910390fd5b80600e8190555050565b6060611c8582611fe8565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906137a5565b60405180910390fd5b600f611ccf836129f5565b604051602001611ce092919061363d565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dab612022565b73ffffffffffffffffffffffffffffffffffffffff16611dc96115be565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690613745565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600e5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561201b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e7826125cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210e612022565b73ffffffffffffffffffffffffffffffffffffffff1614806121415750612140826000015161213b612022565b611d0f565b5b80612186575061214f612022565b73ffffffffffffffffffffffffffffffffffffffff1661216e84610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121bf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612228576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561228f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229c8585856001612b56565b6122ac600084846000015161202a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561255d5760005481101561255c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c68585856001612b5c565b5050505050565b6125d5612f31565b6000829050600054811015612812576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161281057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126f4578092505050612844565b5b60011561280f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461280a578092505050612844565b6126f5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612863828260405180602001604052806000815250612b62565b5050565b60006128888473ffffffffffffffffffffffffffffffffffffffff16611f5b565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b1612022565b8786866040518563ffffffff1660e01b81526004016128d3949392919061369c565b602060405180830381600087803b1580156128ed57600080fd5b505af192505050801561291e57506040513d601f19601f8201168201806040525081019061291b91906132ca565b60015b612998573d806000811461294e576040519150601f19603f3d011682016040523d82523d6000602084013e612953565b606091505b50600081511415612990576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ed565b600190505b949350505050565b60606000821415612a3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b51565b600082905060005b60008214612a6f578080612a5890613b78565b915050600a82612a6891906139a0565b9150612a45565b60008167ffffffffffffffff811115612a8b57612a8a613cae565b5b6040519080825280601f01601f191660200182016040528015612abd5781602001600182028036833780820191505090505b5090505b60008514612b4a57600182612ad69190613a2b565b9150600a85612ae59190613bc1565b6030612af1919061394a565b60f81b818381518110612b0757612b06613c7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4391906139a0565b9450612ac1565b8093505050505b919050565b50505050565b50505050565b612b6f8383836001612b74565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612be1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c1c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c296000868387612b56565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e8e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e425750612e406000888488612867565b155b15612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dc7565b508060008190555050612ea46000868387612b5c565b5050505050565b828054612eb790613b15565b90600052602060002090601f016020900481019282612ed95760008555612f20565b82601f10612ef257805160ff1916838001178555612f20565b82800160010185558215612f20579182015b82811115612f1f578251825591602001919060010190612f04565b5b509050612f2d9190612f74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8d576000816000905550600101612f75565b5090565b6000612fa4612f9f84613885565b613860565b905082815260208101848484011115612fc057612fbf613ce2565b5b612fcb848285613ad3565b509392505050565b6000612fe6612fe1846138b6565b613860565b90508281526020810184848401111561300257613001613ce2565b5b61300d848285613ad3565b509392505050565b60008135905061302481613eeb565b92915050565b60008135905061303981613f02565b92915050565b60008135905061304e81613f19565b92915050565b60008151905061306381613f19565b92915050565b600082601f83011261307e5761307d613cdd565b5b813561308e848260208601612f91565b91505092915050565b600082601f8301126130ac576130ab613cdd565b5b81356130bc848260208601612fd3565b91505092915050565b6000813590506130d481613f30565b92915050565b6000602082840312156130f0576130ef613cec565b5b60006130fe84828501613015565b91505092915050565b6000806040838503121561311e5761311d613cec565b5b600061312c85828601613015565b925050602061313d85828601613015565b9150509250929050565b6000806000606084860312156131605761315f613cec565b5b600061316e86828701613015565b935050602061317f86828701613015565b9250506040613190868287016130c5565b9150509250925092565b600080600080608085870312156131b4576131b3613cec565b5b60006131c287828801613015565b94505060206131d387828801613015565b93505060406131e4878288016130c5565b925050606085013567ffffffffffffffff81111561320557613204613ce7565b5b61321187828801613069565b91505092959194509250565b6000806040838503121561323457613233613cec565b5b600061324285828601613015565b92505060206132538582860161302a565b9150509250929050565b6000806040838503121561327457613273613cec565b5b600061328285828601613015565b9250506020613293858286016130c5565b9150509250929050565b6000602082840312156132b3576132b2613cec565b5b60006132c18482850161303f565b91505092915050565b6000602082840312156132e0576132df613cec565b5b60006132ee84828501613054565b91505092915050565b60006020828403121561330d5761330c613cec565b5b600082013567ffffffffffffffff81111561332b5761332a613ce7565b5b61333784828501613097565b91505092915050565b60006020828403121561335657613355613cec565b5b6000613364848285016130c5565b91505092915050565b61337681613a5f565b82525050565b61338581613a71565b82525050565b6000613396826138fc565b6133a08185613912565b93506133b0818560208601613ae2565b6133b981613cf1565b840191505092915050565b60006133cf82613907565b6133d9818561392e565b93506133e9818560208601613ae2565b6133f281613cf1565b840191505092915050565b600061340882613907565b613412818561393f565b9350613422818560208601613ae2565b80840191505092915050565b6000815461343b81613b15565b613445818661393f565b945060018216600081146134605760018114613471576134a4565b60ff198316865281860193506134a4565b61347a856138e7565b60005b8381101561349c5781548189015260018201915060208101905061347d565b838801955050505b50505092915050565b60006134ba60078361392e565b91506134c582613d02565b602082019050919050565b60006134dd60268361392e565b91506134e882613d2b565b604082019050919050565b600061350060058361393f565b915061350b82613d7a565b600582019050919050565b600061352360208361392e565b915061352e82613da3565b602082019050919050565b600061354660188361392e565b915061355182613dcc565b602082019050919050565b6000613569602f8361392e565b915061357482613df5565b604082019050919050565b600061358c601d8361392e565b915061359782613e44565b602082019050919050565b60006135af600083613923565b91506135ba82613e6d565b600082019050919050565b60006135d260108361392e565b91506135dd82613e70565b602082019050919050565b60006135f560138361392e565b915061360082613e99565b602082019050919050565b600061361860058361392e565b915061362382613ec2565b602082019050919050565b61363781613ac9565b82525050565b6000613649828561342e565b915061365582846133fd565b9150613660826134f3565b91508190509392505050565b6000613677826135a2565b9150819050919050565b6000602082019050613696600083018461336d565b92915050565b60006080820190506136b1600083018761336d565b6136be602083018661336d565b6136cb604083018561362e565b81810360608301526136dd818461338b565b905095945050505050565b60006020820190506136fd600083018461337c565b92915050565b6000602082019050818103600083015261371d81846133c4565b905092915050565b6000602082019050818103600083015261373e816134ad565b9050919050565b6000602082019050818103600083015261375e816134d0565b9050919050565b6000602082019050818103600083015261377e81613516565b9050919050565b6000602082019050818103600083015261379e81613539565b9050919050565b600060208201905081810360008301526137be8161355c565b9050919050565b600060208201905081810360008301526137de8161357f565b9050919050565b600060208201905081810360008301526137fe816135c5565b9050919050565b6000602082019050818103600083015261381e816135e8565b9050919050565b6000602082019050818103600083015261383e8161360b565b9050919050565b600060208201905061385a600083018461362e565b92915050565b600061386a61387b565b90506138768282613b47565b919050565b6000604051905090565b600067ffffffffffffffff8211156138a05761389f613cae565b5b6138a982613cf1565b9050602081019050919050565b600067ffffffffffffffff8211156138d1576138d0613cae565b5b6138da82613cf1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395582613ac9565b915061396083613ac9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399557613994613bf2565b5b828201905092915050565b60006139ab82613ac9565b91506139b683613ac9565b9250826139c6576139c5613c21565b5b828204905092915050565b60006139dc82613ac9565b91506139e783613ac9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2057613a1f613bf2565b5b828202905092915050565b6000613a3682613ac9565b9150613a4183613ac9565b925082821015613a5457613a53613bf2565b5b828203905092915050565b6000613a6a82613aa9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b00578082015181840152602081019050613ae5565b83811115613b0f576000848401525b50505050565b60006002820490506001821680613b2d57607f821691505b60208210811415613b4157613b40613c50565b5b50919050565b613b5082613cf1565b810181811067ffffffffffffffff82111715613b6f57613b6e613cae565b5b80604052505050565b6000613b8382613ac9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb657613bb5613bf2565b5b600182019050919050565b6000613bcc82613ac9565b9150613bd783613ac9565b925082613be757613be6613c21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f596f212121000000000000000000000000000000000000000000000000000000600082015250565b613ef481613a5f565b8114613eff57600080fd5b50565b613f0b81613a71565b8114613f1657600080fd5b50565b613f2281613a7d565b8114613f2d57600080fd5b50565b613f3981613ac9565b8114613f4457600080fd5b5056fea26469706673582212206e316701ba0c68c2eba7b75d40864d348bb35e7e3df013b4af0393f7b60f536464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637ba5e62111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610766578063e985e9c514610791578063f2fde38b146107ce578063f892c6e2146107f7578063f968adbe146108225761020f565b8063b88d4fde146106ac578063c6f6f216146106d5578063c87b56dd146106fe578063d12397301461073b5761020f565b806395d89b41116100e757806395d89b41146105e6578063a035b1fe14610611578063a0712d681461063c578063a22cb46514610658578063a7027357146106815761020f565b80637ba5e621146105505780637dc949b2146105675780638da5cb5b1461059257806391b7f5ed146105bd5761020f565b806340f070a81161019b5780636352211e1161016a5780636352211e1461046b5780636c0360eb146104a85780636d7c4a4b146104d357806370a08231146104fc578063715018a6146105395761020f565b806340f070a8146103b357806342842e0e146103dc5780634f6ccce71461040557806355f804b3146104425761020f565b80630c23bb3f116101e25780630c23bb3f146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f5780633ccfd60b1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061329d565b61084d565b60405161024891906136e8565b60405180910390f35b34801561025d57600080fd5b50610266610997565b6040516102739190613703565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613340565b610a29565b6040516102b09190613681565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061325d565b610aa5565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613340565b610bb0565b005b34801561031757600080fd5b50610320610c36565b60405161032d9190613845565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613147565b610c44565b005b34801561036b57600080fd5b506103866004803603810190610381919061325d565b610c54565b6040516103939190613845565b60405180910390f35b3480156103a857600080fd5b506103b1610e2d565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613340565b610f58565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613147565b610fde565b005b34801561041157600080fd5b5061042c60048036038101906104279190613340565b610ffe565b6040516104399190613845565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906132f7565b611143565b005b34801561047757600080fd5b50610492600480360381019061048d9190613340565b6111d9565b60405161049f9190613681565b60405180910390f35b3480156104b457600080fd5b506104bd6111ef565b6040516104ca9190613703565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613340565b61127d565b005b34801561050857600080fd5b50610523600480360381019061051e91906130da565b611303565b6040516105309190613845565b60405180910390f35b34801561054557600080fd5b5061054e6113d3565b005b34801561055c57600080fd5b50610565611510565b005b34801561057357600080fd5b5061057c6115b8565b6040516105899190613845565b60405180910390f35b34801561059e57600080fd5b506105a76115be565b6040516105b49190613681565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613340565b6115e8565b005b3480156105f257600080fd5b506105fb61166e565b6040516106089190613703565b60405180910390f35b34801561061d57600080fd5b50610626611700565b6040516106339190613845565b60405180910390f35b61065660048036038101906106519190613340565b611706565b005b34801561066457600080fd5b5061067f600480360381019061067a919061321d565b611a23565b005b34801561068d57600080fd5b50610696611b9b565b6040516106a39190613845565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce919061319a565b611ba1565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613340565b611bf4565b005b34801561070a57600080fd5b5061072560048036038101906107209190613340565b611c7a565b6040516107329190613703565b60405180910390f35b34801561074757600080fd5b50610750611cf6565b60405161075d91906136e8565b60405180910390f35b34801561077257600080fd5b5061077b611d09565b6040516107889190613845565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190613107565b611d0f565b6040516107c591906136e8565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906130da565b611da3565b005b34801561080357600080fd5b5061080c611f4f565b6040516108199190613845565b60405180910390f35b34801561082e57600080fd5b50610837611f55565b6040516108449190613845565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611f7e565b5b9050919050565b6060600280546109a690613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613b15565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611fe8565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab0826111d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b37612022565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b695750610b6781610b62612022565b611d0f565b155b15610ba0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bab83838361202a565b505050565b610bb8612022565b73ffffffffffffffffffffffffffffffffffffffff16610bd66115be565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613765565b60405180910390fd5b80600a8190555050565b600060015460005403905090565b610c4f8383836120dc565b505050565b6000610c5f83611303565b8210610c97576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008060005b83811015610e21576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d805750610e14565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dc057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e125786841415610e09578195505050505050610e27565b83806001019450505b505b8080600101915050610ca3565b50600080fd5b92915050565b610e35612022565b73ffffffffffffffffffffffffffffffffffffffff16610e536115be565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090613765565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ecf9061366c565b60006040518083038185875af1925050503d8060008114610f0c576040519150601f19603f3d011682016040523d82523d6000602084013e610f11565b606091505b5050905080610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906137e5565b60405180910390fd5b50565b610f60612022565b73ffffffffffffffffffffffffffffffffffffffff16610f7e6115be565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613765565b60405180910390fd5b80600c8190555050565b610ff983838360405180602001604052806000815250611ba1565b505050565b60008060005490506000805b8281101561110b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110fd57858314156110f4578194505050505061113e565b82806001019350505b50808060010191505061100a565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61114b612022565b73ffffffffffffffffffffffffffffffffffffffff166111696115be565b73ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613765565b60405180910390fd5b80600f90805190602001906111d5929190612eab565b5050565b60006111e4826125cd565b600001519050919050565b600f80546111fc90613b15565b80601f016020809104026020016040519081016040528092919081815260200182805461122890613b15565b80156112755780601f1061124a57610100808354040283529160200191611275565b820191906000526020600020905b81548152906001019060200180831161125857829003601f168201915b505050505081565b611285612022565b73ffffffffffffffffffffffffffffffffffffffff166112a36115be565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613765565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113db612022565b73ffffffffffffffffffffffffffffffffffffffff166113f96115be565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611518612022565b73ffffffffffffffffffffffffffffffffffffffff166115366115be565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613765565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115f0612022565b73ffffffffffffffffffffffffffffffffffffffff1661160e6115be565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613765565b60405180910390fd5b80600d8190555050565b60606003805461167d90613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990613b15565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b5050505050905090565b600d5481565b6000600d549050600080831161171d57600161171f565b825b905060006001600a54611732919061394a565b8261173b610c36565b611745919061394a565b10801561179e5750600b5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179b919061394a565b11155b90508015611855576000925081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f9919061394a565b925050819055506001600c5461180f919061394a565b8210611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790613805565b60405180910390fd5b6118a6565b6001600e54611864919061394a565b82106118a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189c90613805565b60405180910390fd5b5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b90613825565b60405180910390fd5b601060009054906101000a900460ff16611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90613785565b60405180910390fd5b828261196f91906139d1565b3410156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a8906137c5565b60405180910390fd5b60016009546119c0919061394a565b826119c9610c36565b6119d3919061394a565b10611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613725565b60405180910390fd5b611a1d3383612849565b50505050565b611a2b612022565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a9d612022565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b4a612022565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b8f91906136e8565b60405180910390a35050565b600b5481565b611bac8484846120dc565b611bb884848484612867565b611bee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611bfc612022565b73ffffffffffffffffffffffffffffffffffffffff16611c1a6115be565b73ffffffffffffffffffffffffffffffffffffffff1614611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613765565b60405180910390fd5b80600e8190555050565b6060611c8582611fe8565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906137a5565b60405180910390fd5b600f611ccf836129f5565b604051602001611ce092919061363d565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dab612022565b73ffffffffffffffffffffffffffffffffffffffff16611dc96115be565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690613745565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b600e5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561201b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120e7826125cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661210e612022565b73ffffffffffffffffffffffffffffffffffffffff1614806121415750612140826000015161213b612022565b611d0f565b5b80612186575061214f612022565b73ffffffffffffffffffffffffffffffffffffffff1661216e84610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121bf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612228576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561228f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229c8585856001612b56565b6122ac600084846000015161202a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561255d5760005481101561255c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c68585856001612b5c565b5050505050565b6125d5612f31565b6000829050600054811015612812576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161281057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126f4578092505050612844565b5b60011561280f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461280a578092505050612844565b6126f5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612863828260405180602001604052806000815250612b62565b5050565b60006128888473ffffffffffffffffffffffffffffffffffffffff16611f5b565b156129e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b1612022565b8786866040518563ffffffff1660e01b81526004016128d3949392919061369c565b602060405180830381600087803b1580156128ed57600080fd5b505af192505050801561291e57506040513d601f19601f8201168201806040525081019061291b91906132ca565b60015b612998573d806000811461294e576040519150601f19603f3d011682016040523d82523d6000602084013e612953565b606091505b50600081511415612990576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ed565b600190505b949350505050565b60606000821415612a3d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b51565b600082905060005b60008214612a6f578080612a5890613b78565b915050600a82612a6891906139a0565b9150612a45565b60008167ffffffffffffffff811115612a8b57612a8a613cae565b5b6040519080825280601f01601f191660200182016040528015612abd5781602001600182028036833780820191505090505b5090505b60008514612b4a57600182612ad69190613a2b565b9150600a85612ae59190613bc1565b6030612af1919061394a565b60f81b818381518110612b0757612b06613c7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4391906139a0565b9450612ac1565b8093505050505b919050565b50505050565b50505050565b612b6f8383836001612b74565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612be1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c1c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c296000868387612b56565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612e8e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612e425750612e406000888488612867565b155b15612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612dc7565b508060008190555050612ea46000868387612b5c565b5050505050565b828054612eb790613b15565b90600052602060002090601f016020900481019282612ed95760008555612f20565b82601f10612ef257805160ff1916838001178555612f20565b82800160010185558215612f20579182015b82811115612f1f578251825591602001919060010190612f04565b5b509050612f2d9190612f74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f8d576000816000905550600101612f75565b5090565b6000612fa4612f9f84613885565b613860565b905082815260208101848484011115612fc057612fbf613ce2565b5b612fcb848285613ad3565b509392505050565b6000612fe6612fe1846138b6565b613860565b90508281526020810184848401111561300257613001613ce2565b5b61300d848285613ad3565b509392505050565b60008135905061302481613eeb565b92915050565b60008135905061303981613f02565b92915050565b60008135905061304e81613f19565b92915050565b60008151905061306381613f19565b92915050565b600082601f83011261307e5761307d613cdd565b5b813561308e848260208601612f91565b91505092915050565b600082601f8301126130ac576130ab613cdd565b5b81356130bc848260208601612fd3565b91505092915050565b6000813590506130d481613f30565b92915050565b6000602082840312156130f0576130ef613cec565b5b60006130fe84828501613015565b91505092915050565b6000806040838503121561311e5761311d613cec565b5b600061312c85828601613015565b925050602061313d85828601613015565b9150509250929050565b6000806000606084860312156131605761315f613cec565b5b600061316e86828701613015565b935050602061317f86828701613015565b9250506040613190868287016130c5565b9150509250925092565b600080600080608085870312156131b4576131b3613cec565b5b60006131c287828801613015565b94505060206131d387828801613015565b93505060406131e4878288016130c5565b925050606085013567ffffffffffffffff81111561320557613204613ce7565b5b61321187828801613069565b91505092959194509250565b6000806040838503121561323457613233613cec565b5b600061324285828601613015565b92505060206132538582860161302a565b9150509250929050565b6000806040838503121561327457613273613cec565b5b600061328285828601613015565b9250506020613293858286016130c5565b9150509250929050565b6000602082840312156132b3576132b2613cec565b5b60006132c18482850161303f565b91505092915050565b6000602082840312156132e0576132df613cec565b5b60006132ee84828501613054565b91505092915050565b60006020828403121561330d5761330c613cec565b5b600082013567ffffffffffffffff81111561332b5761332a613ce7565b5b61333784828501613097565b91505092915050565b60006020828403121561335657613355613cec565b5b6000613364848285016130c5565b91505092915050565b61337681613a5f565b82525050565b61338581613a71565b82525050565b6000613396826138fc565b6133a08185613912565b93506133b0818560208601613ae2565b6133b981613cf1565b840191505092915050565b60006133cf82613907565b6133d9818561392e565b93506133e9818560208601613ae2565b6133f281613cf1565b840191505092915050565b600061340882613907565b613412818561393f565b9350613422818560208601613ae2565b80840191505092915050565b6000815461343b81613b15565b613445818661393f565b945060018216600081146134605760018114613471576134a4565b60ff198316865281860193506134a4565b61347a856138e7565b60005b8381101561349c5781548189015260018201915060208101905061347d565b838801955050505b50505092915050565b60006134ba60078361392e565b91506134c582613d02565b602082019050919050565b60006134dd60268361392e565b91506134e882613d2b565b604082019050919050565b600061350060058361393f565b915061350b82613d7a565b600582019050919050565b600061352360208361392e565b915061352e82613da3565b602082019050919050565b600061354660188361392e565b915061355182613dcc565b602082019050919050565b6000613569602f8361392e565b915061357482613df5565b604082019050919050565b600061358c601d8361392e565b915061359782613e44565b602082019050919050565b60006135af600083613923565b91506135ba82613e6d565b600082019050919050565b60006135d260108361392e565b91506135dd82613e70565b602082019050919050565b60006135f560138361392e565b915061360082613e99565b602082019050919050565b600061361860058361392e565b915061362382613ec2565b602082019050919050565b61363781613ac9565b82525050565b6000613649828561342e565b915061365582846133fd565b9150613660826134f3565b91508190509392505050565b6000613677826135a2565b9150819050919050565b6000602082019050613696600083018461336d565b92915050565b60006080820190506136b1600083018761336d565b6136be602083018661336d565b6136cb604083018561362e565b81810360608301526136dd818461338b565b905095945050505050565b60006020820190506136fd600083018461337c565b92915050565b6000602082019050818103600083015261371d81846133c4565b905092915050565b6000602082019050818103600083015261373e816134ad565b9050919050565b6000602082019050818103600083015261375e816134d0565b9050919050565b6000602082019050818103600083015261377e81613516565b9050919050565b6000602082019050818103600083015261379e81613539565b9050919050565b600060208201905081810360008301526137be8161355c565b9050919050565b600060208201905081810360008301526137de8161357f565b9050919050565b600060208201905081810360008301526137fe816135c5565b9050919050565b6000602082019050818103600083015261381e816135e8565b9050919050565b6000602082019050818103600083015261383e8161360b565b9050919050565b600060208201905061385a600083018461362e565b92915050565b600061386a61387b565b90506138768282613b47565b919050565b6000604051905090565b600067ffffffffffffffff8211156138a05761389f613cae565b5b6138a982613cf1565b9050602081019050919050565b600067ffffffffffffffff8211156138d1576138d0613cae565b5b6138da82613cf1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395582613ac9565b915061396083613ac9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399557613994613bf2565b5b828201905092915050565b60006139ab82613ac9565b91506139b683613ac9565b9250826139c6576139c5613c21565b5b828204905092915050565b60006139dc82613ac9565b91506139e783613ac9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a2057613a1f613bf2565b5b828202905092915050565b6000613a3682613ac9565b9150613a4183613ac9565b925082821015613a5457613a53613bf2565b5b828203905092915050565b6000613a6a82613aa9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b00578082015181840152602081019050613ae5565b83811115613b0f576000848401525b50505050565b60006002820490506001821680613b2d57607f821691505b60208210811415613b4157613b40613c50565b5b50919050565b613b5082613cf1565b810181811067ffffffffffffffff82111715613b6f57613b6e613cae565b5b80604052505050565b6000613b8382613ac9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb657613bb5613bf2565b5b600182019050919050565b6000613bcc82613ac9565b9150613bd783613ac9565b925082613be757613be6613c21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f596f212121000000000000000000000000000000000000000000000000000000600082015250565b613ef481613a5f565b8114613eff57600080fd5b50565b613f0b81613a71565b8114613f1657600080fd5b50565b613f2281613a7d565b8114613f2d57600080fd5b50565b613f3981613ac9565b8114613f4457600080fd5b5056fea26469706673582212206e316701ba0c68c2eba7b75d40864d348bb35e7e3df013b4af0393f7b60f536464736f6c63430008070033

Deployed Bytecode Sourcemap

24940:2701:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6249:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8862:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10406:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9983:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27128:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3481:278;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5069:1113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27438:201;;;;;;;;;;;;;:::i;:::-;;27022:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11567:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4045:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26736:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8678:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25252:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27236:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6718:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24368:145;;;;;;;;;;;;;:::i;:::-;;27350:82;;;;;;;;;;;;;:::i;:::-;;25138:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23736:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26828:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9024:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25176:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25468:806;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10709:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25096:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11812:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26924:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26392:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25280:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25016;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11069:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24662:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25054:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25217:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:410;6391:4;6445:25;6430:40;;;:11;:40;;;;:104;;;;6501:33;6486:48;;;:11;:48;;;;6430:104;:170;;;;6565:35;6550:50;;;:11;:50;;;;6430:170;:222;;;;6616:36;6640:11;6616:23;:36::i;:::-;6430:222;6411:241;;6249:410;;;:::o;8862:98::-;8916:13;8948:5;8941:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862:98;:::o;10406:236::-;10506:7;10534:16;10542:7;10534;:16::i;:::-;10529:64;;10559:34;;;;;;;;;;;;;;10529:64;10611:15;:24;10627:7;10611:24;;;;;;;;;;;;;;;;;;;;;10604:31;;10406:236;;;:::o;9983:362::-;10055:13;10071:24;10087:7;10071:15;:24::i;:::-;10055:40;;10115:5;10109:11;;:2;:11;;;10105:48;;;10129:24;;;;;;;;;;;;;;10105:48;10184:5;10168:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10194:37;10211:5;10218:12;:10;:12::i;:::-;10194:16;:37::i;:::-;10193:38;10168:63;10164:136;;;10254:35;;;;;;;;;;;;;;10164:136;10310:28;10319:2;10323:7;10332:5;10310:8;:28::i;:::-;10045:300;9983:362;;:::o;27128:102::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27216:7:::1;27200:13;:23;;;;27128:102:::0;:::o;3481:278::-;3542:7;3730:12;;3714:13;;:28;3707:35;;3481:278;:::o;11337:164::-;11466:28;11476:4;11482:2;11486:7;11466:9;:28::i;:::-;11337:164;;;:::o;5069:1113::-;5190:7;5226:16;5236:5;5226:9;:16::i;:::-;5217:5;:25;5213:61;;5251:23;;;;;;;;;;;;;;5213:61;5284:22;5309:13;;5284:38;;5332:19;5361:25;5557:9;5552:543;5572:14;5568:1;:18;5552:543;;;5611:31;5645:11;:14;5657:1;5645:14;;;;;;;;;;;5611:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5681:9;:16;;;5677:71;;;5721:8;;;5677:71;5795:1;5769:28;;:9;:14;;;:28;;;5765:109;;5841:9;:14;;;5821:34;;5765:109;5916:5;5895:26;;:17;:26;;;5891:190;;;5964:5;5949:11;:20;5945:83;;;6004:1;5997:8;;;;;;;;;5945:83;6049:13;;;;;;;5891:190;5593:502;5552:543;5588:3;;;;;;;5552:543;;;;6167:8;;;5069:1113;;;;;:::o;27438:201::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27488:12:::1;27514:10;27506:24;;27551:21;27506:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27487:99;;;27604:7;27596:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;27477:162;27438:201::o:0;27022:100::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27108:7:::1;27093:12;:22;;;;27022:100:::0;:::o;11567:179::-;11700:39;11717:4;11723:2;11727:7;11700:39;;;;;;;;;;;;:16;:39::i;:::-;11567:179;;;:::o;4045:731::-;4144:7;4167:22;4192:13;;4167:38;;4215:19;4405:9;4400:320;4420:14;4416:1;:18;4400:320;;;4459:31;4493:11;:14;4505:1;4493:14;;;;;;;;;;;4459:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4530:9;:16;;;4525:181;;4589:5;4574:11;:20;4570:83;;;4629:1;4622:8;;;;;;;;4570:83;4674:13;;;;;;;4525:181;4441:279;4436:3;;;;;;;4400:320;;;;4746:23;;;;;;;;;;;;;;4045:731;;;;:::o;26736:86::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26812:3:::1;26802:7;:13;;;;;;;;;;;;:::i;:::-;;26736:86:::0;:::o;8678:122::-;8742:7;8768:20;8780:7;8768:11;:20::i;:::-;:25;;;8761:32;;8678:122;;;:::o;25252:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27236:108::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27330:7:::1;27311:16;:26;;;;27236:108:::0;:::o;6718:203::-;6782:7;6822:1;6805:19;;:5;:19;;;6801:60;;;6833:28;;;;;;;;;;;;;;6801:60;6886:12;:19;6899:5;6886:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6878:36;;6871:43;;6718:203;;;:::o;24368:145::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24474:1:::1;24437:40;;24458:6;;;;;;;;;;;24437:40;;;;;;;;;;;;24504:1;24487:6;;:19;;;;;;;;;;;;;;;;;;24368:145::o:0;27350:82::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27414:11:::1;;;;;;;;;;;27413:12;27399:11;;:26;;;;;;;;;;;;;;;;;;27350:82::o:0;25138:31::-;;;;:::o;23736:85::-;23782:7;23808:6;;;;;;;;;;;23801:13;;23736:85;:::o;26828:90::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26902:9:::1;26894:5;:17;;;;26828:90:::0;:::o;9024:102::-;9080:13;9112:7;9105:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9024:102;:::o;25176:34::-;;;;:::o;25468:806::-;25525:12;25540:5;;25525:20;;25555:11;25578:1;25569:6;:10;:23;;25591:1;25569:23;;;25582:6;25569:23;25555:37;;25602:9;25654:1;25638:13;;:17;;;;:::i;:::-;25632:3;25616:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:39;25615:114;;;;;25712:16;;25705:3;25673:17;:29;25691:10;25673:29;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:55;;25615:114;25602:128;;25744:4;25740:242;;;25771:1;25764:8;;25819:3;25786:17;:29;25804:10;25786:29;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;25865:1;25850:12;;:16;;;;:::i;:::-;25844:3;:22;25836:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;25740:242;;;25946:1;25935:8;;:12;;;;:::i;:::-;25929:3;:18;25921:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;25740:242;26012:10;25999:23;;:9;:23;;;25991:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;26050:11;;;;;;;;;;;26042:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:4;26121:3;:10;;;;:::i;:::-;26108:9;:23;;26100:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;26217:1;26205:9;;:13;;;;:::i;:::-;26199:3;26183:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;26175:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;26241:26;26251:10;26263:3;26241:9;:26::i;:::-;25515:759;;;25468:806;:::o;10709:294::-;10831:12;:10;:12::i;:::-;10819:24;;:8;:24;;;10815:54;;;10852:17;;;;;;;;;;;;;;10815:54;10925:8;10880:18;:32;10899:12;:10;:12::i;:::-;10880:32;;;;;;;;;;;;;;;:42;10913:8;10880:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10977:8;10948:48;;10963:12;:10;:12::i;:::-;10948:48;;;10987:8;10948:48;;;;;;:::i;:::-;;;;;;;;10709:294;;:::o;25096:35::-;;;;:::o;11812:332::-;11973:28;11983:4;11989:2;11993:7;11973:9;:28::i;:::-;12016:48;12039:4;12045:2;12049:7;12058:5;12016:22;:48::i;:::-;12011:127;;12087:40;;;;;;;;;;;;;;12011:127;11812:332;;;;:::o;26924:92::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27002:7:::1;26991:8;:18;;;;26924:92:::0;:::o;26392:338::-;26505:13;26555:16;26563:7;26555;:16::i;:::-;26534:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26685:7;26694:18;:7;:16;:18::i;:::-;26668:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26654:69;;26392:338;;;:::o;25280:31::-;;;;;;;;;;;;;:::o;25016:::-;;;;:::o;11069:206::-;11206:4;11233:18;:25;11252:5;11233:25;;;;;;;;;;;;;;;:35;11259:8;11233:35;;;;;;;;;;;;;;;;;;;;;;;;;11226:42;;11069:206;;;;:::o;24662:274::-;23959:12;:10;:12::i;:::-;23948:23;;:7;:5;:7::i;:::-;:23;;;23940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24783:1:::1;24763:22;;:8;:22;;;;24742:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;24893:8;24864:38;;24885:6;;;;;;;;;;;24864:38;;;;;;;;;;;;24921:8;24912:6;;:17;;;;;;;;;;;;;;;;;;24662:274:::0;:::o;25054:35::-;;;;:::o;25217:28::-;;;;:::o;1160:320:0:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12390:142:11:-;12447:4;12480:13;;12470:7;:23;:55;;;;;12498:11;:20;12510:7;12498:20;;;;;;;;;;;:27;;;;;;;;;;;;12497:28;12470:55;12463:62;;12390:142;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;19516:189:11:-;19653:2;19626:15;:24;19642:7;19626:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19690:7;19686:2;19670:28;;19679:5;19670:28;;;;;;;;;;;;19516:189;;;:::o;15072:2092::-;15182:35;15220:20;15232:7;15220:11;:20::i;:::-;15182:58;;15251:22;15293:13;:18;;;15277:34;;:12;:10;:12::i;:::-;:34;;;:100;;;;15327:50;15344:13;:18;;;15364:12;:10;:12::i;:::-;15327:16;:50::i;:::-;15277:100;:152;;;;15417:12;:10;:12::i;:::-;15393:36;;:20;15405:7;15393:11;:20::i;:::-;:36;;;15277:152;15251:179;;15446:17;15441:66;;15472:35;;;;;;;;;;;;;;15441:66;15543:4;15521:26;;:13;:18;;;:26;;;15517:67;;15556:28;;;;;;;;;;;;;;15517:67;15612:1;15598:16;;:2;:16;;;15594:52;;;15623:23;;;;;;;;;;;;;;15594:52;15657:43;15679:4;15685:2;15689:7;15698:1;15657:21;:43::i;:::-;15762:49;15779:1;15783:7;15792:13;:18;;;15762:8;:49::i;:::-;16131:1;16101:12;:18;16114:4;16101:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16174:1;16146:12;:16;16159:2;16146:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16218:2;16190:11;:20;16202:7;16190:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16279:15;16234:11;:20;16246:7;16234:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16543:19;16575:1;16565:7;:11;16543:33;;16635:1;16594:43;;:11;:24;16606:11;16594:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16590:463;;;16816:13;;16802:11;:27;16798:241;;;16885:13;:18;;;16853:11;:24;16865:11;16853:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16967:13;:53;;;16925:11;:24;16937:11;16925:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;16798:241;16590:463;16077:986;17097:7;17093:2;17078:27;;17087:4;17078:27;;;;;;;;;;;;17115:42;17136:4;17142:2;17146:7;17155:1;17115:20;:42::i;:::-;15172:1992;;15072:2092;;;:::o;7537:1084::-;7622:21;;:::i;:::-;7659:12;7674:7;7659:22;;7727:13;;7720:4;:20;7716:841;;;7760:31;7794:11;:17;7806:4;7794:17;;;;;;;;;;;7760:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7834:9;:16;;;7829:714;;7904:1;7878:28;;:9;:14;;;:28;;;7874:99;;7941:9;7934:16;;;;;;7874:99;8270:255;8277:4;8270:255;;;8309:6;;;;;;;;8353:11;:17;8365:4;8353:17;;;;;;;;;;;8341:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8426:1;8400:28;;:9;:14;;;:28;;;8396:107;;8467:9;8460:16;;;;;;8396:107;8270:255;;;7829:714;7742:815;7716:841;8583:31;;;;;;;;;;;;;;7537:1084;;;;:::o;12538:102::-;12606:27;12616:2;12620:8;12606:27;;;;;;;;;;;;:9;:27::i;:::-;12538:102;;:::o;20258:895::-;20408:4;20428:15;:2;:13;;;:15::i;:::-;20424:723;;;20495:2;20479:36;;;20537:12;:10;:12::i;:::-;20571:4;20597:7;20626:5;20479:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20459:636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20849:1;20832:6;:13;:18;20828:253;;;20881:40;;;;;;;;;;;;;;20828:253;21033:6;21027:13;21018:6;21014:2;21010:15;21003:38;20459:636;20721:45;;;20711:55;;;:6;:55;;;;20704:62;;;;;20424:723;21132:4;21125:11;;20258:895;;;;;;;:::o;328:703:10:-;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;21784:154:11:-;;;;;:::o;22579:153::-;;;;;:::o;12991:157::-;13109:32;13115:2;13119:8;13129:5;13136:4;13109:5;:32::i;:::-;12991:157;;;:::o;13395:1435::-;13528:20;13551:13;;13528:36;;13592:1;13578:16;;:2;:16;;;13574:48;;;13603:19;;;;;;;;;;;;;;13574:48;13648:1;13636:8;:13;13632:44;;;13658:18;;;;;;;;;;;;;;13632:44;13687:61;13717:1;13721:2;13725:12;13739:8;13687:21;:61::i;:::-;14054:8;14019:12;:16;14032:2;14019:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14117:8;14077:12;:16;14090:2;14077:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14174:2;14141:11;:25;14153:12;14141:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14240:15;14190:11;:25;14202:12;14190:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14271:20;14294:12;14271:35;;14326:9;14321:380;14341:8;14337:1;:12;14321:380;;;14404:12;14400:2;14379:38;;14396:1;14379:38;;;;;;;;;;;;14460:4;:88;;;;;14489:59;14520:1;14524:2;14528:12;14542:5;14489:22;:59::i;:::-;14488:60;14460:88;14435:220;;;14596:40;;;;;;;;;;;;;;14435:220;14672:14;;;;;;;14351:3;;;;;;;14321:380;;;;14731:12;14715:13;:28;;;;13995:759;14763:60;14792:1;14796:2;14800:12;14814:8;14763:20;:60::i;:::-;13518:1312;13395:1435;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:365::-;9533:3;9554:66;9618:1;9613:3;9554:66;:::i;:::-;9547:73;;9629:93;9718:3;9629:93;:::i;:::-;9747:2;9742:3;9738:12;9731:19;;9391:365;;;:::o;9762:366::-;9904:3;9925:67;9989:2;9984:3;9925:67;:::i;:::-;9918:74;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9762:366;;;:::o;10134:400::-;10294:3;10315:84;10397:1;10392:3;10315:84;:::i;:::-;10308:91;;10408:93;10497:3;10408:93;:::i;:::-;10526:1;10521:3;10517:11;10510:18;;10134:400;;;:::o;10540:366::-;10682:3;10703:67;10767:2;10762:3;10703:67;:::i;:::-;10696:74;;10779:93;10868:3;10779:93;:::i;:::-;10897:2;10892:3;10888:12;10881:19;;10540:366;;;:::o;10912:::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:::-;11798:3;11819:67;11883:2;11878:3;11819:67;:::i;:::-;11812:74;;11895:93;11984:3;11895:93;:::i;:::-;12013:2;12008:3;12004:12;11997:19;;11656:366;;;:::o;12028:398::-;12187:3;12208:83;12289:1;12284:3;12208:83;:::i;:::-;12201:90;;12300:93;12389:3;12300:93;:::i;:::-;12418:1;12413:3;12409:11;12402:18;;12028:398;;;:::o;12432:366::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:365::-;13318:3;13339:66;13403:1;13398:3;13339:66;:::i;:::-;13332:73;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13176:365;;;:::o;13547:118::-;13634:24;13652:5;13634:24;:::i;:::-;13629:3;13622:37;13547:118;;:::o;13671:695::-;13949:3;13971:92;14059:3;14050:6;13971:92;:::i;:::-;13964:99;;14080:95;14171:3;14162:6;14080:95;:::i;:::-;14073:102;;14192:148;14336:3;14192:148;:::i;:::-;14185:155;;14357:3;14350:10;;13671:695;;;;;:::o;14372:379::-;14556:3;14578:147;14721:3;14578:147;:::i;:::-;14571:154;;14742:3;14735:10;;14372:379;;;:::o;14757:222::-;14850:4;14888:2;14877:9;14873:18;14865:26;;14901:71;14969:1;14958:9;14954:17;14945:6;14901:71;:::i;:::-;14757:222;;;;:::o;14985:640::-;15180:4;15218:3;15207:9;15203:19;15195:27;;15232:71;15300:1;15289:9;15285:17;15276:6;15232:71;:::i;:::-;15313:72;15381:2;15370:9;15366:18;15357:6;15313:72;:::i;:::-;15395;15463:2;15452:9;15448:18;15439:6;15395:72;:::i;:::-;15514:9;15508:4;15504:20;15499:2;15488:9;15484:18;15477:48;15542:76;15613:4;15604:6;15542:76;:::i;:::-;15534:84;;14985:640;;;;;;;:::o;15631:210::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15769:65;15831:1;15820:9;15816:17;15807:6;15769:65;:::i;:::-;15631:210;;;;:::o;15847:313::-;15960:4;15998:2;15987:9;15983:18;15975:26;;16047:9;16041:4;16037:20;16033:1;16022:9;16018:17;16011:47;16075:78;16148:4;16139:6;16075:78;:::i;:::-;16067:86;;15847:313;;;;:::o;16166:419::-;16332:4;16370:2;16359:9;16355:18;16347:26;;16419:9;16413:4;16409:20;16405:1;16394:9;16390:17;16383:47;16447:131;16573:4;16447:131;:::i;:::-;16439:139;;16166:419;;;:::o;16591:::-;16757:4;16795:2;16784:9;16780:18;16772:26;;16844:9;16838:4;16834:20;16830:1;16819:9;16815:17;16808:47;16872:131;16998:4;16872:131;:::i;:::-;16864:139;;16591:419;;;:::o;17016:::-;17182:4;17220:2;17209:9;17205:18;17197:26;;17269:9;17263:4;17259:20;17255:1;17244:9;17240:17;17233:47;17297:131;17423:4;17297:131;:::i;:::-;17289:139;;17016:419;;;:::o;17441:::-;17607:4;17645:2;17634:9;17630:18;17622:26;;17694:9;17688:4;17684:20;17680:1;17669:9;17665:17;17658:47;17722:131;17848:4;17722:131;:::i;:::-;17714:139;;17441:419;;;:::o;17866:::-;18032:4;18070:2;18059:9;18055:18;18047:26;;18119:9;18113:4;18109:20;18105:1;18094:9;18090:17;18083:47;18147:131;18273:4;18147:131;:::i;:::-;18139:139;;17866:419;;;:::o;18291:::-;18457:4;18495:2;18484:9;18480:18;18472:26;;18544:9;18538:4;18534:20;18530:1;18519:9;18515:17;18508:47;18572:131;18698:4;18572:131;:::i;:::-;18564:139;;18291:419;;;:::o;18716:::-;18882:4;18920:2;18909:9;18905:18;18897:26;;18969:9;18963:4;18959:20;18955:1;18944:9;18940:17;18933:47;18997:131;19123:4;18997:131;:::i;:::-;18989:139;;18716:419;;;:::o;19141:::-;19307:4;19345:2;19334:9;19330:18;19322:26;;19394:9;19388:4;19384:20;19380:1;19369:9;19365:17;19358:47;19422:131;19548:4;19422:131;:::i;:::-;19414:139;;19141:419;;;:::o;19566:::-;19732:4;19770:2;19759:9;19755:18;19747:26;;19819:9;19813:4;19809:20;19805:1;19794:9;19790:17;19783:47;19847:131;19973:4;19847:131;:::i;:::-;19839:139;;19566:419;;;:::o;19991:222::-;20084:4;20122:2;20111:9;20107:18;20099:26;;20135:71;20203:1;20192:9;20188:17;20179:6;20135:71;:::i;:::-;19991:222;;;;:::o;20219:129::-;20253:6;20280:20;;:::i;:::-;20270:30;;20309:33;20337:4;20329:6;20309:33;:::i;:::-;20219:129;;;:::o;20354:75::-;20387:6;20420:2;20414:9;20404:19;;20354:75;:::o;20435:307::-;20496:4;20586:18;20578:6;20575:30;20572:56;;;20608:18;;:::i;:::-;20572:56;20646:29;20668:6;20646:29;:::i;:::-;20638:37;;20730:4;20724;20720:15;20712:23;;20435:307;;;:::o;20748:308::-;20810:4;20900:18;20892:6;20889:30;20886:56;;;20922:18;;:::i;:::-;20886:56;20960:29;20982:6;20960:29;:::i;:::-;20952:37;;21044:4;21038;21034:15;21026:23;;20748:308;;;:::o;21062:141::-;21111:4;21134:3;21126:11;;21157:3;21154:1;21147:14;21191:4;21188:1;21178:18;21170:26;;21062:141;;;:::o;21209:98::-;21260:6;21294:5;21288:12;21278:22;;21209:98;;;:::o;21313:99::-;21365:6;21399:5;21393:12;21383:22;;21313:99;;;:::o;21418:168::-;21501:11;21535:6;21530:3;21523:19;21575:4;21570:3;21566:14;21551:29;;21418:168;;;;:::o;21592:147::-;21693:11;21730:3;21715:18;;21592:147;;;;:::o;21745:169::-;21829:11;21863:6;21858:3;21851:19;21903:4;21898:3;21894:14;21879:29;;21745:169;;;;:::o;21920:148::-;22022:11;22059:3;22044:18;;21920:148;;;;:::o;22074:305::-;22114:3;22133:20;22151:1;22133:20;:::i;:::-;22128:25;;22167:20;22185:1;22167:20;:::i;:::-;22162:25;;22321:1;22253:66;22249:74;22246:1;22243:81;22240:107;;;22327:18;;:::i;:::-;22240:107;22371:1;22368;22364:9;22357:16;;22074:305;;;;:::o;22385:185::-;22425:1;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22515:1;22505:35;;22520:18;;:::i;:::-;22505:35;22562:1;22559;22555:9;22550:14;;22385:185;;;;:::o;22576:348::-;22616:7;22639:20;22657:1;22639:20;:::i;:::-;22634:25;;22673:20;22691:1;22673:20;:::i;:::-;22668:25;;22861:1;22793:66;22789:74;22786:1;22783:81;22778:1;22771:9;22764:17;22760:105;22757:131;;;22868:18;;:::i;:::-;22757:131;22916:1;22913;22909:9;22898:20;;22576:348;;;;:::o;22930:191::-;22970:4;22990:20;23008:1;22990:20;:::i;:::-;22985:25;;23024:20;23042:1;23024:20;:::i;:::-;23019:25;;23063:1;23060;23057:8;23054:34;;;23068:18;;:::i;:::-;23054:34;23113:1;23110;23106:9;23098:17;;22930:191;;;;:::o;23127:96::-;23164:7;23193:24;23211:5;23193:24;:::i;:::-;23182:35;;23127:96;;;:::o;23229:90::-;23263:7;23306:5;23299:13;23292:21;23281:32;;23229:90;;;:::o;23325:149::-;23361:7;23401:66;23394:5;23390:78;23379:89;;23325:149;;;:::o;23480:126::-;23517:7;23557:42;23550:5;23546:54;23535:65;;23480:126;;;:::o;23612:77::-;23649:7;23678:5;23667:16;;23612:77;;;:::o;23695:154::-;23779:6;23774:3;23769;23756:30;23841:1;23832:6;23827:3;23823:16;23816:27;23695:154;;;:::o;23855:307::-;23923:1;23933:113;23947:6;23944:1;23941:13;23933:113;;;24032:1;24027:3;24023:11;24017:18;24013:1;24008:3;24004:11;23997:39;23969:2;23966:1;23962:10;23957:15;;23933:113;;;24064:6;24061:1;24058:13;24055:101;;;24144:1;24135:6;24130:3;24126:16;24119:27;24055:101;23904:258;23855:307;;;:::o;24168:320::-;24212:6;24249:1;24243:4;24239:12;24229:22;;24296:1;24290:4;24286:12;24317:18;24307:81;;24373:4;24365:6;24361:17;24351:27;;24307:81;24435:2;24427:6;24424:14;24404:18;24401:38;24398:84;;;24454:18;;:::i;:::-;24398:84;24219:269;24168:320;;;:::o;24494:281::-;24577:27;24599:4;24577:27;:::i;:::-;24569:6;24565:40;24707:6;24695:10;24692:22;24671:18;24659:10;24656:34;24653:62;24650:88;;;24718:18;;:::i;:::-;24650:88;24758:10;24754:2;24747:22;24537:238;24494:281;;:::o;24781:233::-;24820:3;24843:24;24861:5;24843:24;:::i;:::-;24834:33;;24889:66;24882:5;24879:77;24876:103;;;24959:18;;:::i;:::-;24876:103;25006:1;24999:5;24995:13;24988:20;;24781:233;;;:::o;25020:176::-;25052:1;25069:20;25087:1;25069:20;:::i;:::-;25064:25;;25103:20;25121:1;25103:20;:::i;:::-;25098:25;;25142:1;25132:35;;25147:18;;:::i;:::-;25132:35;25188:1;25185;25181:9;25176:14;;25020:176;;;;:::o;25202:180::-;25250:77;25247:1;25240:88;25347:4;25344:1;25337:15;25371:4;25368:1;25361:15;25388:180;25436:77;25433:1;25426:88;25533:4;25530:1;25523:15;25557:4;25554:1;25547:15;25574:180;25622:77;25619:1;25612:88;25719:4;25716:1;25709:15;25743:4;25740:1;25733:15;25760:180;25808:77;25805:1;25798:88;25905:4;25902:1;25895:15;25929:4;25926:1;25919:15;25946:180;25994:77;25991:1;25984:88;26091:4;26088:1;26081:15;26115:4;26112:1;26105:15;26132:117;26241:1;26238;26231:12;26255:117;26364:1;26361;26354:12;26378:117;26487:1;26484;26477:12;26501:117;26610:1;26607;26600:12;26624:102;26665:6;26716:2;26712:7;26707:2;26700:5;26696:14;26692:28;26682:38;;26624:102;;;:::o;26732:157::-;26872:9;26868:1;26860:6;26856:14;26849:33;26732:157;:::o;26895:225::-;27035:34;27031:1;27023:6;27019:14;27012:58;27104:8;27099:2;27091:6;27087:15;27080:33;26895:225;:::o;27126:155::-;27266:7;27262:1;27254:6;27250:14;27243:31;27126:155;:::o;27287:182::-;27427:34;27423:1;27415:6;27411:14;27404:58;27287:182;:::o;27475:174::-;27615:26;27611:1;27603:6;27599:14;27592:50;27475:174;:::o;27655:234::-;27795:34;27791:1;27783:6;27779:14;27772:58;27864:17;27859:2;27851:6;27847:15;27840:42;27655:234;:::o;27895:179::-;28035:31;28031:1;28023:6;28019:14;28012:55;27895:179;:::o;28080:114::-;;:::o;28200:166::-;28340:18;28336:1;28328:6;28324:14;28317:42;28200:166;:::o;28372:169::-;28512:21;28508:1;28500:6;28496:14;28489:45;28372:169;:::o;28547:155::-;28687:7;28683:1;28675:6;28671:14;28664:31;28547:155;:::o;28708:122::-;28781:24;28799:5;28781:24;:::i;:::-;28774:5;28771:35;28761:63;;28820:1;28817;28810:12;28761:63;28708:122;:::o;28836:116::-;28906:21;28921:5;28906:21;:::i;:::-;28899:5;28896:32;28886:60;;28942:1;28939;28932:12;28886:60;28836:116;:::o;28958:120::-;29030:23;29047:5;29030:23;:::i;:::-;29023:5;29020:34;29010:62;;29068:1;29065;29058:12;29010:62;28958:120;:::o;29084:122::-;29157:24;29175:5;29157:24;:::i;:::-;29150:5;29147:35;29137:63;;29196:1;29193;29186:12;29137:63;29084:122;:::o

Swarm Source

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