ETH Price: $3,300.22 (+1.71%)
 

Overview

Max Total Supply

12 ENFT

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ENFT
0xed41898a32108722001d36e99ab9824ff443d29b
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:
ERC721Template

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : ERC721Template.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract ERC721Template is AccessControl, Pausable, ERC721Enumerable {
    using SafeERC20 for IERC20;

    /// @dev Base token URI used as a prefix by tokenURI().
    string private _baseTokenURI;

    /// @dev Contract URI used for storefront-level metadata.
    string private _contractURI;

    mapping(address => bool) internal blackListAccounts;
    mapping(uint256 => bool) internal blackListTokenIds;

    uint256 public tokenIds;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");
    
    /**
     * @dev Emitted when the account is added to blacklist.
     */
    event BlackListAccount(address indexed account);

    /**
     * @dev Emitted when the account is removed from blacklist.
     */
    event UnblackListAccount(address indexed account);

    /**
     * @dev Emitted when the tokenId is added to blacklist.
     */
    event BlackListTokenId(uint256 indexed tokenId);

    /**
     * @dev Emitted when the tokenId is removed from blacklist.
     */
    event UnblackListTokenId(uint256 indexed tokenId);

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `OPERATOR_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, uint256 startTokenId, address owner) ERC721(name, symbol) {
        tokenIds = startTokenId;
        _setupRole(DEFAULT_ADMIN_ROLE, owner);
        _setupRole(MINTER_ROLE, owner);
        _setupRole(OPERATOR_ROLE, owner);
    }

    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator or the contract owner.
     */
    function burn(uint256 tokenId) public virtual {
        require((_isApprovedOrOwner(_msgSender(), tokenId) || hasRole(DEFAULT_ADMIN_ROLE,_msgSender())), "burn: caller is not owner nor approved");
        _burn(tokenId);
    }


    function setBaseURI(string memory baseTokenURI) public onlyRole(OPERATOR_ROLE) {
        _baseTokenURI = baseTokenURI;
    }

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

     function setContractURI(string memory contractURI_) public onlyRole(OPERATOR_ROLE) {
        _contractURI = contractURI_;
    }

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

    /**
     * @dev Pauses all token transfers.
     *
     * See {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `DEFAULT_ADMIN_ROLE`.
     */
    function pause() public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `DEFAULT_ADMIN_ROLE`.
     */
    function unpause() public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to) public onlyRole(MINTER_ROLE) {
        _mint(to, tokenIds++);
    }

    function mintBatch(address to, uint256 count) public onlyRole(MINTER_ROLE) {
        for (uint256 i = 0; i < count; ++i) {
            _mint(to, tokenIds++);
        }
    }

    /// @notice Transfers the ownership of multiple NFTs from one address to another address
    /// @param from The current owner of the NFT
    /// @param to The new owner
    /// @param ids The NFTs to transfer
    function safeBatchTransferFrom(address from, address to, uint256[] memory ids) public {
        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            safeTransferFrom(from, to, id, "");
        }
    }

    /// @notice Transfers the ownership of multiple NFTs from one address to another address range [start, start + count)
    /// @param from The current owner of the NFT
    /// @param to The new owner
    /// @param start The NFT start tokenId
    /// @param count the NFT count
    function safeBatchTransferFrom(address from, address to, uint256 start, uint256 count) public {
        uint256 end = start + count;
        for (uint256 id = start; id < end; ++id) {
            safeTransferFrom(from, to, id, "");
        }
    }

    function remint(address to, uint256 tokenId) public onlyRole(MINTER_ROLE) {
        require(tokenId < tokenIds, "Remint: tokenId must less than tokenIds");
        _burn(tokenId);
        _mint(to, tokenId);
    }

    function blackListAccount(address account) public onlyRole(OPERATOR_ROLE) {
        blackListAccounts[account] = true;
        emit BlackListAccount(account);
    }

    function unblackListAccount(address account) public onlyRole(OPERATOR_ROLE) {
        blackListAccounts[account] = false;
        emit UnblackListAccount(account);
    }

    function blackListTokenId(uint256 tokenId) public onlyRole(OPERATOR_ROLE) {
        blackListTokenIds[tokenId] = true;
        emit BlackListTokenId(tokenId);
    }

    function unblackListTokenId(uint256 tokenId) public onlyRole(OPERATOR_ROLE) {
        blackListTokenIds[tokenId] = false;
        emit UnblackListTokenId(tokenId);
    }

    function blackListedAccount(address account) public view returns (bool) {
        return blackListAccounts[account];
    }

    function blackListedTokenId(uint256 tokenId) public view returns (bool) {
        return blackListTokenIds[tokenId];
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        
        require(!paused(), "_beforeTokenTransfer: token transfer while paused");
        require(!blackListedAccount(from), "_beforeTokenTransfer: sender is blacklisted");
        require(!blackListedAccount(to), "_beforeTokenTransfer: recipient is blacklisted");
        require(!blackListedTokenId(tokenId), "_beforeTokenTransfer: tokenId is blacklisted");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function withdrawERC20(address tokenAddress, address to) public onlyRole(DEFAULT_ADMIN_ROLE) {
        IERC20 token = IERC20(tokenAddress);
        uint256 balance = token.balanceOf(address(this));
        token.safeTransfer(to, balance);
    }

    function withdrawERC721(address tokenAddress, address to, uint256 tokenId) public onlyRole(DEFAULT_ADMIN_ROLE) {
        IERC721(tokenAddress).transferFrom(address(this), to, tokenId);
    }
}

File 2 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 4 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 19 : 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 8 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 10 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 14 of 19 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 15 of 19 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 16 of 19 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 17 of 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 18 of 19 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 19 of 19 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"startTokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlackListAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BlackListTokenId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnblackListAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"UnblackListTokenId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blackListAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"blackListTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blackListedAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"blackListedTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"remint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"safeBatchTransferFrom","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":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","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":[],"name":"tokenIds","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":"account","type":"address"}],"name":"unblackListAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unblackListTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005afc38038062005afc8339818101604052810190620000379190620003e7565b83836000600160006101000a81548160ff02191690831515021790555081600290805190602001906200006c9291906200028b565b508060039080519060200190620000859291906200028b565b50505081601081905550620000a46000801b826200011260201b60201c565b620000d67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200011260201b60201c565b620001087f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929826200011260201b60201c565b505050506200068d565b6200012482826200012860201b60201c565b5050565b6200013a82826200021960201b60201c565b6200021557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001ba6200028360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b82805462000299906200056a565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b6000620003526200034c84620004c0565b62000497565b90508281526020810184848401111562000371576200037062000639565b5b6200037e84828562000534565b509392505050565b600081519050620003978162000659565b92915050565b600082601f830112620003b557620003b462000634565b5b8151620003c78482602086016200033b565b91505092915050565b600081519050620003e18162000673565b92915050565b6000806000806080858703121562000404576200040362000643565b5b600085015167ffffffffffffffff8111156200042557620004246200063e565b5b62000433878288016200039d565b945050602085015167ffffffffffffffff8111156200045757620004566200063e565b5b62000465878288016200039d565b93505060406200047887828801620003d0565b92505060606200048b8782880162000386565b91505092959194509250565b6000620004a3620004b6565b9050620004b18282620005a0565b919050565b6000604051905090565b600067ffffffffffffffff821115620004de57620004dd62000605565b5b620004e98262000648565b9050602081019050919050565b600062000503826200050a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200055457808201518184015260208101905062000537565b8381111562000564576000848401525b50505050565b600060028204905060018216806200058357607f821691505b602082108114156200059a5762000599620005d6565b5b50919050565b620005ab8262000648565b810181811067ffffffffffffffff82111715620005cd57620005cc62000605565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200066481620004f6565b81146200067057600080fd5b50565b6200067e816200052a565b81146200068a57600080fd5b50565b61545f806200069d6000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c80636a6278421161015c578063a217fddf116100ce578063d539139311610087578063d53913931461078c578063d547741f146107aa578063e0644962146107c6578063e8a3d485146107e2578063e985e9c514610800578063f5b541a6146108305761027f565b8063a217fddf146106ce578063a22cb465146106ec578063abe6eaa814610708578063b88d4fde14610724578063bdf1be5d14610740578063c87b56dd1461075c5761027f565b8063938e3d7b11610120578063938e3d7b146105fc5780639456fbcc1461061857806395d89b411461063457806399cd933e146106525780639f21a00a14610682578063a0fd4c951461069e5761027f565b80636a6278421461055857806370a0823114610574578063714cff56146105a45780638456cb59146105c257806391d14854146105cc5761027f565b80632f745c59116101f557806342966c68116101b957806342966c68146104865780634f6ccce7146104a257806353056bf6146104d257806355f804b3146104ee5780635c975abb1461050a5780636352211e146105285761027f565b80632f745c59146103f857806336568abe146104285780633f4ba83a146104445780634025feb21461044e57806342842e0e1461046a5761027f565b806309617d781161024757806309617d781461033a57806318160ddd1461035657806323b872dd14610374578063248a9ca314610390578063248b71fc146103c05780632f2ff15d146103dc5761027f565b806301ffc9a714610284578063034601ec146102b457806306fdde03146102d0578063081812fc146102ee578063095ea7b31461031e575b600080fd5b61029e60048036038101906102999190613c9d565b61084e565b6040516102ab91906143ba565b60405180910390f35b6102ce60048036038101906102c991906139d7565b610860565b005b6102d86108be565b6040516102e591906143f0565b60405180910390f35b61030860048036038101906103039190613d40565b610950565b60405161031591906142f3565b60405180910390f35b61033860048036038101906103339190613bc3565b610996565b005b610354600480360381019061034f919061396a565b610aae565b005b61035e610b77565b60405161036b9190614752565b60405180910390f35b61038e60048036038101906103899190613a46565b610b84565b005b6103aa60048036038101906103a59190613c30565b610be4565b6040516103b791906143d5565b60405180910390f35b6103da60048036038101906103d59190613bc3565b610c03565b005b6103f660048036038101906103f19190613c5d565b610c6f565b005b610412600480360381019061040d9190613bc3565b610c90565b60405161041f9190614752565b60405180910390f35b610442600480360381019061043d9190613c5d565b610d35565b005b61044c610db8565b005b61046860048036038101906104639190613a46565b610dd0565b005b610484600480360381019061047f9190613a46565b610e52565b005b6104a0600480360381019061049b9190613d40565b610e72565b005b6104bc60048036038101906104b79190613d40565b610ee9565b6040516104c99190614752565b60405180910390f35b6104ec60048036038101906104e79190613bc3565b610f5a565b005b61050860048036038101906105039190613cf7565b610fe0565b005b610512611025565b60405161051f91906143ba565b60405180910390f35b610542600480360381019061053d9190613d40565b61103c565b60405161054f91906142f3565b60405180910390f35b610572600480360381019061056d919061396a565b6110ee565b005b61058e6004803603810190610589919061396a565b61113c565b60405161059b9190614752565b60405180910390f35b6105ac6111f4565b6040516105b99190614752565b60405180910390f35b6105ca6111fa565b005b6105e660048036038101906105e19190613c5d565b611212565b6040516105f391906143ba565b60405180910390f35b61061660048036038101906106119190613cf7565b61127c565b005b610632600480360381019061062d9190613997565b6112c1565b005b61063c611392565b60405161064991906143f0565b60405180910390f35b61066c6004803603810190610667919061396a565b611424565b60405161067991906143ba565b60405180910390f35b61069c60048036038101906106979190613d40565b61147a565b005b6106b860048036038101906106b39190613d40565b611501565b6040516106c591906143ba565b60405180910390f35b6106d661152b565b6040516106e391906143d5565b60405180910390f35b61070660048036038101906107019190613b83565b611532565b005b610722600480360381019061071d9190613b1c565b611548565b005b61073e60048036038101906107399190613a99565b61159a565b005b61075a60048036038101906107559190613d40565b6115fc565b005b61077660048036038101906107719190613d40565b611683565b60405161078391906143f0565b60405180910390f35b6107946116eb565b6040516107a191906143d5565b60405180910390f35b6107c460048036038101906107bf9190613c5d565b61170f565b005b6107e060048036038101906107db919061396a565b611730565b005b6107ea6117f9565b6040516107f791906143f0565b60405180910390f35b61081a60048036038101906108159190613997565b61188b565b60405161082791906143ba565b60405180910390f35b61083861191f565b60405161084591906143d5565b60405180910390f35b600061085982611943565b9050919050565b60005b81518110156108b857600082828151811061088157610880614c06565b5b602002602001015190506108a68585836040518060200160405280600081525061159a565b50806108b190614ad0565b9050610863565b50505050565b6060600280546108cd90614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990614a6d565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095b826119bd565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a18261103c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990614692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611a08565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611a08565b61188b565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906145f2565b60405180910390fd5b610aa98383611a10565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610ad881611ac9565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f577113d77e79f49989fe02ced615218195847a6e5f43c631d7186881f33e341560405160405180910390a25050565b6000600a80549050905090565b610b95610b8f611a08565b82611add565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614712565b60405180910390fd5b610bdf838383611b72565b505050565b6000806000838152602001908152602001600020600101549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c2d81611ac9565b60005b82811015610c6957610c588460106000815480929190610c4f90614ad0565b91905055611dd9565b80610c6290614ad0565b9050610c30565b50505050565b610c7882610be4565b610c8181611ac9565b610c8b8383611fb3565b505050565b6000610c9b8361113c565b8210610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390614452565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d3d611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190614732565b60405180910390fd5b610db48282612093565b5050565b6000801b610dc581611ac9565b610dcd612174565b50565b6000801b610ddd81611ac9565b8373ffffffffffffffffffffffffffffffffffffffff166323b872dd3085856040518463ffffffff1660e01b8152600401610e1a9392919061430e565b600060405180830381600087803b158015610e3457600080fd5b505af1158015610e48573d6000803e3d6000fd5b5050505050505050565b610e6d8383836040518060200160405280600081525061159a565b505050565b610e83610e7d611a08565b82611add565b80610e9e5750610e9d6000801b610e98611a08565b611212565b5b610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906145b2565b60405180910390fd5b610ee6816121d7565b50565b6000610ef3610b77565b8210610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906146d2565b60405180910390fd5b600a8281548110610f4857610f47614c06565b5b90600052602060002001549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f8481611ac9565b6010548210610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90614632565b60405180910390fd5b610fd1826121d7565b610fdb8383611dd9565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961100a81611ac9565b81600c90805190602001906110209291906136a1565b505050565b6000600160009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614672565b60405180910390fd5b80915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661111881611ac9565b611138826010600081548092919061112f90614ad0565b91905055611dd9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614592565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60105481565b6000801b61120781611ac9565b61120f6122f4565b50565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296112a681611ac9565b81600d90805190602001906112bc9291906136a1565b505050565b6000801b6112ce81611ac9565b600083905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161130e91906142f3565b60206040518083038186803b15801561132657600080fd5b505afa15801561133a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135e9190613d6d565b905061138b84828473ffffffffffffffffffffffffffffffffffffffff166123569092919063ffffffff16565b5050505050565b6060600380546113a190614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90614a6d565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296114a481611ac9565b6001600f600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817f09d79ed2b74f3881a897349ff00daf5c6f84d6bfd53cb8de3af6e88cd1bd988960405160405180910390a25050565b6000600f600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000801b81565b61154461153d611a08565b83836123dc565b5050565b60008183611556919061486e565b905060008390505b81811015611592576115818686836040518060200160405280600081525061159a565b8061158b90614ad0565b905061155e565b505050505050565b6115ab6115a5611a08565b83611add565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614712565b60405180910390fd5b6115f684848484612549565b50505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961162681611ac9565b6000600f600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817f8458e5f5a0bd5e7af03ffd6d135c961b031d61a291f05fa19b36e05592383a2360405160405180910390a25050565b606061168e826119bd565b60006116986125a5565b905060008151116116b857604051806020016040528060008152506116e3565b806116c284612637565b6040516020016116d3929190614295565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61171882610be4565b61172181611ac9565b61172b8383612093565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961175a81611ac9565b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f92dd3d624e88ae56ea7787c96e127ee7ce0279a4a148dc248d44222ec6e7712660405160405180910390a25050565b6060600d805461180890614a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461183490614a6d565b80156118815780601f1061185657610100808354040283529160200191611881565b820191906000526020600020905b81548152906001019060200180831161186457829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b657506119b582612798565b5b9050919050565b6119c68161287a565b611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614672565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a838361103c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ada81611ad5611a08565b6128e6565b50565b600080611ae98361103c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2b5750611b2a818561188b565b5b80611b6957508373ffffffffffffffffffffffffffffffffffffffff16611b5184610950565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b928261103c565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906144d2565b60405180910390fd5b611c63838383612983565b611c6e600082611a10565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbe919061494f565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d15919061486e565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd4838383612ab6565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090614612565b60405180910390fd5b611e528161287a565b15611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e89906144b2565b60405180910390fd5b611e9e60008383612983565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eee919061486e565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf60008383612ab6565b5050565b611fbd8282611212565b61208f57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612034611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61209d8282611212565b1561217057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612115611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61217c612abb565b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121c0611a08565b6040516121cd91906142f3565b60405180910390a1565b60006121e28261103c565b90506121f081600084612983565b6121fb600083611a10565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224b919061494f565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f081600084612ab6565b5050565b6122fc612b04565b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861233f611a08565b60405161234c91906142f3565b60405180910390a1565b6123d78363a9059cbb60e01b8484604051602401612375929190614391565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612b4e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906144f2565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161253c91906143ba565b60405180910390a3505050565b612554848484611b72565b61256084848484612c15565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614472565b60405180910390fd5b50505050565b6060600c80546125b490614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546125e090614a6d565b801561262d5780601f106126025761010080835404028352916020019161262d565b820191906000526020600020905b81548152906001019060200180831161261057829003601f168201915b5050505050905090565b6060600082141561267f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612793565b600082905060005b600082146126b157808061269a90614ad0565b915050600a826126aa91906148c4565b9150612687565b60008167ffffffffffffffff8111156126cd576126cc614c35565b5b6040519080825280601f01601f1916602001820160405280156126ff5781602001600182028036833780820191505090505b5090505b6000851461278c57600182612718919061494f565b9150600a856127279190614b19565b6030612733919061486e565b60f81b81838151811061274957612748614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561278591906148c4565b9450612703565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612873575061287282612dac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6128f08282611212565b61297f576129158173ffffffffffffffffffffffffffffffffffffffff166014612e26565b6129238360001c6020612e26565b6040516020016129349291906142b9565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297691906143f0565b60405180910390fd5b5050565b61298e838383613062565b612996611025565b156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90614512565b60405180910390fd5b6129df83611424565b15612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690614552565b60405180910390fd5b612a2882611424565b15612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614652565b60405180910390fd5b612a7181611501565b15612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa8906145d2565b60405180910390fd5b505050565b505050565b612ac3611025565b612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990614432565b60405180910390fd5b565b612b0c611025565b15612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4390614572565b60405180910390fd5b565b6000612bb0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131769092919063ffffffff16565b9050600081511115612c105780806020019051810190612bd09190613c03565b612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c06906146f2565b60405180910390fd5b5b505050565b6000612c368473ffffffffffffffffffffffffffffffffffffffff1661318e565b15612d9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c5f611a08565b8786866040518563ffffffff1660e01b8152600401612c819493929190614345565b602060405180830381600087803b158015612c9b57600080fd5b505af1925050508015612ccc57506040513d601f19601f82011682018060405250810190612cc99190613cca565b60015b612d4f573d8060008114612cfc576040519150601f19603f3d011682016040523d82523d6000602084013e612d01565b606091505b50600081511415612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90614472565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612da4565b600190505b949350505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1f5750612e1e826131b1565b5b9050919050565b606060006002836002612e3991906148f5565b612e43919061486e565b67ffffffffffffffff811115612e5c57612e5b614c35565b5b6040519080825280601f01601f191660200182016040528015612e8e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612ec657612ec5614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612f2a57612f29614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612f6a91906148f5565b612f74919061486e565b90505b6001811115613014577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612fb657612fb5614c06565b5b1a60f81b828281518110612fcd57612fcc614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061300d90614a43565b9050612f77565b5060008414613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304f90614412565b60405180910390fd5b8091505092915050565b61306d83838361321b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130b0576130ab81613220565b6130ef565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130ee576130ed8382613269565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131325761312d816133d6565b613171565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131705761316f82826134a7565b5b5b505050565b60606131858484600085613526565b90509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132768461113c565b613280919061494f565b9050600060096000848152602001908152602001600020549050818114613365576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506133ea919061494f565b90506000600b60008481526020019081526020016000205490506000600a838154811061341a57613419614c06565b5b9060005260206000200154905080600a838154811061343c5761343b614c06565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061348b5761348a614bd7565b5b6001900381819060005260206000200160009055905550505050565b60006134b28361113c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60608247101561356b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356290614532565b60405180910390fd5b6135748561318e565b6135b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135aa906146b2565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135dc919061427e565b60006040518083038185875af1925050503d8060008114613619576040519150601f19603f3d011682016040523d82523d6000602084013e61361e565b606091505b509150915061362e82828661363a565b92505050949350505050565b6060831561364a5782905061369a565b60008351111561365d5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369191906143f0565b60405180910390fd5b9392505050565b8280546136ad90614a6d565b90600052602060002090601f0160209004810192826136cf5760008555613716565b82601f106136e857805160ff1916838001178555613716565b82800160010185558215613716579182015b828111156137155782518255916020019190600101906136fa565b5b5090506137239190613727565b5090565b5b80821115613740576000816000905550600101613728565b5090565b600061375761375284614792565b61476d565b9050808382526020820190508285602086028201111561377a57613779614c69565b5b60005b858110156137aa57816137908882613940565b84526020840193506020830192505060018101905061377d565b5050509392505050565b60006137c76137c2846147be565b61476d565b9050828152602081018484840111156137e3576137e2614c6e565b5b6137ee848285614a01565b509392505050565b6000613809613804846147ef565b61476d565b90508281526020810184848401111561382557613824614c6e565b5b613830848285614a01565b509392505050565b600081359050613847816153b6565b92915050565b600082601f83011261386257613861614c64565b5b8135613872848260208601613744565b91505092915050565b60008135905061388a816153cd565b92915050565b60008151905061389f816153cd565b92915050565b6000813590506138b4816153e4565b92915050565b6000813590506138c9816153fb565b92915050565b6000815190506138de816153fb565b92915050565b600082601f8301126138f9576138f8614c64565b5b81356139098482602086016137b4565b91505092915050565b600082601f83011261392757613926614c64565b5b81356139378482602086016137f6565b91505092915050565b60008135905061394f81615412565b92915050565b60008151905061396481615412565b92915050565b6000602082840312156139805761397f614c78565b5b600061398e84828501613838565b91505092915050565b600080604083850312156139ae576139ad614c78565b5b60006139bc85828601613838565b92505060206139cd85828601613838565b9150509250929050565b6000806000606084860312156139f0576139ef614c78565b5b60006139fe86828701613838565b9350506020613a0f86828701613838565b925050604084013567ffffffffffffffff811115613a3057613a2f614c73565b5b613a3c8682870161384d565b9150509250925092565b600080600060608486031215613a5f57613a5e614c78565b5b6000613a6d86828701613838565b9350506020613a7e86828701613838565b9250506040613a8f86828701613940565b9150509250925092565b60008060008060808587031215613ab357613ab2614c78565b5b6000613ac187828801613838565b9450506020613ad287828801613838565b9350506040613ae387828801613940565b925050606085013567ffffffffffffffff811115613b0457613b03614c73565b5b613b10878288016138e4565b91505092959194509250565b60008060008060808587031215613b3657613b35614c78565b5b6000613b4487828801613838565b9450506020613b5587828801613838565b9350506040613b6687828801613940565b9250506060613b7787828801613940565b91505092959194509250565b60008060408385031215613b9a57613b99614c78565b5b6000613ba885828601613838565b9250506020613bb98582860161387b565b9150509250929050565b60008060408385031215613bda57613bd9614c78565b5b6000613be885828601613838565b9250506020613bf985828601613940565b9150509250929050565b600060208284031215613c1957613c18614c78565b5b6000613c2784828501613890565b91505092915050565b600060208284031215613c4657613c45614c78565b5b6000613c54848285016138a5565b91505092915050565b60008060408385031215613c7457613c73614c78565b5b6000613c82858286016138a5565b9250506020613c9385828601613838565b9150509250929050565b600060208284031215613cb357613cb2614c78565b5b6000613cc1848285016138ba565b91505092915050565b600060208284031215613ce057613cdf614c78565b5b6000613cee848285016138cf565b91505092915050565b600060208284031215613d0d57613d0c614c78565b5b600082013567ffffffffffffffff811115613d2b57613d2a614c73565b5b613d3784828501613912565b91505092915050565b600060208284031215613d5657613d55614c78565b5b6000613d6484828501613940565b91505092915050565b600060208284031215613d8357613d82614c78565b5b6000613d9184828501613955565b91505092915050565b613da381614983565b82525050565b613db281614995565b82525050565b613dc1816149a1565b82525050565b6000613dd282614820565b613ddc8185614836565b9350613dec818560208601614a10565b613df581614c7d565b840191505092915050565b6000613e0b82614820565b613e158185614847565b9350613e25818560208601614a10565b80840191505092915050565b6000613e3c8261482b565b613e468185614852565b9350613e56818560208601614a10565b613e5f81614c7d565b840191505092915050565b6000613e758261482b565b613e7f8185614863565b9350613e8f818560208601614a10565b80840191505092915050565b6000613ea8602083614852565b9150613eb382614c8e565b602082019050919050565b6000613ecb601483614852565b9150613ed682614cb7565b602082019050919050565b6000613eee602b83614852565b9150613ef982614ce0565b604082019050919050565b6000613f11603283614852565b9150613f1c82614d2f565b604082019050919050565b6000613f34602583614852565b9150613f3f82614d7e565b604082019050919050565b6000613f57601c83614852565b9150613f6282614dcd565b602082019050919050565b6000613f7a602483614852565b9150613f8582614df6565b604082019050919050565b6000613f9d601983614852565b9150613fa882614e45565b602082019050919050565b6000613fc0603183614852565b9150613fcb82614e6e565b604082019050919050565b6000613fe3602683614852565b9150613fee82614ebd565b604082019050919050565b6000614006602b83614852565b915061401182614f0c565b604082019050919050565b6000614029601083614852565b915061403482614f5b565b602082019050919050565b600061404c602983614852565b915061405782614f84565b604082019050919050565b600061406f602683614852565b915061407a82614fd3565b604082019050919050565b6000614092602c83614852565b915061409d82615022565b604082019050919050565b60006140b5603e83614852565b91506140c082615071565b604082019050919050565b60006140d8602083614852565b91506140e3826150c0565b602082019050919050565b60006140fb602783614852565b9150614106826150e9565b604082019050919050565b600061411e602e83614852565b915061412982615138565b604082019050919050565b6000614141601883614852565b915061414c82615187565b602082019050919050565b6000614164602183614852565b915061416f826151b0565b604082019050919050565b6000614187601d83614852565b9150614192826151ff565b602082019050919050565b60006141aa602c83614852565b91506141b582615228565b604082019050919050565b60006141cd601783614863565b91506141d882615277565b601782019050919050565b60006141f0602a83614852565b91506141fb826152a0565b604082019050919050565b6000614213602e83614852565b915061421e826152ef565b604082019050919050565b6000614236601183614863565b91506142418261533e565b601182019050919050565b6000614259602f83614852565b915061426482615367565b604082019050919050565b614278816149f7565b82525050565b600061428a8284613e00565b915081905092915050565b60006142a18285613e6a565b91506142ad8284613e6a565b91508190509392505050565b60006142c4826141c0565b91506142d08285613e6a565b91506142db82614229565b91506142e78284613e6a565b91508190509392505050565b60006020820190506143086000830184613d9a565b92915050565b60006060820190506143236000830186613d9a565b6143306020830185613d9a565b61433d604083018461426f565b949350505050565b600060808201905061435a6000830187613d9a565b6143676020830186613d9a565b614374604083018561426f565b81810360608301526143868184613dc7565b905095945050505050565b60006040820190506143a66000830185613d9a565b6143b3602083018461426f565b9392505050565b60006020820190506143cf6000830184613da9565b92915050565b60006020820190506143ea6000830184613db8565b92915050565b6000602082019050818103600083015261440a8184613e31565b905092915050565b6000602082019050818103600083015261442b81613e9b565b9050919050565b6000602082019050818103600083015261444b81613ebe565b9050919050565b6000602082019050818103600083015261446b81613ee1565b9050919050565b6000602082019050818103600083015261448b81613f04565b9050919050565b600060208201905081810360008301526144ab81613f27565b9050919050565b600060208201905081810360008301526144cb81613f4a565b9050919050565b600060208201905081810360008301526144eb81613f6d565b9050919050565b6000602082019050818103600083015261450b81613f90565b9050919050565b6000602082019050818103600083015261452b81613fb3565b9050919050565b6000602082019050818103600083015261454b81613fd6565b9050919050565b6000602082019050818103600083015261456b81613ff9565b9050919050565b6000602082019050818103600083015261458b8161401c565b9050919050565b600060208201905081810360008301526145ab8161403f565b9050919050565b600060208201905081810360008301526145cb81614062565b9050919050565b600060208201905081810360008301526145eb81614085565b9050919050565b6000602082019050818103600083015261460b816140a8565b9050919050565b6000602082019050818103600083015261462b816140cb565b9050919050565b6000602082019050818103600083015261464b816140ee565b9050919050565b6000602082019050818103600083015261466b81614111565b9050919050565b6000602082019050818103600083015261468b81614134565b9050919050565b600060208201905081810360008301526146ab81614157565b9050919050565b600060208201905081810360008301526146cb8161417a565b9050919050565b600060208201905081810360008301526146eb8161419d565b9050919050565b6000602082019050818103600083015261470b816141e3565b9050919050565b6000602082019050818103600083015261472b81614206565b9050919050565b6000602082019050818103600083015261474b8161424c565b9050919050565b6000602082019050614767600083018461426f565b92915050565b6000614777614788565b90506147838282614a9f565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ad576147ac614c35565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156147d9576147d8614c35565b5b6147e282614c7d565b9050602081019050919050565b600067ffffffffffffffff82111561480a57614809614c35565b5b61481382614c7d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614879826149f7565b9150614884836149f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148b9576148b8614b4a565b5b828201905092915050565b60006148cf826149f7565b91506148da836149f7565b9250826148ea576148e9614b79565b5b828204905092915050565b6000614900826149f7565b915061490b836149f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494457614943614b4a565b5b828202905092915050565b600061495a826149f7565b9150614965836149f7565b92508282101561497857614977614b4a565b5b828203905092915050565b600061498e826149d7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a2e578082015181840152602081019050614a13565b83811115614a3d576000848401525b50505050565b6000614a4e826149f7565b91506000821415614a6257614a61614b4a565b5b600182039050919050565b60006002820490506001821680614a8557607f821691505b60208210811415614a9957614a98614ba8565b5b50919050565b614aa882614c7d565b810181811067ffffffffffffffff82111715614ac757614ac6614c35565b5b80604052505050565b6000614adb826149f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0e57614b0d614b4a565b5b600182019050919050565b6000614b24826149f7565b9150614b2f836149f7565b925082614b3f57614b3e614b79565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20746f6b656e207472616e60008201527f73666572207768696c6520706175736564000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a2073656e6465722069732060008201527f626c61636b6c6973746564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6275726e3a2063616c6c6572206973206e6f74206f776e6572206e6f7220617060008201527f70726f7665640000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20746f6b656e496420697360008201527f20626c61636b6c69737465640000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f52656d696e743a20746f6b656e4964206d757374206c657373207468616e207460008201527f6f6b656e49647300000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20726563697069656e742060008201527f697320626c61636b6c6973746564000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6153bf81614983565b81146153ca57600080fd5b50565b6153d681614995565b81146153e157600080fd5b50565b6153ed816149a1565b81146153f857600080fd5b50565b615404816149ab565b811461540f57600080fd5b50565b61541b816149f7565b811461542657600080fd5b5056fea264697066735822122038d23f44b69ca8cd8837de3b720e1049acbb8ef1023093758432ecc34bf0333864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c25b331dbe1a46e8de07fc6f4793bb24b94b00b00000000000000000000000000000000000000000000000000000000000000064554484e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454e465400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c80636a6278421161015c578063a217fddf116100ce578063d539139311610087578063d53913931461078c578063d547741f146107aa578063e0644962146107c6578063e8a3d485146107e2578063e985e9c514610800578063f5b541a6146108305761027f565b8063a217fddf146106ce578063a22cb465146106ec578063abe6eaa814610708578063b88d4fde14610724578063bdf1be5d14610740578063c87b56dd1461075c5761027f565b8063938e3d7b11610120578063938e3d7b146105fc5780639456fbcc1461061857806395d89b411461063457806399cd933e146106525780639f21a00a14610682578063a0fd4c951461069e5761027f565b80636a6278421461055857806370a0823114610574578063714cff56146105a45780638456cb59146105c257806391d14854146105cc5761027f565b80632f745c59116101f557806342966c68116101b957806342966c68146104865780634f6ccce7146104a257806353056bf6146104d257806355f804b3146104ee5780635c975abb1461050a5780636352211e146105285761027f565b80632f745c59146103f857806336568abe146104285780633f4ba83a146104445780634025feb21461044e57806342842e0e1461046a5761027f565b806309617d781161024757806309617d781461033a57806318160ddd1461035657806323b872dd14610374578063248a9ca314610390578063248b71fc146103c05780632f2ff15d146103dc5761027f565b806301ffc9a714610284578063034601ec146102b457806306fdde03146102d0578063081812fc146102ee578063095ea7b31461031e575b600080fd5b61029e60048036038101906102999190613c9d565b61084e565b6040516102ab91906143ba565b60405180910390f35b6102ce60048036038101906102c991906139d7565b610860565b005b6102d86108be565b6040516102e591906143f0565b60405180910390f35b61030860048036038101906103039190613d40565b610950565b60405161031591906142f3565b60405180910390f35b61033860048036038101906103339190613bc3565b610996565b005b610354600480360381019061034f919061396a565b610aae565b005b61035e610b77565b60405161036b9190614752565b60405180910390f35b61038e60048036038101906103899190613a46565b610b84565b005b6103aa60048036038101906103a59190613c30565b610be4565b6040516103b791906143d5565b60405180910390f35b6103da60048036038101906103d59190613bc3565b610c03565b005b6103f660048036038101906103f19190613c5d565b610c6f565b005b610412600480360381019061040d9190613bc3565b610c90565b60405161041f9190614752565b60405180910390f35b610442600480360381019061043d9190613c5d565b610d35565b005b61044c610db8565b005b61046860048036038101906104639190613a46565b610dd0565b005b610484600480360381019061047f9190613a46565b610e52565b005b6104a0600480360381019061049b9190613d40565b610e72565b005b6104bc60048036038101906104b79190613d40565b610ee9565b6040516104c99190614752565b60405180910390f35b6104ec60048036038101906104e79190613bc3565b610f5a565b005b61050860048036038101906105039190613cf7565b610fe0565b005b610512611025565b60405161051f91906143ba565b60405180910390f35b610542600480360381019061053d9190613d40565b61103c565b60405161054f91906142f3565b60405180910390f35b610572600480360381019061056d919061396a565b6110ee565b005b61058e6004803603810190610589919061396a565b61113c565b60405161059b9190614752565b60405180910390f35b6105ac6111f4565b6040516105b99190614752565b60405180910390f35b6105ca6111fa565b005b6105e660048036038101906105e19190613c5d565b611212565b6040516105f391906143ba565b60405180910390f35b61061660048036038101906106119190613cf7565b61127c565b005b610632600480360381019061062d9190613997565b6112c1565b005b61063c611392565b60405161064991906143f0565b60405180910390f35b61066c6004803603810190610667919061396a565b611424565b60405161067991906143ba565b60405180910390f35b61069c60048036038101906106979190613d40565b61147a565b005b6106b860048036038101906106b39190613d40565b611501565b6040516106c591906143ba565b60405180910390f35b6106d661152b565b6040516106e391906143d5565b60405180910390f35b61070660048036038101906107019190613b83565b611532565b005b610722600480360381019061071d9190613b1c565b611548565b005b61073e60048036038101906107399190613a99565b61159a565b005b61075a60048036038101906107559190613d40565b6115fc565b005b61077660048036038101906107719190613d40565b611683565b60405161078391906143f0565b60405180910390f35b6107946116eb565b6040516107a191906143d5565b60405180910390f35b6107c460048036038101906107bf9190613c5d565b61170f565b005b6107e060048036038101906107db919061396a565b611730565b005b6107ea6117f9565b6040516107f791906143f0565b60405180910390f35b61081a60048036038101906108159190613997565b61188b565b60405161082791906143ba565b60405180910390f35b61083861191f565b60405161084591906143d5565b60405180910390f35b600061085982611943565b9050919050565b60005b81518110156108b857600082828151811061088157610880614c06565b5b602002602001015190506108a68585836040518060200160405280600081525061159a565b50806108b190614ad0565b9050610863565b50505050565b6060600280546108cd90614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990614a6d565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095b826119bd565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a18261103c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0990614692565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a31611a08565b73ffffffffffffffffffffffffffffffffffffffff161480610a605750610a5f81610a5a611a08565b61188b565b5b610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906145f2565b60405180910390fd5b610aa98383611a10565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929610ad881611ac9565b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f577113d77e79f49989fe02ced615218195847a6e5f43c631d7186881f33e341560405160405180910390a25050565b6000600a80549050905090565b610b95610b8f611a08565b82611add565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614712565b60405180910390fd5b610bdf838383611b72565b505050565b6000806000838152602001908152602001600020600101549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c2d81611ac9565b60005b82811015610c6957610c588460106000815480929190610c4f90614ad0565b91905055611dd9565b80610c6290614ad0565b9050610c30565b50505050565b610c7882610be4565b610c8181611ac9565b610c8b8383611fb3565b505050565b6000610c9b8361113c565b8210610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390614452565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d3d611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190614732565b60405180910390fd5b610db48282612093565b5050565b6000801b610dc581611ac9565b610dcd612174565b50565b6000801b610ddd81611ac9565b8373ffffffffffffffffffffffffffffffffffffffff166323b872dd3085856040518463ffffffff1660e01b8152600401610e1a9392919061430e565b600060405180830381600087803b158015610e3457600080fd5b505af1158015610e48573d6000803e3d6000fd5b5050505050505050565b610e6d8383836040518060200160405280600081525061159a565b505050565b610e83610e7d611a08565b82611add565b80610e9e5750610e9d6000801b610e98611a08565b611212565b5b610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906145b2565b60405180910390fd5b610ee6816121d7565b50565b6000610ef3610b77565b8210610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906146d2565b60405180910390fd5b600a8281548110610f4857610f47614c06565b5b90600052602060002001549050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f8481611ac9565b6010548210610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90614632565b60405180910390fd5b610fd1826121d7565b610fdb8383611dd9565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961100a81611ac9565b81600c90805190602001906110209291906136a1565b505050565b6000600160009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614672565b60405180910390fd5b80915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661111881611ac9565b611138826010600081548092919061112f90614ad0565b91905055611dd9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614592565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60105481565b6000801b61120781611ac9565b61120f6122f4565b50565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296112a681611ac9565b81600d90805190602001906112bc9291906136a1565b505050565b6000801b6112ce81611ac9565b600083905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161130e91906142f3565b60206040518083038186803b15801561132657600080fd5b505afa15801561133a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135e9190613d6d565b905061138b84828473ffffffffffffffffffffffffffffffffffffffff166123569092919063ffffffff16565b5050505050565b6060600380546113a190614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90614a6d565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b9296114a481611ac9565b6001600f600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817f09d79ed2b74f3881a897349ff00daf5c6f84d6bfd53cb8de3af6e88cd1bd988960405160405180910390a25050565b6000600f600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000801b81565b61154461153d611a08565b83836123dc565b5050565b60008183611556919061486e565b905060008390505b81811015611592576115818686836040518060200160405280600081525061159a565b8061158b90614ad0565b905061155e565b505050505050565b6115ab6115a5611a08565b83611add565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614712565b60405180910390fd5b6115f684848484612549565b50505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961162681611ac9565b6000600f600084815260200190815260200160002060006101000a81548160ff021916908315150217905550817f8458e5f5a0bd5e7af03ffd6d135c961b031d61a291f05fa19b36e05592383a2360405160405180910390a25050565b606061168e826119bd565b60006116986125a5565b905060008151116116b857604051806020016040528060008152506116e3565b806116c284612637565b6040516020016116d3929190614295565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61171882610be4565b61172181611ac9565b61172b8383612093565b505050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92961175a81611ac9565b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f92dd3d624e88ae56ea7787c96e127ee7ce0279a4a148dc248d44222ec6e7712660405160405180910390a25050565b6060600d805461180890614a6d565b80601f016020809104026020016040519081016040528092919081815260200182805461183490614a6d565b80156118815780601f1061185657610100808354040283529160200191611881565b820191906000526020600020905b81548152906001019060200180831161186457829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b657506119b582612798565b5b9050919050565b6119c68161287a565b611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90614672565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a838361103c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611ada81611ad5611a08565b6128e6565b50565b600080611ae98361103c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b2b5750611b2a818561188b565b5b80611b6957508373ffffffffffffffffffffffffffffffffffffffff16611b5184610950565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b928261103c565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90614492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906144d2565b60405180910390fd5b611c63838383612983565b611c6e600082611a10565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cbe919061494f565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d15919061486e565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd4838383612ab6565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4090614612565b60405180910390fd5b611e528161287a565b15611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e89906144b2565b60405180910390fd5b611e9e60008383612983565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eee919061486e565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf60008383612ab6565b5050565b611fbd8282611212565b61208f57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612034611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61209d8282611212565b1561217057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612115611a08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61217c612abb565b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121c0611a08565b6040516121cd91906142f3565b60405180910390a1565b60006121e28261103c565b90506121f081600084612983565b6121fb600083611a10565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224b919061494f565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122f081600084612ab6565b5050565b6122fc612b04565b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861233f611a08565b60405161234c91906142f3565b60405180910390a1565b6123d78363a9059cbb60e01b8484604051602401612375929190614391565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612b4e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906144f2565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161253c91906143ba565b60405180910390a3505050565b612554848484611b72565b61256084848484612c15565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614472565b60405180910390fd5b50505050565b6060600c80546125b490614a6d565b80601f01602080910402602001604051908101604052809291908181526020018280546125e090614a6d565b801561262d5780601f106126025761010080835404028352916020019161262d565b820191906000526020600020905b81548152906001019060200180831161261057829003601f168201915b5050505050905090565b6060600082141561267f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612793565b600082905060005b600082146126b157808061269a90614ad0565b915050600a826126aa91906148c4565b9150612687565b60008167ffffffffffffffff8111156126cd576126cc614c35565b5b6040519080825280601f01601f1916602001820160405280156126ff5781602001600182028036833780820191505090505b5090505b6000851461278c57600182612718919061494f565b9150600a856127279190614b19565b6030612733919061486e565b60f81b81838151811061274957612748614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561278591906148c4565b9450612703565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612873575061287282612dac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6128f08282611212565b61297f576129158173ffffffffffffffffffffffffffffffffffffffff166014612e26565b6129238360001c6020612e26565b6040516020016129349291906142b9565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297691906143f0565b60405180910390fd5b5050565b61298e838383613062565b612996611025565b156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd90614512565b60405180910390fd5b6129df83611424565b15612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1690614552565b60405180910390fd5b612a2882611424565b15612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90614652565b60405180910390fd5b612a7181611501565b15612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa8906145d2565b60405180910390fd5b505050565b505050565b612ac3611025565b612b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af990614432565b60405180910390fd5b565b612b0c611025565b15612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4390614572565b60405180910390fd5b565b6000612bb0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131769092919063ffffffff16565b9050600081511115612c105780806020019051810190612bd09190613c03565b612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c06906146f2565b60405180910390fd5b5b505050565b6000612c368473ffffffffffffffffffffffffffffffffffffffff1661318e565b15612d9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c5f611a08565b8786866040518563ffffffff1660e01b8152600401612c819493929190614345565b602060405180830381600087803b158015612c9b57600080fd5b505af1925050508015612ccc57506040513d601f19601f82011682018060405250810190612cc99190613cca565b60015b612d4f573d8060008114612cfc576040519150601f19603f3d011682016040523d82523d6000602084013e612d01565b606091505b50600081511415612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90614472565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612da4565b600190505b949350505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1f5750612e1e826131b1565b5b9050919050565b606060006002836002612e3991906148f5565b612e43919061486e565b67ffffffffffffffff811115612e5c57612e5b614c35565b5b6040519080825280601f01601f191660200182016040528015612e8e5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612ec657612ec5614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612f2a57612f29614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612f6a91906148f5565b612f74919061486e565b90505b6001811115613014577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612fb657612fb5614c06565b5b1a60f81b828281518110612fcd57612fcc614c06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061300d90614a43565b9050612f77565b5060008414613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304f90614412565b60405180910390fd5b8091505092915050565b61306d83838361321b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130b0576130ab81613220565b6130ef565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130ee576130ed8382613269565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131325761312d816133d6565b613171565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131705761316f82826134a7565b5b5b505050565b60606131858484600085613526565b90509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132768461113c565b613280919061494f565b9050600060096000848152602001908152602001600020549050818114613365576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506133ea919061494f565b90506000600b60008481526020019081526020016000205490506000600a838154811061341a57613419614c06565b5b9060005260206000200154905080600a838154811061343c5761343b614c06565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061348b5761348a614bd7565b5b6001900381819060005260206000200160009055905550505050565b60006134b28361113c565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60608247101561356b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356290614532565b60405180910390fd5b6135748561318e565b6135b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135aa906146b2565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135dc919061427e565b60006040518083038185875af1925050503d8060008114613619576040519150601f19603f3d011682016040523d82523d6000602084013e61361e565b606091505b509150915061362e82828661363a565b92505050949350505050565b6060831561364a5782905061369a565b60008351111561365d5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369191906143f0565b60405180910390fd5b9392505050565b8280546136ad90614a6d565b90600052602060002090601f0160209004810192826136cf5760008555613716565b82601f106136e857805160ff1916838001178555613716565b82800160010185558215613716579182015b828111156137155782518255916020019190600101906136fa565b5b5090506137239190613727565b5090565b5b80821115613740576000816000905550600101613728565b5090565b600061375761375284614792565b61476d565b9050808382526020820190508285602086028201111561377a57613779614c69565b5b60005b858110156137aa57816137908882613940565b84526020840193506020830192505060018101905061377d565b5050509392505050565b60006137c76137c2846147be565b61476d565b9050828152602081018484840111156137e3576137e2614c6e565b5b6137ee848285614a01565b509392505050565b6000613809613804846147ef565b61476d565b90508281526020810184848401111561382557613824614c6e565b5b613830848285614a01565b509392505050565b600081359050613847816153b6565b92915050565b600082601f83011261386257613861614c64565b5b8135613872848260208601613744565b91505092915050565b60008135905061388a816153cd565b92915050565b60008151905061389f816153cd565b92915050565b6000813590506138b4816153e4565b92915050565b6000813590506138c9816153fb565b92915050565b6000815190506138de816153fb565b92915050565b600082601f8301126138f9576138f8614c64565b5b81356139098482602086016137b4565b91505092915050565b600082601f83011261392757613926614c64565b5b81356139378482602086016137f6565b91505092915050565b60008135905061394f81615412565b92915050565b60008151905061396481615412565b92915050565b6000602082840312156139805761397f614c78565b5b600061398e84828501613838565b91505092915050565b600080604083850312156139ae576139ad614c78565b5b60006139bc85828601613838565b92505060206139cd85828601613838565b9150509250929050565b6000806000606084860312156139f0576139ef614c78565b5b60006139fe86828701613838565b9350506020613a0f86828701613838565b925050604084013567ffffffffffffffff811115613a3057613a2f614c73565b5b613a3c8682870161384d565b9150509250925092565b600080600060608486031215613a5f57613a5e614c78565b5b6000613a6d86828701613838565b9350506020613a7e86828701613838565b9250506040613a8f86828701613940565b9150509250925092565b60008060008060808587031215613ab357613ab2614c78565b5b6000613ac187828801613838565b9450506020613ad287828801613838565b9350506040613ae387828801613940565b925050606085013567ffffffffffffffff811115613b0457613b03614c73565b5b613b10878288016138e4565b91505092959194509250565b60008060008060808587031215613b3657613b35614c78565b5b6000613b4487828801613838565b9450506020613b5587828801613838565b9350506040613b6687828801613940565b9250506060613b7787828801613940565b91505092959194509250565b60008060408385031215613b9a57613b99614c78565b5b6000613ba885828601613838565b9250506020613bb98582860161387b565b9150509250929050565b60008060408385031215613bda57613bd9614c78565b5b6000613be885828601613838565b9250506020613bf985828601613940565b9150509250929050565b600060208284031215613c1957613c18614c78565b5b6000613c2784828501613890565b91505092915050565b600060208284031215613c4657613c45614c78565b5b6000613c54848285016138a5565b91505092915050565b60008060408385031215613c7457613c73614c78565b5b6000613c82858286016138a5565b9250506020613c9385828601613838565b9150509250929050565b600060208284031215613cb357613cb2614c78565b5b6000613cc1848285016138ba565b91505092915050565b600060208284031215613ce057613cdf614c78565b5b6000613cee848285016138cf565b91505092915050565b600060208284031215613d0d57613d0c614c78565b5b600082013567ffffffffffffffff811115613d2b57613d2a614c73565b5b613d3784828501613912565b91505092915050565b600060208284031215613d5657613d55614c78565b5b6000613d6484828501613940565b91505092915050565b600060208284031215613d8357613d82614c78565b5b6000613d9184828501613955565b91505092915050565b613da381614983565b82525050565b613db281614995565b82525050565b613dc1816149a1565b82525050565b6000613dd282614820565b613ddc8185614836565b9350613dec818560208601614a10565b613df581614c7d565b840191505092915050565b6000613e0b82614820565b613e158185614847565b9350613e25818560208601614a10565b80840191505092915050565b6000613e3c8261482b565b613e468185614852565b9350613e56818560208601614a10565b613e5f81614c7d565b840191505092915050565b6000613e758261482b565b613e7f8185614863565b9350613e8f818560208601614a10565b80840191505092915050565b6000613ea8602083614852565b9150613eb382614c8e565b602082019050919050565b6000613ecb601483614852565b9150613ed682614cb7565b602082019050919050565b6000613eee602b83614852565b9150613ef982614ce0565b604082019050919050565b6000613f11603283614852565b9150613f1c82614d2f565b604082019050919050565b6000613f34602583614852565b9150613f3f82614d7e565b604082019050919050565b6000613f57601c83614852565b9150613f6282614dcd565b602082019050919050565b6000613f7a602483614852565b9150613f8582614df6565b604082019050919050565b6000613f9d601983614852565b9150613fa882614e45565b602082019050919050565b6000613fc0603183614852565b9150613fcb82614e6e565b604082019050919050565b6000613fe3602683614852565b9150613fee82614ebd565b604082019050919050565b6000614006602b83614852565b915061401182614f0c565b604082019050919050565b6000614029601083614852565b915061403482614f5b565b602082019050919050565b600061404c602983614852565b915061405782614f84565b604082019050919050565b600061406f602683614852565b915061407a82614fd3565b604082019050919050565b6000614092602c83614852565b915061409d82615022565b604082019050919050565b60006140b5603e83614852565b91506140c082615071565b604082019050919050565b60006140d8602083614852565b91506140e3826150c0565b602082019050919050565b60006140fb602783614852565b9150614106826150e9565b604082019050919050565b600061411e602e83614852565b915061412982615138565b604082019050919050565b6000614141601883614852565b915061414c82615187565b602082019050919050565b6000614164602183614852565b915061416f826151b0565b604082019050919050565b6000614187601d83614852565b9150614192826151ff565b602082019050919050565b60006141aa602c83614852565b91506141b582615228565b604082019050919050565b60006141cd601783614863565b91506141d882615277565b601782019050919050565b60006141f0602a83614852565b91506141fb826152a0565b604082019050919050565b6000614213602e83614852565b915061421e826152ef565b604082019050919050565b6000614236601183614863565b91506142418261533e565b601182019050919050565b6000614259602f83614852565b915061426482615367565b604082019050919050565b614278816149f7565b82525050565b600061428a8284613e00565b915081905092915050565b60006142a18285613e6a565b91506142ad8284613e6a565b91508190509392505050565b60006142c4826141c0565b91506142d08285613e6a565b91506142db82614229565b91506142e78284613e6a565b91508190509392505050565b60006020820190506143086000830184613d9a565b92915050565b60006060820190506143236000830186613d9a565b6143306020830185613d9a565b61433d604083018461426f565b949350505050565b600060808201905061435a6000830187613d9a565b6143676020830186613d9a565b614374604083018561426f565b81810360608301526143868184613dc7565b905095945050505050565b60006040820190506143a66000830185613d9a565b6143b3602083018461426f565b9392505050565b60006020820190506143cf6000830184613da9565b92915050565b60006020820190506143ea6000830184613db8565b92915050565b6000602082019050818103600083015261440a8184613e31565b905092915050565b6000602082019050818103600083015261442b81613e9b565b9050919050565b6000602082019050818103600083015261444b81613ebe565b9050919050565b6000602082019050818103600083015261446b81613ee1565b9050919050565b6000602082019050818103600083015261448b81613f04565b9050919050565b600060208201905081810360008301526144ab81613f27565b9050919050565b600060208201905081810360008301526144cb81613f4a565b9050919050565b600060208201905081810360008301526144eb81613f6d565b9050919050565b6000602082019050818103600083015261450b81613f90565b9050919050565b6000602082019050818103600083015261452b81613fb3565b9050919050565b6000602082019050818103600083015261454b81613fd6565b9050919050565b6000602082019050818103600083015261456b81613ff9565b9050919050565b6000602082019050818103600083015261458b8161401c565b9050919050565b600060208201905081810360008301526145ab8161403f565b9050919050565b600060208201905081810360008301526145cb81614062565b9050919050565b600060208201905081810360008301526145eb81614085565b9050919050565b6000602082019050818103600083015261460b816140a8565b9050919050565b6000602082019050818103600083015261462b816140cb565b9050919050565b6000602082019050818103600083015261464b816140ee565b9050919050565b6000602082019050818103600083015261466b81614111565b9050919050565b6000602082019050818103600083015261468b81614134565b9050919050565b600060208201905081810360008301526146ab81614157565b9050919050565b600060208201905081810360008301526146cb8161417a565b9050919050565b600060208201905081810360008301526146eb8161419d565b9050919050565b6000602082019050818103600083015261470b816141e3565b9050919050565b6000602082019050818103600083015261472b81614206565b9050919050565b6000602082019050818103600083015261474b8161424c565b9050919050565b6000602082019050614767600083018461426f565b92915050565b6000614777614788565b90506147838282614a9f565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ad576147ac614c35565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156147d9576147d8614c35565b5b6147e282614c7d565b9050602081019050919050565b600067ffffffffffffffff82111561480a57614809614c35565b5b61481382614c7d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614879826149f7565b9150614884836149f7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148b9576148b8614b4a565b5b828201905092915050565b60006148cf826149f7565b91506148da836149f7565b9250826148ea576148e9614b79565b5b828204905092915050565b6000614900826149f7565b915061490b836149f7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494457614943614b4a565b5b828202905092915050565b600061495a826149f7565b9150614965836149f7565b92508282101561497857614977614b4a565b5b828203905092915050565b600061498e826149d7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a2e578082015181840152602081019050614a13565b83811115614a3d576000848401525b50505050565b6000614a4e826149f7565b91506000821415614a6257614a61614b4a565b5b600182039050919050565b60006002820490506001821680614a8557607f821691505b60208210811415614a9957614a98614ba8565b5b50919050565b614aa882614c7d565b810181811067ffffffffffffffff82111715614ac757614ac6614c35565b5b80604052505050565b6000614adb826149f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0e57614b0d614b4a565b5b600182019050919050565b6000614b24826149f7565b9150614b2f836149f7565b925082614b3f57614b3e614b79565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20746f6b656e207472616e60008201527f73666572207768696c6520706175736564000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a2073656e6465722069732060008201527f626c61636b6c6973746564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6275726e3a2063616c6c6572206973206e6f74206f776e6572206e6f7220617060008201527f70726f7665640000000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20746f6b656e496420697360008201527f20626c61636b6c69737465640000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f52656d696e743a20746f6b656e4964206d757374206c657373207468616e207460008201527f6f6b656e49647300000000000000000000000000000000000000000000000000602082015250565b7f5f6265666f7265546f6b656e5472616e736665723a20726563697069656e742060008201527f697320626c61636b6c6973746564000000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6153bf81614983565b81146153ca57600080fd5b50565b6153d681614995565b81146153e157600080fd5b50565b6153ed816149a1565b81146153f857600080fd5b50565b615404816149ab565b811461540f57600080fd5b50565b61541b816149f7565b811461542657600080fd5b5056fea264697066735822122038d23f44b69ca8cd8837de3b720e1049acbb8ef1023093758432ecc34bf0333864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c25b331dbe1a46e8de07fc6f4793bb24b94b00b00000000000000000000000000000000000000000000000000000000000000064554484e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004454e465400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ETHNFT
Arg [1] : symbol (string): ENFT
Arg [2] : startTokenId (uint256): 0
Arg [3] : owner (address): 0x0c25b331dBe1A46e8dE07fC6f4793Bb24b94B00B

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000c25b331dbe1a46e8de07fc6f4793bb24b94b00b
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4554484e46540000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 454e465400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

428:7085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6881:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4345:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2470:98:8;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5509:169:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:111:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4612:327:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4391:129:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3952:173:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4816:145:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1291:253:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5925:214:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3388:90:0;;;:::i;:::-;;7321:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5005:179:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2201:225:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1798:230:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:213:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2433:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:84:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2190:218:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3853:93:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1929:204:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;842:23:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3108:86;;;:::i;:::-;;2895:145:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2682:127:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7071:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2632:102:8;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6029:122:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5684:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6157:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2027:49:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4867:247:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5854:169:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2800:276:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;871:62:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5241:147:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5339:164:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2815:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:8;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;939:66:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6881:184;6999:4;7022:36;7046:11;7022:23;:36::i;:::-;7015:43;;6881:184;;;:::o;4345:235::-;4446:9;4441:133;4465:3;:10;4461:1;:14;4441:133;;;4496:10;4509:3;4513:1;4509:6;;;;;;;;:::i;:::-;;;;;;;;4496:19;;4529:34;4546:4;4552:2;4556;4529:34;;;;;;;;;;;;:16;:34::i;:::-;4482:92;4477:3;;;;:::i;:::-;;;4441:133;;;;4345:235;;;:::o;2470:98:8:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;3604:11;;:2;:11;;;;3596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:5;3685:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3710:37;3727:5;3734:12;:10;:12::i;:::-;3710:16;:37::i;:::-;3685:62;3664:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;5509:169:0:-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;5624:5:0::1;5595:17;:26;5613:7;5595:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;5663:7;5644:27;;;;;;;;;;;;5509:169:::0;;:::o;1615:111:11:-;1676:7;1702:10;:17;;;;1695:24;;1615:111;:::o;4612:327:8:-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;4391:129:1:-;4465:7;4491:6;:12;4498:4;4491:12;;;;;;;;;;;:22;;;4484:29;;4391:129;;;:::o;3952:173:0:-;909:24;2505:16:1;2516:4;2505:10;:16::i;:::-;4042:9:0::1;4037:82;4061:5;4057:1;:9;4037:82;;;4087:21;4093:2;4097:8;;:10;;;;;;;;;:::i;:::-;;;;;4087:5;:21::i;:::-;4068:3;;;;:::i;:::-;;;4037:82;;;;3952:173:::0;;;:::o;4816:145:1:-;4899:18;4912:4;4899:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;4929:25:::1;4940:4;4946:7;4929:10;:25::i;:::-;4816:145:::0;;;:::o;1291:253:11:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1511:12;:19;1524:5;1511:19;;;;;;;;;;;;;;;:26;1531:5;1511:26;;;;;;;;;;;;1504:33;;1291:253;;;;:::o;5925:214:1:-;6031:12;:10;:12::i;:::-;6020:23;;:7;:23;;;6012:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;6106:26;6118:4;6124:7;6106:11;:26::i;:::-;5925:214;;:::o;3388:90:0:-;2072:4:1;3431:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;3461:10:0::1;:8;:10::i;:::-;3388:90:::0;:::o;7321:190::-;2072:4:1;7412:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;7450:12:0::1;7442:34;;;7485:4;7492:2;7496:7;7442:62;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;7321:190:::0;;;;:::o;5005:179:8:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;2201:225:0:-;2266:41;2285:12;:10;:12::i;:::-;2299:7;2266:18;:41::i;:::-;:85;;;;2311:40;2072:4:1;2319:18:0;;2338:12;:10;:12::i;:::-;2311:7;:40::i;:::-;2266:85;2257:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;2405:14;2411:7;2405:5;:14::i;:::-;2201:225;:::o;1798:230:11:-;1873:7;1908:30;:28;:30::i;:::-;1900:5;:38;1892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;;1997:24;;1798:230;;;:::o;5120:213:0:-;909:24;2505:16:1;2516:4;2505:10;:16::i;:::-;5222:8:0::1;;5212:7;:18;5204:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5284:14;5290:7;5284:5;:14::i;:::-;5308:18;5314:2;5318:7;5308:5;:18::i;:::-;5120:213:::0;;;:::o;2433:124::-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;2538:12:0::1;2522:13;:28;;;;;;;;;;;;:::i;:::-;;2433:124:::0;;:::o;1615:84:4:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;2190:218:8:-;2262:7;2281:13;2297:7;:16;2305:7;2297:16;;;;;;;;;;;;;;;;;;;;;2281:32;;2348:1;2331:19;;:5;:19;;;;2323:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2396:5;2389:12;;;2190:218;;;:::o;3853:93:0:-;909:24;2505:16:1;2516:4;2505:10;:16::i;:::-;3918:21:0::1;3924:2;3928:8;;:10;;;;;;;;;:::i;:::-;;;;;3918:5;:21::i;:::-;3853:93:::0;;:::o;1929:204:8:-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;842:23:0:-;;;;:::o;3108:86::-;2072:4:1;3149:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;3179:8:0::1;:6;:8::i;:::-;3108:86:::0;:::o;2895:145:1:-;2981:4;3004:6;:12;3011:4;3004:12;;;;;;;;;;;:20;;:29;3025:7;3004:29;;;;;;;;;;;;;;;;;;;;;;;;;2997:36;;2895:145;;;;:::o;2682:127:0:-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;2790:12:0::1;2775;:27;;;;;;;;;;;;:::i;:::-;;2682:127:::0;;:::o;7071:244::-;2072:4:1;7144:18:0;;2505:16:1;2516:4;2505:10;:16::i;:::-;7174:12:0::1;7196;7174:35;;7219:15;7237:5;:15;;;7261:4;7237:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7219:48;;7277:31;7296:2;7300:7;7277:5;:18;;;;:31;;;;;:::i;:::-;7164:151;;7071:244:::0;;;:::o;2632:102:8:-;2688:13;2720:7;2713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:102;:::o;6029:122:0:-;6095:4;6118:17;:26;6136:7;6118:26;;;;;;;;;;;;;;;;;;;;;;;;;6111:33;;6029:122;;;:::o;5684:164::-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;5797:4:0::1;5768:17;:26;5786:7;5768:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;5833:7;5816:25;;;;;;;;;;5684:164:::0;;:::o;6157:122::-;6223:4;6246:17;:26;6264:7;6246:26;;;;;;;;;;;;;;;;;;;;;6239:33;;6157:122;;;:::o;2027:49:1:-;2072:4;2027:49;;;:::o;4169:153:8:-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;4867:247:0:-;4971:11;4993:5;4985;:13;;;;:::i;:::-;4971:27;;5013:10;5026:5;5013:18;;5008:100;5038:3;5033:2;:8;5008:100;;;5063:34;5080:4;5086:2;5090;5063:34;;;;;;;;;;;;:16;:34::i;:::-;5043:4;;;;:::i;:::-;;;5008:100;;;;4961:153;4867:247;;;;:::o;5250:315:8:-;5418:41;5437:12;:10;:12::i;:::-;5451:7;5418:18;:41::i;:::-;5410:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;5854:169:0:-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;5969:5:0::1;5940:17;:26;5958:7;5940:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;6008:7;5989:27;;;;;;;;;;5854:169:::0;;:::o;2800:276:8:-;2873:13;2898:23;2913:7;2898:14;:23::i;:::-;2932:21;2956:10;:8;:10::i;:::-;2932:34;;3007:1;2989:7;2983:21;:25;:86;;;;;;;;;;;;;;;;;3035:7;3044:18;:7;:16;:18::i;:::-;3018:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2983:86;2976:93;;;2800:276;;;:::o;871:62:0:-;909:24;871:62;:::o;5241:147:1:-;5325:18;5338:4;5325:12;:18::i;:::-;2505:16;2516:4;2505:10;:16::i;:::-;5355:26:::1;5367:4;5373:7;5355:11;:26::i;:::-;5241:147:::0;;;:::o;5339:164:0:-;979:26;2505:16:1;2516:4;2505:10;:16::i;:::-;5452:4:0::1;5423:17;:26;5441:7;5423:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;5488:7;5471:25;;;;;;;;;;;;5339:164:::0;;:::o;2815:103::-;2867:13;2899:12;2892:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2815:103;:::o;4388:162:8:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;939:66:0:-;979:26;939:66;:::o;990:222:11:-;1092:4;1130:35;1115:50;;;:11;:50;;;;:90;;;;1169:36;1193:11;1169:23;:36::i;:::-;1115:90;1108:97;;990:222;;;:::o;11657:133:8:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:15:-;693:7;719:10;712:17;;640:96;:::o;10959:171:8:-;11060:2;11033:15;:24;11049:7;11033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11115:7;11111:2;11077:46;;11086:23;11101:7;11086:14;:23::i;:::-;11077:46;;;;;;;;;;;;10959:171;;:::o;3334:103:1:-;3400:30;3411:4;3417:12;:10;:12::i;:::-;3400:10;:30::i;:::-;3334:103;:::o;7317:261:8:-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;7483:16;;:7;:16;;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:52;:87;;;;7563:7;7539:31;;:20;7551:7;7539:11;:20::i;:::-;:31;;;7483:87;7475:96;;;7317:261;;;;:::o;10242:605::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10474:1;10460:16;;:2;:16;;;;10452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;10688:1;10669:9;:15;10679:4;10669:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10716:1;10699:9;:13;10709:2;10699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10746:2;10727:7;:16;10735:7;10727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10783:7;10779:2;10764:27;;10773:4;10764:27;;;;;;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;:::-;10242:605;;;:::o;8868:427::-;8961:1;8947:16;;:2;:16;;;;8939:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:16;9027:7;9019;:16::i;:::-;9018:17;9010:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;9152:1;9135:9;:13;9145:2;9135:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9182:2;9163:7;:16;9171:7;9163:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9225:7;9221:2;9200:33;;9217:1;9200:33;;;;;;;;;;;;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;:::-;8868:427;;:::o;7474:233:1:-;7557:22;7565:4;7571:7;7557;:22::i;:::-;7552:149;;7627:4;7595:6;:12;7602:4;7595:12;;;;;;;;;;;:20;;:29;7616:7;7595:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7677:12;:10;:12::i;:::-;7650:40;;7668:7;7650:40;;7662:4;7650:40;;;;;;;;;;7552:149;7474:233;;:::o;7878:234::-;7961:22;7969:4;7975:7;7961;:22::i;:::-;7957:149;;;8031:5;7999:6;:12;8006:4;7999:12;;;;;;;;;;;:20;;:29;8020:7;7999:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8082:12;:10;:12::i;:::-;8055:40;;8073:7;8055:40;;8067:4;8055:40;;;;;;;;;;7957:149;7878:234;;:::o;2433:117:4:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7;;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;9512:406:8:-;9571:13;9587:23;9602:7;9587:14;:23::i;:::-;9571:39;;9621:48;9642:5;9657:1;9661:7;9621:20;:48::i;:::-;9707:29;9724:1;9728:7;9707:8;:29::i;:::-;9767:1;9747:9;:16;9757:5;9747:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;9785:7;:16;9793:7;9785:16;;;;;;;;;;;;9778:23;;;;;;;;;;;9845:7;9841:1;9817:36;;9826:5;9817:36;;;;;;;;;;;;9864:47;9884:5;9899:1;9903:7;9864:19;:47::i;:::-;9561:357;9512:406;:::o;2186:115:4:-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7:::0;::::1;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;763:205:7:-;875:86;895:5;925:23;;;950:2;954:5;902:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:19;:86::i;:::-;763:205;;;:::o;11266:307:8:-;11416:8;11407:17;;:5;:17;;;;11399:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11502:8;11464:18;:25;11483:5;11464:25;;;;;;;;;;;;;;;:35;11490:8;11464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11547:8;11525:41;;11540:5;11525:41;;;11557:8;11525:41;;;;;;:::i;:::-;;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6426:305;;;;:::o;2563:112:0:-;2623:13;2655;2648:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2563:112;:::o;392:703:16:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;1570:300:8:-;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;7034:125::-;7099:4;7150:1;7122:30;;:7;:16;7130:7;7122:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7115:37;;7034:125;;;:::o;3718:492:1:-;3806:22;3814:4;3820:7;3806;:22::i;:::-;3801:403;;3989:41;4017:7;3989:41;;4027:2;3989:19;:41::i;:::-;4101:38;4129:4;4121:13;;4136:2;4101:19;:38::i;:::-;3896:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3844:349;;;;;;;;;;;:::i;:::-;;;;;;;;3801:403;3718:492;;:::o;6285:529:0:-;6394:45;6421:4;6427:2;6431:7;6394:26;:45::i;:::-;6467:8;:6;:8::i;:::-;6466:9;6458:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6548:24;6567:4;6548:18;:24::i;:::-;6547:25;6539:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6639:22;6658:2;6639:18;:22::i;:::-;6638:23;6630:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;6731:27;6750:7;6731:18;:27::i;:::-;6730:28;6722:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6285:529;;;:::o;14223:121:8:-;;;;:::o;1945:106:4:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;1767:::-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;3747:706:7:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;4192:27;;;;:69;;;;;:::i;:::-;4166:95;;4295:1;4275:10;:17;:21;4271:176;;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4271:176;3817:636;3747:706;;:::o;12342:831:8:-;12491:4;12511:15;:2;:13;;;:15::i;:::-;12507:660;;;12562:2;12546:36;;;12583:12;:10;:12::i;:::-;12597:4;12603:7;12612:4;12546:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801:1;12784:6;:13;:18;12780:321;;;12826:60;;;;;;;;;;:::i;:::-;;;;;;;;12780:321;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;12677:41;;;12667:51;;;:6;:51;;;;12660:58;;;;;12507:660;13152:4;13145:11;;12342:831;;;;;;;:::o;2606:202:1:-;2691:4;2729:32;2714:47;;;:11;:47;;;;:87;;;;2765:36;2789:11;2765:23;:36::i;:::-;2714:87;2707:94;;2606:202;;;:::o;1652:441:16:-;1727:13;1752:19;1797:1;1788:6;1784:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1774:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1752:47;;1809:15;:6;1816:1;1809:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1834;:6;1841:1;1834:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1864:9;1889:1;1880:6;1876:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;1930:12;1951:3;1943:5;:11;1930:25;;;;;;;:::i;:::-;;;;;1918:6;1925:1;1918:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;1979:1;1969:11;;;;;1899:3;;;;:::i;:::-;;;1859:132;;;;2017:1;2008:5;:10;2000:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:6;2065:21;;;1652:441;;;;:::o;2624:572:11:-;2763:45;2790:4;2796:2;2800:7;2763:26;:45::i;:::-;2839:1;2823:18;;:4;:18;;;2819:183;;;2857:40;2889:7;2857:31;:40::i;:::-;2819:183;;;2926:2;2918:10;;:4;:10;;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;2914:88;2819:183;3029:1;3015:16;;:2;:16;;;3011:179;;;3047:45;3084:7;3047:36;:45::i;:::-;3011:179;;;3119:4;3113:10;;:2;:10;;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;:::-;3109:81;3011:179;2624:572;;;:::o;3861:223:14:-;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;;3861:223;;;;;:::o;1175:320::-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;829:155:17:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;13729:122:8:-;;;;:::o;3902:161:11:-;4005:10;:17;;;;3978:15;:24;3994:7;3978:24;;;;;;;;;;;:44;;;;4032:10;4048:7;4032:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3902:161;:::o;4680:970::-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;4942:51;;5003:18;5024:17;:26;5042:7;5024:26;;;;;;;;;;;;5003:47;;5168:14;5154:10;:28;5150:323;;5198:19;5220:12;:18;5233:4;5220:18;;;;;;;;;;;;;;;:34;5239:14;5220:34;;;;;;;;;;;;5198:56;;5302:11;5269:12;:18;5282:4;5269:18;;;;;;;;;;;;;;;:30;5288:10;5269:30;;;;;;;;;;;:44;;;;5418:10;5385:17;:30;5403:11;5385:30;;;;;;;;;;;:43;;;;5184:289;5150:323;5566:17;:26;5584:7;5566:26;;;;;;;;;;;5559:33;;;5609:12;:18;5622:4;5609:18;;;;;;;;;;;;;;;:34;5628:14;5609:34;;;;;;;;;;;5602:41;;;4761:889;;4680:970;;:::o;5938:1061::-;6187:22;6232:1;6212:10;:17;;;;:21;;;;:::i;:::-;6187:46;;6243:18;6264:15;:24;6280:7;6264:24;;;;;;;;;;;;6243:45;;6610:19;6632:10;6643:14;6632:26;;;;;;;;:::i;:::-;;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6804:10;6773:15;:28;6789:11;6773:28;;;;;;;;;;;:41;;;;6942:15;:24;6958:7;6942:24;;;;;;;;;;;6935:31;;;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;3574:37;;3648:7;3621:12;:16;3634:2;3621:16;;;;;;;;;;;;;;;:24;3638:6;3621:24;;;;;;;;;;;:34;;;;3694:6;3665:17;:26;3683:7;3665:26;;;;;;;;;;;:35;;;;3564:143;3490:217;;:::o;4948:499:14:-;5113:12;5170:5;5145:21;:30;;5137:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5236:18;5247:6;5236:10;:18::i;:::-;5228:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5300:12;5314:23;5341:6;:11;;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;;;;4948:499;;;;;;:::o;7561:742::-;7707:12;7735:7;7731:566;;;7765:10;7758:17;;;;7731:566;7896:1;7876:10;:17;:21;7872:415;;;8120:10;8114:17;8180:15;8167:10;8163:2;8159:19;8152:44;7872:415;8259:12;8252:20;;;;;;;;;;;:::i;:::-;;;;;;;;7561:742;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:19:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2317:5;2348:6;2342:13;2333:22;;2364:30;2388:5;2364:30;:::i;:::-;2263:137;;;;:::o;2406:139::-;2452:5;2490:6;2477:20;2468:29;;2506:33;2533:5;2506:33;:::i;:::-;2406:139;;;;:::o;2551:137::-;2596:5;2634:6;2621:20;2612:29;;2650:32;2676:5;2650:32;:::i;:::-;2551:137;;;;:::o;2694:141::-;2750:5;2781:6;2775:13;2766:22;;2797:32;2823:5;2797:32;:::i;:::-;2694:141;;;;:::o;2854:338::-;2909:5;2958:3;2951:4;2943:6;2939:17;2935:27;2925:122;;2966:79;;:::i;:::-;2925:122;3083:6;3070:20;3108:78;3182:3;3174:6;3167:4;3159:6;3155:17;3108:78;:::i;:::-;3099:87;;2915:277;2854:338;;;;:::o;3212:340::-;3268:5;3317:3;3310:4;3302:6;3298:17;3294:27;3284:122;;3325:79;;:::i;:::-;3284:122;3442:6;3429:20;3467:79;3542:3;3534:6;3527:4;3519:6;3515:17;3467:79;:::i;:::-;3458:88;;3274:278;3212:340;;;;:::o;3558:139::-;3604:5;3642:6;3629:20;3620:29;;3658:33;3685:5;3658:33;:::i;:::-;3558:139;;;;:::o;3703:143::-;3760:5;3791:6;3785:13;3776:22;;3807:33;3834:5;3807:33;:::i;:::-;3703:143;;;;:::o;3852:329::-;3911:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:119;;;3966:79;;:::i;:::-;3928:119;4086:1;4111:53;4156:7;4147:6;4136:9;4132:22;4111:53;:::i;:::-;4101:63;;4057:117;3852:329;;;;:::o;4187:474::-;4255:6;4263;4312:2;4300:9;4291:7;4287:23;4283:32;4280:119;;;4318:79;;:::i;:::-;4280:119;4438:1;4463:53;4508:7;4499:6;4488:9;4484:22;4463:53;:::i;:::-;4453:63;;4409:117;4565:2;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;:::i;:::-;4581:63;;4536:118;4187:474;;;;;:::o;4667:829::-;4769:6;4777;4785;4834:2;4822:9;4813:7;4809:23;4805:32;4802:119;;;4840:79;;:::i;:::-;4802:119;4960:1;4985:53;5030:7;5021:6;5010:9;5006:22;4985:53;:::i;:::-;4975:63;;4931:117;5087:2;5113:53;5158:7;5149:6;5138:9;5134:22;5113:53;:::i;:::-;5103:63;;5058:118;5243:2;5232:9;5228:18;5215:32;5274:18;5266:6;5263:30;5260:117;;;5296:79;;:::i;:::-;5260:117;5401:78;5471:7;5462:6;5451:9;5447:22;5401:78;:::i;:::-;5391:88;;5186:303;4667:829;;;;;:::o;5502:619::-;5579:6;5587;5595;5644:2;5632:9;5623:7;5619:23;5615:32;5612:119;;;5650:79;;:::i;:::-;5612:119;5770:1;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5741:117;5897:2;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5868:118;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;5502:619;;;;;:::o;6127:943::-;6222:6;6230;6238;6246;6295:3;6283:9;6274:7;6270:23;6266:33;6263:120;;;6302:79;;:::i;:::-;6263:120;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6549:2;6575:53;6620:7;6611:6;6600:9;6596:22;6575:53;:::i;:::-;6565:63;;6520:118;6677:2;6703:53;6748:7;6739:6;6728:9;6724:22;6703:53;:::i;:::-;6693:63;;6648:118;6833:2;6822:9;6818:18;6805:32;6864:18;6856:6;6853:30;6850:117;;;6886:79;;:::i;:::-;6850:117;6991:62;7045:7;7036:6;7025:9;7021:22;6991:62;:::i;:::-;6981:72;;6776:287;6127:943;;;;;;;:::o;7076:765::-;7162:6;7170;7178;7186;7235:3;7223:9;7214:7;7210:23;7206:33;7203:120;;;7242:79;;:::i;:::-;7203:120;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:53;7560:7;7551:6;7540:9;7536:22;7515:53;:::i;:::-;7505:63;;7460:118;7617:2;7643:53;7688:7;7679:6;7668:9;7664:22;7643:53;:::i;:::-;7633:63;;7588:118;7745:2;7771:53;7816:7;7807:6;7796:9;7792:22;7771:53;:::i;:::-;7761:63;;7716:118;7076:765;;;;;;;:::o;7847:468::-;7912:6;7920;7969:2;7957:9;7948:7;7944:23;7940:32;7937:119;;;7975:79;;:::i;:::-;7937:119;8095:1;8120:53;8165:7;8156:6;8145:9;8141:22;8120:53;:::i;:::-;8110:63;;8066:117;8222:2;8248:50;8290:7;8281:6;8270:9;8266:22;8248:50;:::i;:::-;8238:60;;8193:115;7847:468;;;;;:::o;8321:474::-;8389:6;8397;8446:2;8434:9;8425:7;8421:23;8417:32;8414:119;;;8452:79;;:::i;:::-;8414:119;8572:1;8597:53;8642:7;8633:6;8622:9;8618:22;8597:53;:::i;:::-;8587:63;;8543:117;8699:2;8725:53;8770:7;8761:6;8750:9;8746:22;8725:53;:::i;:::-;8715:63;;8670:118;8321:474;;;;;:::o;8801:345::-;8868:6;8917:2;8905:9;8896:7;8892:23;8888:32;8885:119;;;8923:79;;:::i;:::-;8885:119;9043:1;9068:61;9121:7;9112:6;9101:9;9097:22;9068:61;:::i;:::-;9058:71;;9014:125;8801:345;;;;:::o;9152:329::-;9211:6;9260:2;9248:9;9239:7;9235:23;9231:32;9228:119;;;9266:79;;:::i;:::-;9228:119;9386:1;9411:53;9456:7;9447:6;9436:9;9432:22;9411:53;:::i;:::-;9401:63;;9357:117;9152:329;;;;:::o;9487:474::-;9555:6;9563;9612:2;9600:9;9591:7;9587:23;9583:32;9580:119;;;9618:79;;:::i;:::-;9580:119;9738:1;9763:53;9808:7;9799:6;9788:9;9784:22;9763:53;:::i;:::-;9753:63;;9709:117;9865:2;9891:53;9936:7;9927:6;9916:9;9912:22;9891:53;:::i;:::-;9881:63;;9836:118;9487:474;;;;;:::o;9967:327::-;10025:6;10074:2;10062:9;10053:7;10049:23;10045:32;10042:119;;;10080:79;;:::i;:::-;10042:119;10200:1;10225:52;10269:7;10260:6;10249:9;10245:22;10225:52;:::i;:::-;10215:62;;10171:116;9967:327;;;;:::o;10300:349::-;10369:6;10418:2;10406:9;10397:7;10393:23;10389:32;10386:119;;;10424:79;;:::i;:::-;10386:119;10544:1;10569:63;10624:7;10615:6;10604:9;10600:22;10569:63;:::i;:::-;10559:73;;10515:127;10300:349;;;;:::o;10655:509::-;10724:6;10773:2;10761:9;10752:7;10748:23;10744:32;10741:119;;;10779:79;;:::i;:::-;10741:119;10927:1;10916:9;10912:17;10899:31;10957:18;10949:6;10946:30;10943:117;;;10979:79;;:::i;:::-;10943:117;11084:63;11139:7;11130:6;11119:9;11115:22;11084:63;:::i;:::-;11074:73;;10870:287;10655:509;;;;:::o;11170:329::-;11229:6;11278:2;11266:9;11257:7;11253:23;11249:32;11246:119;;;11284:79;;:::i;:::-;11246:119;11404:1;11429:53;11474:7;11465:6;11454:9;11450:22;11429:53;:::i;:::-;11419:63;;11375:117;11170:329;;;;:::o;11505:351::-;11575:6;11624:2;11612:9;11603:7;11599:23;11595:32;11592:119;;;11630:79;;:::i;:::-;11592:119;11750:1;11775:64;11831:7;11822:6;11811:9;11807:22;11775:64;:::i;:::-;11765:74;;11721:128;11505:351;;;;:::o;11862:118::-;11949:24;11967:5;11949:24;:::i;:::-;11944:3;11937:37;11862:118;;:::o;11986:109::-;12067:21;12082:5;12067:21;:::i;:::-;12062:3;12055:34;11986:109;;:::o;12101:118::-;12188:24;12206:5;12188:24;:::i;:::-;12183:3;12176:37;12101:118;;:::o;12225:360::-;12311:3;12339:38;12371:5;12339:38;:::i;:::-;12393:70;12456:6;12451:3;12393:70;:::i;:::-;12386:77;;12472:52;12517:6;12512:3;12505:4;12498:5;12494:16;12472:52;:::i;:::-;12549:29;12571:6;12549:29;:::i;:::-;12544:3;12540:39;12533:46;;12315:270;12225:360;;;;:::o;12591:373::-;12695:3;12723:38;12755:5;12723:38;:::i;:::-;12777:88;12858:6;12853:3;12777:88;:::i;:::-;12770:95;;12874:52;12919:6;12914:3;12907:4;12900:5;12896:16;12874:52;:::i;:::-;12951:6;12946:3;12942:16;12935:23;;12699:265;12591:373;;;;:::o;12970:364::-;13058:3;13086:39;13119:5;13086:39;:::i;:::-;13141:71;13205:6;13200:3;13141:71;:::i;:::-;13134:78;;13221:52;13266:6;13261:3;13254:4;13247:5;13243:16;13221:52;:::i;:::-;13298:29;13320:6;13298:29;:::i;:::-;13293:3;13289:39;13282:46;;13062:272;12970:364;;;;:::o;13340:377::-;13446:3;13474:39;13507:5;13474:39;:::i;:::-;13529:89;13611:6;13606:3;13529:89;:::i;:::-;13522:96;;13627:52;13672:6;13667:3;13660:4;13653:5;13649:16;13627:52;:::i;:::-;13704:6;13699:3;13695:16;13688:23;;13450:267;13340:377;;;;:::o;13723:366::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:::-;17213:3;17234:67;17298:2;17293:3;17234:67;:::i;:::-;17227:74;;17310:93;17399:3;17310:93;:::i;:::-;17428:2;17423:3;17419:12;17412:19;;17071:366;;;:::o;17443:::-;17585:3;17606:67;17670:2;17665:3;17606:67;:::i;:::-;17599:74;;17682:93;17771:3;17682:93;:::i;:::-;17800:2;17795:3;17791:12;17784:19;;17443:366;;;:::o;17815:::-;17957:3;17978:67;18042:2;18037:3;17978:67;:::i;:::-;17971:74;;18054:93;18143:3;18054:93;:::i;:::-;18172:2;18167:3;18163:12;18156:19;;17815:366;;;:::o;18187:::-;18329:3;18350:67;18414:2;18409:3;18350:67;:::i;:::-;18343:74;;18426:93;18515:3;18426:93;:::i;:::-;18544:2;18539:3;18535:12;18528:19;;18187:366;;;:::o;18559:::-;18701:3;18722:67;18786:2;18781:3;18722:67;:::i;:::-;18715:74;;18798:93;18887:3;18798:93;:::i;:::-;18916:2;18911:3;18907:12;18900:19;;18559:366;;;:::o;18931:::-;19073:3;19094:67;19158:2;19153:3;19094:67;:::i;:::-;19087:74;;19170:93;19259:3;19170:93;:::i;:::-;19288:2;19283:3;19279:12;19272:19;;18931:366;;;:::o;19303:::-;19445:3;19466:67;19530:2;19525:3;19466:67;:::i;:::-;19459:74;;19542:93;19631:3;19542:93;:::i;:::-;19660:2;19655:3;19651:12;19644:19;;19303:366;;;:::o;19675:::-;19817:3;19838:67;19902:2;19897:3;19838:67;:::i;:::-;19831:74;;19914:93;20003:3;19914:93;:::i;:::-;20032:2;20027:3;20023:12;20016:19;;19675:366;;;:::o;20047:::-;20189:3;20210:67;20274:2;20269:3;20210:67;:::i;:::-;20203:74;;20286:93;20375:3;20286:93;:::i;:::-;20404:2;20399:3;20395:12;20388:19;;20047:366;;;:::o;20419:::-;20561:3;20582:67;20646:2;20641:3;20582:67;:::i;:::-;20575:74;;20658:93;20747:3;20658:93;:::i;:::-;20776:2;20771:3;20767:12;20760:19;;20419:366;;;:::o;20791:::-;20933:3;20954:67;21018:2;21013:3;20954:67;:::i;:::-;20947:74;;21030:93;21119:3;21030:93;:::i;:::-;21148:2;21143:3;21139:12;21132:19;;20791:366;;;:::o;21163:::-;21305:3;21326:67;21390:2;21385:3;21326:67;:::i;:::-;21319:74;;21402:93;21491:3;21402:93;:::i;:::-;21520:2;21515:3;21511:12;21504:19;;21163:366;;;:::o;21535:::-;21677:3;21698:67;21762:2;21757:3;21698:67;:::i;:::-;21691:74;;21774:93;21863:3;21774:93;:::i;:::-;21892:2;21887:3;21883:12;21876:19;;21535:366;;;:::o;21907:::-;22049:3;22070:67;22134:2;22129:3;22070:67;:::i;:::-;22063:74;;22146:93;22235:3;22146:93;:::i;:::-;22264:2;22259:3;22255:12;22248:19;;21907:366;;;:::o;22279:402::-;22439:3;22460:85;22542:2;22537:3;22460:85;:::i;:::-;22453:92;;22554:93;22643:3;22554:93;:::i;:::-;22672:2;22667:3;22663:12;22656:19;;22279:402;;;:::o;22687:366::-;22829:3;22850:67;22914:2;22909:3;22850:67;:::i;:::-;22843:74;;22926:93;23015:3;22926:93;:::i;:::-;23044:2;23039:3;23035:12;23028:19;;22687:366;;;:::o;23059:::-;23201:3;23222:67;23286:2;23281:3;23222:67;:::i;:::-;23215:74;;23298:93;23387:3;23298:93;:::i;:::-;23416:2;23411:3;23407:12;23400:19;;23059:366;;;:::o;23431:402::-;23591:3;23612:85;23694:2;23689:3;23612:85;:::i;:::-;23605:92;;23706:93;23795:3;23706:93;:::i;:::-;23824:2;23819:3;23815:12;23808:19;;23431:402;;;:::o;23839:366::-;23981:3;24002:67;24066:2;24061:3;24002:67;:::i;:::-;23995:74;;24078:93;24167:3;24078:93;:::i;:::-;24196:2;24191:3;24187:12;24180:19;;23839:366;;;:::o;24211:118::-;24298:24;24316:5;24298:24;:::i;:::-;24293:3;24286:37;24211:118;;:::o;24335:271::-;24465:3;24487:93;24576:3;24567:6;24487:93;:::i;:::-;24480:100;;24597:3;24590:10;;24335:271;;;;:::o;24612:435::-;24792:3;24814:95;24905:3;24896:6;24814:95;:::i;:::-;24807:102;;24926:95;25017:3;25008:6;24926:95;:::i;:::-;24919:102;;25038:3;25031:10;;24612:435;;;;;:::o;25053:967::-;25435:3;25457:148;25601:3;25457:148;:::i;:::-;25450:155;;25622:95;25713:3;25704:6;25622:95;:::i;:::-;25615:102;;25734:148;25878:3;25734:148;:::i;:::-;25727:155;;25899:95;25990:3;25981:6;25899:95;:::i;:::-;25892:102;;26011:3;26004:10;;25053:967;;;;;:::o;26026:222::-;26119:4;26157:2;26146:9;26142:18;26134:26;;26170:71;26238:1;26227:9;26223:17;26214:6;26170:71;:::i;:::-;26026:222;;;;:::o;26254:442::-;26403:4;26441:2;26430:9;26426:18;26418:26;;26454:71;26522:1;26511:9;26507:17;26498:6;26454:71;:::i;:::-;26535:72;26603:2;26592:9;26588:18;26579:6;26535:72;:::i;:::-;26617;26685:2;26674:9;26670:18;26661:6;26617:72;:::i;:::-;26254:442;;;;;;:::o;26702:640::-;26897:4;26935:3;26924:9;26920:19;26912:27;;26949:71;27017:1;27006:9;27002:17;26993:6;26949:71;:::i;:::-;27030:72;27098:2;27087:9;27083:18;27074:6;27030:72;:::i;:::-;27112;27180:2;27169:9;27165:18;27156:6;27112:72;:::i;:::-;27231:9;27225:4;27221:20;27216:2;27205:9;27201:18;27194:48;27259:76;27330:4;27321:6;27259:76;:::i;:::-;27251:84;;26702:640;;;;;;;:::o;27348:332::-;27469:4;27507:2;27496:9;27492:18;27484:26;;27520:71;27588:1;27577:9;27573:17;27564:6;27520:71;:::i;:::-;27601:72;27669:2;27658:9;27654:18;27645:6;27601:72;:::i;:::-;27348:332;;;;;:::o;27686:210::-;27773:4;27811:2;27800:9;27796:18;27788:26;;27824:65;27886:1;27875:9;27871:17;27862:6;27824:65;:::i;:::-;27686:210;;;;:::o;27902:222::-;27995:4;28033:2;28022:9;28018:18;28010:26;;28046:71;28114:1;28103:9;28099:17;28090:6;28046:71;:::i;:::-;27902:222;;;;:::o;28130:313::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:78;28431:4;28422:6;28358:78;:::i;:::-;28350:86;;28130:313;;;;:::o;28449:419::-;28615:4;28653:2;28642:9;28638:18;28630:26;;28702:9;28696:4;28692:20;28688:1;28677:9;28673:17;28666:47;28730:131;28856:4;28730:131;:::i;:::-;28722:139;;28449:419;;;:::o;28874:::-;29040:4;29078:2;29067:9;29063:18;29055:26;;29127:9;29121:4;29117:20;29113:1;29102:9;29098:17;29091:47;29155:131;29281:4;29155:131;:::i;:::-;29147:139;;28874:419;;;:::o;29299:::-;29465:4;29503:2;29492:9;29488:18;29480:26;;29552:9;29546:4;29542:20;29538:1;29527:9;29523:17;29516:47;29580:131;29706:4;29580:131;:::i;:::-;29572:139;;29299:419;;;:::o;29724:::-;29890:4;29928:2;29917:9;29913:18;29905:26;;29977:9;29971:4;29967:20;29963:1;29952:9;29948:17;29941:47;30005:131;30131:4;30005:131;:::i;:::-;29997:139;;29724:419;;;:::o;30149:::-;30315:4;30353:2;30342:9;30338:18;30330:26;;30402:9;30396:4;30392:20;30388:1;30377:9;30373:17;30366:47;30430:131;30556:4;30430:131;:::i;:::-;30422:139;;30149:419;;;:::o;30574:::-;30740:4;30778:2;30767:9;30763:18;30755:26;;30827:9;30821:4;30817:20;30813:1;30802:9;30798:17;30791:47;30855:131;30981:4;30855:131;:::i;:::-;30847:139;;30574:419;;;:::o;30999:::-;31165:4;31203:2;31192:9;31188:18;31180:26;;31252:9;31246:4;31242:20;31238:1;31227:9;31223:17;31216:47;31280:131;31406:4;31280:131;:::i;:::-;31272:139;;30999:419;;;:::o;31424:::-;31590:4;31628:2;31617:9;31613:18;31605:26;;31677:9;31671:4;31667:20;31663:1;31652:9;31648:17;31641:47;31705:131;31831:4;31705:131;:::i;:::-;31697:139;;31424:419;;;:::o;31849:::-;32015:4;32053:2;32042:9;32038:18;32030:26;;32102:9;32096:4;32092:20;32088:1;32077:9;32073:17;32066:47;32130:131;32256:4;32130:131;:::i;:::-;32122:139;;31849:419;;;:::o;32274:::-;32440:4;32478:2;32467:9;32463:18;32455:26;;32527:9;32521:4;32517:20;32513:1;32502:9;32498:17;32491:47;32555:131;32681:4;32555:131;:::i;:::-;32547:139;;32274:419;;;:::o;32699:::-;32865:4;32903:2;32892:9;32888:18;32880:26;;32952:9;32946:4;32942:20;32938:1;32927:9;32923:17;32916:47;32980:131;33106:4;32980:131;:::i;:::-;32972:139;;32699:419;;;:::o;33124:::-;33290:4;33328:2;33317:9;33313:18;33305:26;;33377:9;33371:4;33367:20;33363:1;33352:9;33348:17;33341:47;33405:131;33531:4;33405:131;:::i;:::-;33397:139;;33124:419;;;:::o;33549:::-;33715:4;33753:2;33742:9;33738:18;33730:26;;33802:9;33796:4;33792:20;33788:1;33777:9;33773:17;33766:47;33830:131;33956:4;33830:131;:::i;:::-;33822:139;;33549:419;;;:::o;33974:::-;34140:4;34178:2;34167:9;34163:18;34155:26;;34227:9;34221:4;34217:20;34213:1;34202:9;34198:17;34191:47;34255:131;34381:4;34255:131;:::i;:::-;34247:139;;33974:419;;;:::o;34399:::-;34565:4;34603:2;34592:9;34588:18;34580:26;;34652:9;34646:4;34642:20;34638:1;34627:9;34623:17;34616:47;34680:131;34806:4;34680:131;:::i;:::-;34672:139;;34399:419;;;:::o;34824:::-;34990:4;35028:2;35017:9;35013:18;35005:26;;35077:9;35071:4;35067:20;35063:1;35052:9;35048:17;35041:47;35105:131;35231:4;35105:131;:::i;:::-;35097:139;;34824:419;;;:::o;35249:::-;35415:4;35453:2;35442:9;35438:18;35430:26;;35502:9;35496:4;35492:20;35488:1;35477:9;35473:17;35466:47;35530:131;35656:4;35530:131;:::i;:::-;35522:139;;35249:419;;;:::o;35674:::-;35840:4;35878:2;35867:9;35863:18;35855:26;;35927:9;35921:4;35917:20;35913:1;35902:9;35898:17;35891:47;35955:131;36081:4;35955:131;:::i;:::-;35947:139;;35674:419;;;:::o;36099:::-;36265:4;36303:2;36292:9;36288:18;36280:26;;36352:9;36346:4;36342:20;36338:1;36327:9;36323:17;36316:47;36380:131;36506:4;36380:131;:::i;:::-;36372:139;;36099:419;;;:::o;36524:::-;36690:4;36728:2;36717:9;36713:18;36705:26;;36777:9;36771:4;36767:20;36763:1;36752:9;36748:17;36741:47;36805:131;36931:4;36805:131;:::i;:::-;36797:139;;36524:419;;;:::o;36949:::-;37115:4;37153:2;37142:9;37138:18;37130:26;;37202:9;37196:4;37192:20;37188:1;37177:9;37173:17;37166:47;37230:131;37356:4;37230:131;:::i;:::-;37222:139;;36949:419;;;:::o;37374:::-;37540:4;37578:2;37567:9;37563:18;37555:26;;37627:9;37621:4;37617:20;37613:1;37602:9;37598:17;37591:47;37655:131;37781:4;37655:131;:::i;:::-;37647:139;;37374:419;;;:::o;37799:::-;37965:4;38003:2;37992:9;37988:18;37980:26;;38052:9;38046:4;38042:20;38038:1;38027:9;38023:17;38016:47;38080:131;38206:4;38080:131;:::i;:::-;38072:139;;37799:419;;;:::o;38224:::-;38390:4;38428:2;38417:9;38413:18;38405:26;;38477:9;38471:4;38467:20;38463:1;38452:9;38448:17;38441:47;38505:131;38631:4;38505:131;:::i;:::-;38497:139;;38224:419;;;:::o;38649:::-;38815:4;38853:2;38842:9;38838:18;38830:26;;38902:9;38896:4;38892:20;38888:1;38877:9;38873:17;38866:47;38930:131;39056:4;38930:131;:::i;:::-;38922:139;;38649:419;;;:::o;39074:::-;39240:4;39278:2;39267:9;39263:18;39255:26;;39327:9;39321:4;39317:20;39313:1;39302:9;39298:17;39291:47;39355:131;39481:4;39355:131;:::i;:::-;39347:139;;39074:419;;;:::o;39499:222::-;39592:4;39630:2;39619:9;39615:18;39607:26;;39643:71;39711:1;39700:9;39696:17;39687:6;39643:71;:::i;:::-;39499:222;;;;:::o;39727:129::-;39761:6;39788:20;;:::i;:::-;39778:30;;39817:33;39845:4;39837:6;39817:33;:::i;:::-;39727:129;;;:::o;39862:75::-;39895:6;39928:2;39922:9;39912:19;;39862:75;:::o;39943:311::-;40020:4;40110:18;40102:6;40099:30;40096:56;;;40132:18;;:::i;:::-;40096:56;40182:4;40174:6;40170:17;40162:25;;40242:4;40236;40232:15;40224:23;;39943:311;;;:::o;40260:307::-;40321:4;40411:18;40403:6;40400:30;40397:56;;;40433:18;;:::i;:::-;40397:56;40471:29;40493:6;40471:29;:::i;:::-;40463:37;;40555:4;40549;40545:15;40537:23;;40260:307;;;:::o;40573:308::-;40635:4;40725:18;40717:6;40714:30;40711:56;;;40747:18;;:::i;:::-;40711:56;40785:29;40807:6;40785:29;:::i;:::-;40777:37;;40869:4;40863;40859:15;40851:23;;40573:308;;;:::o;40887:98::-;40938:6;40972:5;40966:12;40956:22;;40887:98;;;:::o;40991:99::-;41043:6;41077:5;41071:12;41061:22;;40991:99;;;:::o;41096:168::-;41179:11;41213:6;41208:3;41201:19;41253:4;41248:3;41244:14;41229:29;;41096:168;;;;:::o;41270:147::-;41371:11;41408:3;41393:18;;41270:147;;;;:::o;41423:169::-;41507:11;41541:6;41536:3;41529:19;41581:4;41576:3;41572:14;41557:29;;41423:169;;;;:::o;41598:148::-;41700:11;41737:3;41722:18;;41598:148;;;;:::o;41752:305::-;41792:3;41811:20;41829:1;41811:20;:::i;:::-;41806:25;;41845:20;41863:1;41845:20;:::i;:::-;41840:25;;41999:1;41931:66;41927:74;41924:1;41921:81;41918:107;;;42005:18;;:::i;:::-;41918:107;42049:1;42046;42042:9;42035:16;;41752:305;;;;:::o;42063:185::-;42103:1;42120:20;42138:1;42120:20;:::i;:::-;42115:25;;42154:20;42172:1;42154:20;:::i;:::-;42149:25;;42193:1;42183:35;;42198:18;;:::i;:::-;42183:35;42240:1;42237;42233:9;42228:14;;42063:185;;;;:::o;42254:348::-;42294:7;42317:20;42335:1;42317:20;:::i;:::-;42312:25;;42351:20;42369:1;42351:20;:::i;:::-;42346:25;;42539:1;42471:66;42467:74;42464:1;42461:81;42456:1;42449:9;42442:17;42438:105;42435:131;;;42546:18;;:::i;:::-;42435:131;42594:1;42591;42587:9;42576:20;;42254:348;;;;:::o;42608:191::-;42648:4;42668:20;42686:1;42668:20;:::i;:::-;42663:25;;42702:20;42720:1;42702:20;:::i;:::-;42697:25;;42741:1;42738;42735:8;42732:34;;;42746:18;;:::i;:::-;42732:34;42791:1;42788;42784:9;42776:17;;42608:191;;;;:::o;42805:96::-;42842:7;42871:24;42889:5;42871:24;:::i;:::-;42860:35;;42805:96;;;:::o;42907:90::-;42941:7;42984:5;42977:13;42970:21;42959:32;;42907:90;;;:::o;43003:77::-;43040:7;43069:5;43058:16;;43003:77;;;:::o;43086:149::-;43122:7;43162:66;43155:5;43151:78;43140:89;;43086:149;;;:::o;43241:126::-;43278:7;43318:42;43311:5;43307:54;43296:65;;43241:126;;;:::o;43373:77::-;43410:7;43439:5;43428:16;;43373:77;;;:::o;43456:154::-;43540:6;43535:3;43530;43517:30;43602:1;43593:6;43588:3;43584:16;43577:27;43456:154;;;:::o;43616:307::-;43684:1;43694:113;43708:6;43705:1;43702:13;43694:113;;;43793:1;43788:3;43784:11;43778:18;43774:1;43769:3;43765:11;43758:39;43730:2;43727:1;43723:10;43718:15;;43694:113;;;43825:6;43822:1;43819:13;43816:101;;;43905:1;43896:6;43891:3;43887:16;43880:27;43816:101;43665:258;43616:307;;;:::o;43929:171::-;43968:3;43991:24;44009:5;43991:24;:::i;:::-;43982:33;;44037:4;44030:5;44027:15;44024:41;;;44045:18;;:::i;:::-;44024:41;44092:1;44085:5;44081:13;44074:20;;43929:171;;;:::o;44106:320::-;44150:6;44187:1;44181:4;44177:12;44167:22;;44234:1;44228:4;44224:12;44255:18;44245:81;;44311:4;44303:6;44299:17;44289:27;;44245:81;44373:2;44365:6;44362:14;44342:18;44339:38;44336:84;;;44392:18;;:::i;:::-;44336:84;44157:269;44106:320;;;:::o;44432:281::-;44515:27;44537:4;44515:27;:::i;:::-;44507:6;44503:40;44645:6;44633:10;44630:22;44609:18;44597:10;44594:34;44591:62;44588:88;;;44656:18;;:::i;:::-;44588:88;44696:10;44692:2;44685:22;44475:238;44432:281;;:::o;44719:233::-;44758:3;44781:24;44799:5;44781:24;:::i;:::-;44772:33;;44827:66;44820:5;44817:77;44814:103;;;44897:18;;:::i;:::-;44814:103;44944:1;44937:5;44933:13;44926:20;;44719:233;;;:::o;44958:176::-;44990:1;45007:20;45025:1;45007:20;:::i;:::-;45002:25;;45041:20;45059:1;45041:20;:::i;:::-;45036:25;;45080:1;45070:35;;45085:18;;:::i;:::-;45070:35;45126:1;45123;45119:9;45114:14;;44958:176;;;;:::o;45140:180::-;45188:77;45185:1;45178:88;45285:4;45282:1;45275:15;45309:4;45306:1;45299:15;45326:180;45374:77;45371:1;45364:88;45471:4;45468:1;45461:15;45495:4;45492:1;45485:15;45512:180;45560:77;45557:1;45550:88;45657:4;45654:1;45647:15;45681:4;45678:1;45671:15;45698:180;45746:77;45743:1;45736:88;45843:4;45840:1;45833:15;45867:4;45864:1;45857:15;45884:180;45932:77;45929:1;45922:88;46029:4;46026:1;46019:15;46053:4;46050:1;46043:15;46070:180;46118:77;46115:1;46108:88;46215:4;46212:1;46205:15;46239:4;46236:1;46229:15;46256:117;46365:1;46362;46355:12;46379:117;46488:1;46485;46478:12;46502:117;46611:1;46608;46601:12;46625:117;46734:1;46731;46724:12;46748:117;46857:1;46854;46847:12;46871:102;46912:6;46963:2;46959:7;46954:2;46947:5;46943:14;46939:28;46929:38;;46871:102;;;:::o;46979:182::-;47119:34;47115:1;47107:6;47103:14;47096:58;46979:182;:::o;47167:170::-;47307:22;47303:1;47295:6;47291:14;47284:46;47167:170;:::o;47343:230::-;47483:34;47479:1;47471:6;47467:14;47460:58;47552:13;47547:2;47539:6;47535:15;47528:38;47343:230;:::o;47579:237::-;47719:34;47715:1;47707:6;47703:14;47696:58;47788:20;47783:2;47775:6;47771:15;47764:45;47579:237;:::o;47822:224::-;47962:34;47958:1;47950:6;47946:14;47939:58;48031:7;48026:2;48018:6;48014:15;48007:32;47822:224;:::o;48052:178::-;48192:30;48188:1;48180:6;48176:14;48169:54;48052:178;:::o;48236:223::-;48376:34;48372:1;48364:6;48360:14;48353:58;48445:6;48440:2;48432:6;48428:15;48421:31;48236:223;:::o;48465:175::-;48605:27;48601:1;48593:6;48589:14;48582:51;48465:175;:::o;48646:236::-;48786:34;48782:1;48774:6;48770:14;48763:58;48855:19;48850:2;48842:6;48838:15;48831:44;48646:236;:::o;48888:225::-;49028:34;49024:1;49016:6;49012:14;49005:58;49097:8;49092:2;49084:6;49080:15;49073:33;48888:225;:::o;49119:230::-;49259:34;49255:1;49247:6;49243:14;49236:58;49328:13;49323:2;49315:6;49311:15;49304:38;49119:230;:::o;49355:166::-;49495:18;49491:1;49483:6;49479:14;49472:42;49355:166;:::o;49527:228::-;49667:34;49663:1;49655:6;49651:14;49644:58;49736:11;49731:2;49723:6;49719:15;49712:36;49527:228;:::o;49761:225::-;49901:34;49897:1;49889:6;49885:14;49878:58;49970:8;49965:2;49957:6;49953:15;49946:33;49761:225;:::o;49992:231::-;50132:34;50128:1;50120:6;50116:14;50109:58;50201:14;50196:2;50188:6;50184:15;50177:39;49992:231;:::o;50229:249::-;50369:34;50365:1;50357:6;50353:14;50346:58;50438:32;50433:2;50425:6;50421:15;50414:57;50229:249;:::o;50484:182::-;50624:34;50620:1;50612:6;50608:14;50601:58;50484:182;:::o;50672:226::-;50812:34;50808:1;50800:6;50796:14;50789:58;50881:9;50876:2;50868:6;50864:15;50857:34;50672:226;:::o;50904:233::-;51044:34;51040:1;51032:6;51028:14;51021:58;51113:16;51108:2;51100:6;51096:15;51089:41;50904:233;:::o;51143:174::-;51283:26;51279:1;51271:6;51267:14;51260:50;51143:174;:::o;51323:220::-;51463:34;51459:1;51451:6;51447:14;51440:58;51532:3;51527:2;51519:6;51515:15;51508:28;51323:220;:::o;51549:179::-;51689:31;51685:1;51677:6;51673:14;51666:55;51549:179;:::o;51734:231::-;51874:34;51870:1;51862:6;51858:14;51851:58;51943:14;51938:2;51930:6;51926:15;51919:39;51734:231;:::o;51971:173::-;52111:25;52107:1;52099:6;52095:14;52088:49;51971:173;:::o;52150:229::-;52290:34;52286:1;52278:6;52274:14;52267:58;52359:12;52354:2;52346:6;52342:15;52335:37;52150:229;:::o;52385:233::-;52525:34;52521:1;52513:6;52509:14;52502:58;52594:16;52589:2;52581:6;52577:15;52570:41;52385:233;:::o;52624:167::-;52764:19;52760:1;52752:6;52748:14;52741:43;52624:167;:::o;52797:234::-;52937:34;52933:1;52925:6;52921:14;52914:58;53006:17;53001:2;52993:6;52989:15;52982:42;52797:234;:::o;53037:122::-;53110:24;53128:5;53110:24;:::i;:::-;53103:5;53100:35;53090:63;;53149:1;53146;53139:12;53090:63;53037:122;:::o;53165:116::-;53235:21;53250:5;53235:21;:::i;:::-;53228:5;53225:32;53215:60;;53271:1;53268;53261:12;53215:60;53165:116;:::o;53287:122::-;53360:24;53378:5;53360:24;:::i;:::-;53353:5;53350:35;53340:63;;53399:1;53396;53389:12;53340:63;53287:122;:::o;53415:120::-;53487:23;53504:5;53487:23;:::i;:::-;53480:5;53477:34;53467:62;;53525:1;53522;53515:12;53467:62;53415:120;:::o;53541:122::-;53614:24;53632:5;53614:24;:::i;:::-;53607:5;53604:35;53594:63;;53653:1;53650;53643:12;53594:63;53541:122;:::o

Swarm Source

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