ETH Price: $3,110.35 (+1.24%)
Gas: 6 Gwei

Token

Polymon (PLYMN)
 

Overview

Max Total Supply

927 PLYMN

Holders

341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PLYMN
0xe586d7e83dd923ed73fa660b573e48cc254ee2e7
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:
Polymon

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-22
*/

// File: @openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

/**
 * @dev 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: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: polymon.sol

pragma solidity ^0.8.0;

contract Polymon is ERC721Enumerable, Ownable{
    using Address for address;
    using Strings for uint256;
    
    struct generationStat { 
       uint256 supply;
       uint256 max_supply;
       uint256 burned_supply;
    }
    
    struct creatureStat { 
       bool gender;
       Generation generation;
       uint256 tokenId;
    }
    
    enum Generation{ GENE, GEND, GENC, GENB, GENA }
    
    uint256[5] public totalSupplies = [0, 0, 0, 0, 0];
    uint256[5] public totalBurned = [0, 0, 0, 0, 0];
    uint256[5] public blockEnds = [9999, 19999, 24999, 27499, 27509];
    uint256[5] public genderRarity = [2, 2, 3, 4, 5];
    
    uint256 public constant NFT_PRICE = 80000000000000000; // 0.08 ETH
    uint256 public constant NFT_PRICE_PRESALE = 75000000000000000; // 0.075 ETH
    
    uint256 public constant MAX_NFT_PURCHASE = 20;
    uint256 public constant RESERVED_TOKENS = 200;
    uint256 public constant MAX_EGG_SUPPLY = 10000;
    uint256 public constant MAX_PRESALE_SUPPLY = RESERVED_TOKENS + 500; //(500 supply, 200 reserved tokens)
    
    bool public presalePhase = false;
    bool public eggPhase = false;
    bool public incubationPhase = false;
    bool public fusionPhase = false;

    string private _baseTokenURI;
    mapping (uint256 => string) _tokenURIs;
   
    constructor() ERC721("Polymon","PLYMN"){
    }
    
    function togglePresalePhase() public onlyOwner {
        presalePhase = !presalePhase;
    }

    function toggleEggPhase() public onlyOwner {
        eggPhase = !eggPhase;
    }
    
    function toggleFusionPhase() public onlyOwner {
        fusionPhase = !fusionPhase;
    }
    
    function toggleIncubationPhase() public onlyOwner {
        incubationPhase = !incubationPhase;
    }

    function reserveTokens(uint256 numberOfTokens) public onlyOwner {
        uint supply = totalSupply();
        require((supply + numberOfTokens) <= RESERVED_TOKENS, "Purchase exceeding max reserve token supply");
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }
        totalSupplies[0] += numberOfTokens;
    }
    
    function reserveTeamTokens(address _shareHolder, uint256 numberOfTokens) public onlyOwner {
        uint supply = totalSupply();
        require((supply + numberOfTokens) <= RESERVED_TOKENS, "Purchase exceeding max reserve token supply");
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(_shareHolder, supply + i);
        }
        totalSupplies[0] += numberOfTokens;
    }
    
    function polyPresaleMint(uint256 numberOfTokens) public payable {
        uint256 totalSupply = totalSupply();
        require(presalePhase, "Presale hasnt started yet");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require((totalSupply + numberOfTokens) <= MAX_PRESALE_SUPPLY, "Purchase exceeding max presale token supply");
        require(numberOfTokens <= MAX_NFT_PURCHASE,"Can only mint a max of 20 tokens per transaction");
        require(NFT_PRICE_PRESALE * numberOfTokens == msg.value, "Sent ether value is incorrect");

        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupplies[0] += numberOfTokens;
    }

    function polyMint(uint256 numberOfTokens) public payable {
        uint256 totalSupply = totalSupply();
        require(eggPhase, "Cant buy eggs at the moment");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require((totalSupply + numberOfTokens) <= MAX_EGG_SUPPLY, "Purchase exceeding max token supply");
        require(numberOfTokens <= MAX_NFT_PURCHASE,"Can only mint a max of 20 tokens per transaction");
        require(NFT_PRICE * numberOfTokens == msg.value, "Sent ether value is incorrect");

        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupplies[0] += numberOfTokens;
    }
    
    function polyFuse(uint256 tokenId1, uint256 tokenId2) public {
       require(msg.sender == ownerOf(tokenId1), "This isnt your NFT");
       require(msg.sender == ownerOf(tokenId2), "This isnt your NFT");
       require(fusionPhase, "Cant fuse monsters at the moment");
       require(getGeneration(tokenId1) != Generation.GENE, "Eggs cant be fused");
       require(getGeneration(tokenId2) != Generation.GENE, "Eggs cant be fused");
       require(getGeneration(tokenId1) != Generation.GENA, "Alpha gen cant be fused");
       require(getGeneration(tokenId2) != Generation.GENA, "Alpha gen cant be fused");
       require(oppositeGender(tokenId1, tokenId2), "Monsters need to be of opposite gender");
       require(sameGeneration(tokenId1, tokenId2), "Monsters need to be of same generation");
       require(!blockLimitReached(tokenId1), "Max generation mints reached");
       
       uint256 _currentGen = uint256(getGeneration(tokenId1));
       uint256 _nextGen = _currentGen + 1;
       
       _burn(tokenId1);
       _burn(tokenId2);
       
       _safeMint(msg.sender, blockEnds[_currentGen] + 1 + totalSupplies[_nextGen]);
       
       totalBurned[_currentGen] += 2;
       totalSupplies[_nextGen]++;
    }
   
    function polyIncubate(uint256 tokenId) public {
       require(msg.sender == ownerOf(tokenId), "This isnt your NFT");
       require(incubationPhase, "Cant incubate at the moment");
       require(getGeneration(tokenId) == Generation.GENE, "Token is not an egg");
       
       uint256 _currentGen = uint256(getGeneration(tokenId));
      
       _burn(tokenId);
       _safeMint(msg.sender, tokenId + MAX_EGG_SUPPLY);
       totalBurned[_currentGen]++;
    }
    
    function blockLimitReached(uint256 tokenId1) private view returns (bool) {
        uint256 _currentGen = uint256(getGeneration(tokenId1));
        uint256 _nextGen = _currentGen + 1;
        uint256 _blockEnd = blockEnds[_nextGen];
        
        return (blockEnds[_currentGen] + 1 + totalSupplies[_nextGen]) > _blockEnd;
    }
    
    function getGender(uint256 tokenId) private view returns (bool) {
        uint256 _currentGen = uint256(getGeneration(tokenId));
        return (tokenId % genderRarity[_currentGen]) == 0;
    }
   
    function getGeneration(uint256 tokenId) private view returns (Generation) {
        if(tokenId > blockEnds[3])
            return Generation.GENA;
        
        else if(tokenId > blockEnds[2])
            return Generation.GENB;
        
        else if(tokenId > blockEnds[1])
            return Generation.GENC;
        
        else if(tokenId > blockEnds[0])
            return Generation.GEND;
        
        else
            return Generation.GENE;
    }
    
    function getGenerationStats() public view returns (generationStat[] memory)
    {
        generationStat[] memory stats = new generationStat[](totalSupplies.length);
        for (uint256 i; i < totalSupplies.length; i++) {
            stats[i].supply = totalSupplies[i];
            stats[i].max_supply = blockEnds[i] + 1;
            stats[i].burned_supply = totalBurned[i];
        }
        return stats;
    }
   
    function oppositeGender(uint256 tokenId1, uint256 tokenId2) private view returns (bool) {
        return getGender(tokenId1) != getGender(tokenId2);
    }
   
    function sameGeneration(uint256 tokenId1, uint256 tokenId2) private view returns (bool) {
        return getGeneration(tokenId1) == getGeneration(tokenId2);
    }
   
    function walletOfOwner(address _owner) public view returns (creatureStat[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        creatureStat[] memory creatures = new creatureStat[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            creatures[i].tokenId = tokenOfOwnerByIndex(_owner, i);
            creatures[i].gender = getGender(creatures[i].tokenId);
            creatures[i].generation = getGeneration(creatures[i].tokenId);
        }
        return creatures;
    }
    
    function tokenExists(uint256 tokenId) public view returns (bool){
        return _exists(tokenId);
    }
    
    function withdraw() public payable onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    
    function withdrawAmount(uint256 amount) public payable onlyOwner {
        payable(msg.sender).transfer(amount);
    }
    
    function withdrawShareHolder(address _shareHolder, uint256 _balance, uint256 _share) public payable onlyOwner {
        payable(_shareHolder).transfer(_balance * _share / 100);
    }
    
    function getBalance() public view onlyOwner returns (uint256){
        return address(this).balance;
    }

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

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseTokenURI = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        // Concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseTokenURI, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_EGG_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"","type":"uint256"}],"name":"blockEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eggPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genderRarity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGenerationStats","outputs":[{"components":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"max_supply","type":"uint256"},{"internalType":"uint256","name":"burned_supply","type":"uint256"}],"internalType":"struct Polymon.generationStat[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incubationPhase","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"polyFuse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"polyIncubate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"polyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"polyPresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_shareHolder","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTeamTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","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":"baseURI_","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleEggPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleFusionPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIncubationPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"components":[{"internalType":"bool","name":"gender","type":"bool"},{"internalType":"enum Polymon.Generation","name":"generation","type":"uint8"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct Polymon.creatureStat[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_shareHolder","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"},{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"withdrawShareHolder","outputs":[],"stateMutability":"payable","type":"function"}]

6101206040526000608081815260a082905260c082905260e0829052610100919091526200003290600b906005620001e3565b506040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526200006e906010906005620001e3565b506040805160a08101825261270f8152614e1f60208201526161a791810191909152616b6b6060820152616b756080820152620000b09060159060056200022b565b506040805160a0810182526002808252602082015260039181019190915260046060820152600560808201819052620000ec91601a91620001e3565b50601f805463ffffffff191690553480156200010757600080fd5b5060408051808201825260078152662837b63cb6b7b760c91b60208083019182528351808501909452600584526428262ca6a760d91b908401528151919291620001549160009162000262565b5080516200016a90600190602084019062000262565b50505062000187620001816200018d60201b60201c565b62000191565b62000333565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826005810192821562000219579160200282015b8281111562000219578251829060ff16905591602001919060010190620001f7565b5062000227929150620002df565b5090565b826005810192821562000219579160200282015b8281111562000219578251829061ffff169055916020019190600101906200023f565b8280546200027090620002f6565b90600052602060002090601f01602090048101928262000294576000855562000219565b82601f10620002af57805160ff191683800117855562000219565b8280016001018555821562000219579182015b8281111562000219578251825591602001919060010190620002c2565b5b80821115620002275760008155600101620002e0565b600181811c908216806200030b57607f821691505b602082108114156200032d57634e487b7160e01b600052602260045260246000fd5b50919050565b6136f480620003436000396000f3fe6080604052600436106102e35760003560e01c8063715018a611610190578063b88d4fde116100dc578063e224809a11610095578063eb36f3501161006f578063eb36f35014610874578063ebe78a2a14610896578063efd12de6146108ab578063f2fde38b146108c057600080fd5b8063e224809a146107f8578063e71433d61461080b578063e985e9c51461082b57600080fd5b8063b88d4fde14610749578063c87b56dd14610769578063d031370b14610789578063d293187c146107a9578063dd500e02146107c3578063e0bb1c4e146107d857600080fd5b806395d89b4111610149578063a22cb46511610123578063a22cb465146106ca578063a9fd9af9146106ea578063b54fa47414610709578063b7f280571461072957600080fd5b806395d89b4114610682578063982121a01461069757806399664549146106b757600080fd5b8063715018a6146105d85780638adf1bbc146105ed5780638bf97a811461060e5780638da5cb5b14610624578063921032d51461064257806393e350451461066257600080fd5b806342842e0e1161024f5780636352211e1161020857806368fc68c7116101e257806368fc68c71461056e5780636b8dc355146105835780636ef82ecc1461059857806370a08231146105b857600080fd5b80636352211e1461051d57806364f42d8a1461053d578063676dd5631461055257600080fd5b806342842e0e14610461578063438b6300146104815780634f6ccce7146104ae57806355f804b3146104ce578063577ad34d146104ee5780635b52d0e91461050a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf57806312065fe0146103ef57806318160ddd1461040457806323b872dd146104195780632f745c59146104395780633ccfd60b1461045957600080fd5b8062923f9e146102e857806301ffc9a71461031d578063020b39cc1461033d5780630562b9f71461036057806306fdde0314610375578063081812fc14610397575b600080fd5b3480156102f457600080fd5b50610308610303366004613148565b6108e0565b60405190151581526020015b60405180910390f35b34801561032957600080fd5b506103086103383660046130ca565b610901565b34801561034957600080fd5b50610352601481565b604051908152602001610314565b61037361036e366004613148565b610926565b005b34801561038157600080fd5b5061038a61098a565b604051610314919061336f565b3480156103a357600080fd5b506103b76103b2366004613148565b610a1c565b6040516001600160a01b039091168152602001610314565b3480156103db57600080fd5b506103736103ea36600461306f565b610ab1565b3480156103fb57600080fd5b50610352610bc7565b34801561041057600080fd5b50600854610352565b34801561042557600080fd5b50610373610434366004612f81565b610bf9565b34801561044557600080fd5b5061035261045436600461306f565b610c2a565b610373610cc0565b34801561046d57600080fd5b5061037361047c366004612f81565b610d19565b34801561048d57600080fd5b506104a161049c366004612f2e565b610d34565b60405161031491906132ac565b3480156104ba57600080fd5b506103526104c9366004613148565b610f23565b3480156104da57600080fd5b506103736104e9366004613102565b610fc4565b3480156104fa57600080fd5b5061035267010a741a4627800081565b610373610518366004613148565b611000565b34801561052957600080fd5b506103b7610538366004613148565b6111bc565b34801561054957600080fd5b50610373611233565b34801561055e57600080fd5b5061035267011c37937e08000081565b34801561057a57600080fd5b5061035260c881565b34801561058f57600080fd5b5061035261127a565b3480156105a457600080fd5b506103526105b3366004613148565b61128a565b3480156105c457600080fd5b506103526105d3366004612f2e565b6112a1565b3480156105e457600080fd5b50610373611328565b3480156105f957600080fd5b50601f54610308906301000000900460ff1681565b34801561061a57600080fd5b5061035261271081565b34801561063057600080fd5b50600a546001600160a01b03166103b7565b34801561064e57600080fd5b5061035261065d366004613148565b61135e565b34801561066e57600080fd5b5061037361067d366004613148565b61136e565b34801561068e57600080fd5b5061038a6114ea565b3480156106a357600080fd5b506103526106b2366004613148565b6114f9565b6103736106c5366004613098565b611509565b3480156106d657600080fd5b506103736106e5366004613035565b611584565b3480156106f657600080fd5b50601f5461030890610100900460ff1681565b34801561071557600080fd5b50610352610724366004613148565b611649565b34801561073557600080fd5b50601f546103089062010000900460ff1681565b34801561075557600080fd5b50610373610764366004612fbc565b611659565b34801561077557600080fd5b5061038a610784366004613148565b61168b565b34801561079557600080fd5b506103736107a4366004613148565b6116bf565b3480156107b557600080fd5b50601f546103089060ff1681565b3480156107cf57600080fd5b5061037361174b565b3480156107e457600080fd5b506103736107f3366004613160565b611789565b610373610806366004613148565b611c52565b34801561081757600080fd5b5061037361082636600461306f565b611df7565b34801561083757600080fd5b50610308610846366004612f4f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088057600080fd5b50610889611ea3565b6040516103149190613323565b3480156108a257600080fd5b5061037361201b565b3480156108b757600080fd5b50610373612064565b3480156108cc57600080fd5b506103736108db366004612f2e565b6120af565b6000818152600260205260408120546001600160a01b031615155b92915050565b60006001600160e01b0319821663780e9d6360e01b14806108fb57506108fb8261214a565b600a546001600160a01b031633146109595760405162461bcd60e51b815260040161095090613477565b60405180910390fd5b604051339082156108fc029083906000818181858888f19350505050158015610986573d6000803e3d6000fd5b5050565b60606000805461099990613602565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613602565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b506000908152600460205260409020546001600160a01b031690565b6000610abc826111bc565b9050806001600160a01b0316836001600160a01b03161415610b2a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610950565b336001600160a01b0382161480610b465750610b468133610846565b610bb85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610950565b610bc2838361219a565b505050565b600a546000906001600160a01b03163314610bf45760405162461bcd60e51b815260040161095090613477565b504790565b610c033382612208565b610c1f5760405162461bcd60e51b8152600401610950906134f7565b610bc28383836122ff565b6000610c35836112a1565b8210610c975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610950565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cea5760405162461bcd60e51b815260040161095090613477565b6040514790339082156108fc029083906000818181858888f19350505050158015610986573d6000803e3d6000fd5b610bc283838360405180602001604052806000815250611659565b60606000610d41836112a1565b905060008167ffffffffffffffff811115610d6c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db757816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d8a5790505b50905060005b82811015610f1b57610dcf8582610c2a565b828281518110610def57634e487b7160e01b600052603260045260246000fd5b60200260200101516040018181525050610e33828281518110610e2257634e487b7160e01b600052603260045260246000fd5b6020026020010151604001516124aa565b828281518110610e5357634e487b7160e01b600052603260045260246000fd5b602090810291909101015190151590528151610e9a90839083908110610e8957634e487b7160e01b600052603260045260246000fd5b60200260200101516040015161250c565b828281518110610eba57634e487b7160e01b600052603260045260246000fd5b6020026020010151602001906004811115610ee557634e487b7160e01b600052602160045260246000fd5b90816004811115610f0657634e487b7160e01b600052602160045260246000fd5b90525080610f1381613637565b915050610dbd565b509392505050565b6000610f2e60085490565b8210610f915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610950565b60088281548110610fb257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610fee5760405162461bcd60e51b815260040161095090613477565b80516109869060209081840190612e08565b600061100b60085490565b601f54909150610100900460ff166110655760405162461bcd60e51b815260206004820152601b60248201527f43616e7420627579206567677320617420746865206d6f6d656e7400000000006044820152606401610950565b600082116110855760405162461bcd60e51b815260040161095090613382565b6127106110928383613574565b11156110ec5760405162461bcd60e51b815260206004820152602360248201527f507572636861736520657863656564696e67206d617820746f6b656e20737570604482015262706c7960e81b6064820152608401610950565b601482111561110d5760405162461bcd60e51b815260040161095090613427565b346111208367011c37937e0800006135a0565b1461116d5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610950565b60005b8281101561119d5761118b336111868385613574565b612564565b8061119581613637565b915050611170565b5081600b60000160008282546111b39190613574565b90915550505050565b6000818152600260205260408120546001600160a01b0316806108fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610950565b600a546001600160a01b0316331461125d5760405162461bcd60e51b815260040161095090613477565b601f805461ff001981166101009182900460ff1615909102179055565b61128760c86101f4613574565b81565b6010816005811061129a57600080fd5b0154905081565b60006001600160a01b03821661130c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610950565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113525760405162461bcd60e51b815260040161095090613477565b61135c600061257e565b565b6015816005811061129a57600080fd5b611377816111bc565b6001600160a01b0316336001600160a01b0316146113a75760405162461bcd60e51b815260040161095090613548565b601f5462010000900460ff166113ff5760405162461bcd60e51b815260206004820152601b60248201527f43616e7420696e63756261746520617420746865206d6f6d656e7400000000006044820152606401610950565b600061140a8261250c565b600481111561142957634e487b7160e01b600052602160045260246000fd5b1461146c5760405162461bcd60e51b8152602060048201526013602482015272546f6b656e206973206e6f7420616e2065676760681b6044820152606401610950565b60006114778261250c565b600481111561149657634e487b7160e01b600052602160045260246000fd5b90506114a1826125d0565b6114b13361118661271085613574565b601081600581106114d257634e487b7160e01b600052603260045260246000fd5b0180549060006114e183613637565b91905055505050565b60606001805461099990613602565b601a816005811061129a57600080fd5b600a546001600160a01b031633146115335760405162461bcd60e51b815260040161095090613477565b6001600160a01b0383166108fc606461154c84866135a0565b611556919061358c565b6040518115909202916000818181858888f1935050505015801561157e573d6000803e3d6000fd5b50505050565b6001600160a01b0382163314156115dd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610950565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b816005811061129a57600080fd5b6116633383612208565b61167f5760405162461bcd60e51b8152600401610950906134f7565b61157e84848484612677565b60606020611698836126aa565b6040516020016116a99291906131c9565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116e95760405162461bcd60e51b815260040161095090613477565b60006116f460085490565b905060c86117028383613574565b11156117205760405162461bcd60e51b8152600401610950906134ac565b60005b8281101561119d57611739336111868385613574565b8061174381613637565b915050611723565b600a546001600160a01b031633146117755760405162461bcd60e51b815260040161095090613477565b601f805460ff19811660ff90911615179055565b611792826111bc565b6001600160a01b0316336001600160a01b0316146117c25760405162461bcd60e51b815260040161095090613548565b6117cb816111bc565b6001600160a01b0316336001600160a01b0316146117fb5760405162461bcd60e51b815260040161095090613548565b601f546301000000900460ff166118545760405162461bcd60e51b815260206004820181905260248201527f43616e742066757365206d6f6e737465727320617420746865206d6f6d656e746044820152606401610950565b600061185f8361250c565b600481111561187e57634e487b7160e01b600052602160045260246000fd5b14156118c15760405162461bcd60e51b81526020600482015260126024820152711159d9dcc818d85b9d08189948199d5cd95960721b6044820152606401610950565b60006118cc8261250c565b60048111156118eb57634e487b7160e01b600052602160045260246000fd5b141561192e5760405162461bcd60e51b81526020600482015260126024820152711159d9dcc818d85b9d08189948199d5cd95960721b6044820152606401610950565b60046119398361250c565b600481111561195857634e487b7160e01b600052602160045260246000fd5b14156119a05760405162461bcd60e51b8152602060048201526017602482015276105b1c1a184819d95b8818d85b9d08189948199d5cd959604a1b6044820152606401610950565b60046119ab8261250c565b60048111156119ca57634e487b7160e01b600052602160045260246000fd5b1415611a125760405162461bcd60e51b8152602060048201526017602482015276105b1c1a184819d95b8818d85b9d08189948199d5cd959604a1b6044820152606401610950565b611a1c82826127c4565b611a775760405162461bcd60e51b815260206004820152602660248201527f4d6f6e7374657273206e65656420746f206265206f66206f70706f736974652060448201526533b2b73232b960d11b6064820152608401610950565b611a8182826127e5565b611adc5760405162461bcd60e51b815260206004820152602660248201527f4d6f6e7374657273206e65656420746f206265206f662073616d652067656e656044820152653930ba34b7b760d11b6064820152608401610950565b611ae58261283f565b15611b325760405162461bcd60e51b815260206004820152601c60248201527f4d61782067656e65726174696f6e206d696e74732072656163686564000000006044820152606401610950565b6000611b3d8361250c565b6004811115611b5c57634e487b7160e01b600052602160045260246000fd5b90506000611b6b826001613574565b9050611b76846125d0565b611b7f836125d0565b611bde33600b8360058110611ba457634e487b7160e01b600052603260045260246000fd5b015460158560058110611bc757634e487b7160e01b600052603260045260246000fd5b0154611bd4906001613574565b6111869190613574565b600260108360058110611c0157634e487b7160e01b600052603260045260246000fd5b016000828254611c119190613574565b90915550600b90508160058110611c3857634e487b7160e01b600052603260045260246000fd5b018054906000611c4783613637565b919050555050505050565b6000611c5d60085490565b601f5490915060ff16611cb25760405162461bcd60e51b815260206004820152601960248201527f50726573616c65206861736e74207374617274656420796574000000000000006044820152606401610950565b60008211611cd25760405162461bcd60e51b815260040161095090613382565b611cdf60c86101f4613574565b611ce98383613574565b1115611d4b5760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520657863656564696e67206d61782070726573616c65207460448201526a6f6b656e20737570706c7960a81b6064820152608401610950565b6014821115611d6c5760405162461bcd60e51b815260040161095090613427565b34611d7f8367010a741a462780006135a0565b14611dcc5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610950565b60005b8281101561119d57611de5336111868385613574565b80611def81613637565b915050611dcf565b600a546001600160a01b03163314611e215760405162461bcd60e51b815260040161095090613477565b6000611e2c60085490565b905060c8611e3a8383613574565b1115611e585760405162461bcd60e51b8152600401610950906134ac565b60005b82811015611e8357611e71846111868385613574565b80611e7b81613637565b915050611e5b565b5081600b6000016000828254611e999190613574565b9091555050505050565b60408051600580825260c0820190925260609160009190816020015b611ee360405180606001604052806000815260200160008152602001600081525090565b815260200190600190039081611ebf57905050905060005b600581101561201557600b8160058110611f2557634e487b7160e01b600052603260045260246000fd5b0154828281518110611f4757634e487b7160e01b600052603260045260246000fd5b60209081029190910101515260158160058110611f7457634e487b7160e01b600052603260045260246000fd5b0154611f81906001613574565b828281518110611fa157634e487b7160e01b600052603260045260246000fd5b6020026020010151602001818152505060108160058110611fd257634e487b7160e01b600052603260045260246000fd5b0154828281518110611ff457634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604001528061200d81613637565b915050611efb565b50919050565b600a546001600160a01b031633146120455760405162461bcd60e51b815260040161095090613477565b601f805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0316331461208e5760405162461bcd60e51b815260040161095090613477565b601f805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b031633146120d95760405162461bcd60e51b815260040161095090613477565b6001600160a01b03811661213e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b6121478161257e565b50565b60006001600160e01b031982166380ac58cd60e01b148061217b57506001600160e01b03198216635b5e139f60e01b145b806108fb57506301ffc9a760e01b6001600160e01b03198316146108fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121cf826111bc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b600061228c836111bc565b9050806001600160a01b0316846001600160a01b031614806122c75750836001600160a01b03166122bc84610a1c565b6001600160a01b0316145b806122f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612312826111bc565b6001600160a01b03161461237a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610950565b6001600160a01b0382166123dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6123e7838383612908565b6123f260008261219a565b6001600160a01b038316600090815260036020526040812080546001929061241b9084906135bf565b90915550506001600160a01b0382166000908152600360205260408120805460019290612449908490613574565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806124b68361250c565b60048111156124d557634e487b7160e01b600052602160045260246000fd5b9050601a81600581106124f857634e487b7160e01b600052603260045260246000fd5b01546125049084613652565b159392505050565b60185460009082111561252157506004919050565b60175482111561253357506003919050565b60165482111561254557506002919050565b60155482111561255757506001919050565b506000919050565b919050565b6109868282604051806020016040528060008152506129c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006125db826111bc565b90506125e981600084612908565b6125f460008361219a565b6001600160a01b038116600090815260036020526040812080546001929061261d9084906135bf565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126828484846122ff565b61268e848484846129f3565b61157e5760405162461bcd60e51b8152600401610950906133d5565b6060816126ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126f857806126e281613637565b91506126f19050600a8361358c565b91506126d2565b60008167ffffffffffffffff81111561272157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561274b576020820181803683370190505b5090505b84156122f7576127606001836135bf565b915061276d600a86613652565b612778906030613574565b60f81b81838151811061279b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127bd600a8661358c565b945061274f565b60006127cf826124aa565b15156127da846124aa565b151514159392505050565b60006127f08261250c565b600481111561280f57634e487b7160e01b600052602160045260246000fd5b6128188461250c565b600481111561283757634e487b7160e01b600052602160045260246000fd5b149392505050565b60008061284b8361250c565b600481111561286a57634e487b7160e01b600052602160045260246000fd5b90506000612879826001613574565b905060006015826005811061289e57634e487b7160e01b600052603260045260246000fd5b0154905080600b83600581106128c457634e487b7160e01b600052603260045260246000fd5b0154601585600581106128e757634e487b7160e01b600052603260045260246000fd5b01546128f4906001613574565b6128fe9190613574565b1195945050505050565b6001600160a01b0383166129635761295e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612986565b816001600160a01b0316836001600160a01b031614612986576129868382612b00565b6001600160a01b03821661299d57610bc281612b9d565b826001600160a01b0316826001600160a01b031614610bc257610bc28282612c76565b6129ca8383612cba565b6129d760008484846129f3565b610bc25760405162461bcd60e51b8152600401610950906133d5565b60006001600160a01b0384163b15612af557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a3790339089908890889060040161326f565b602060405180830381600087803b158015612a5157600080fd5b505af1925050508015612a81575060408051601f3d908101601f19168201909252612a7e918101906130e6565b60015b612adb573d808015612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b508051612ad35760405162461bcd60e51b8152600401610950906133d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f7565b506001949350505050565b60006001612b0d846112a1565b612b1791906135bf565b600083815260076020526040902054909150808214612b6a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612baf906001906135bf565b60008381526009602052604081205460088054939450909284908110612be557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c1457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c5a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c81836112a1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610950565b6000818152600260205260409020546001600160a01b031615612d755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610950565b612d8160008383612908565b6001600160a01b0382166000908152600360205260408120805460019290612daa908490613574565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e1490613602565b90600052602060002090601f016020900481019282612e365760008555612e7c565b82601f10612e4f57805160ff1916838001178555612e7c565b82800160010185558215612e7c579182015b82811115612e7c578251825591602001919060010190612e61565b50612e88929150612e8c565b5090565b5b80821115612e885760008155600101612e8d565b600067ffffffffffffffff80841115612ebc57612ebc613692565b604051601f8501601f19908116603f01168101908282118183101715612ee457612ee4613692565b81604052809350858152868686011115612efd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255f57600080fd5b600060208284031215612f3f578081fd5b612f4882612f17565b9392505050565b60008060408385031215612f61578081fd5b612f6a83612f17565b9150612f7860208401612f17565b90509250929050565b600080600060608486031215612f95578081fd5b612f9e84612f17565b9250612fac60208501612f17565b9150604084013590509250925092565b60008060008060808587031215612fd1578081fd5b612fda85612f17565b9350612fe860208601612f17565b925060408501359150606085013567ffffffffffffffff81111561300a578182fd5b8501601f8101871361301a578182fd5b61302987823560208401612ea1565b91505092959194509250565b60008060408385031215613047578182fd5b61305083612f17565b915060208301358015158114613064578182fd5b809150509250929050565b60008060408385031215613081578182fd5b61308a83612f17565b946020939093013593505050565b6000806000606084860312156130ac578283fd5b6130b584612f17565b95602085013595506040909401359392505050565b6000602082840312156130db578081fd5b8135612f48816136a8565b6000602082840312156130f7578081fd5b8151612f48816136a8565b600060208284031215613113578081fd5b813567ffffffffffffffff811115613129578182fd5b8201601f81018413613139578182fd5b6122f784823560208401612ea1565b600060208284031215613159578081fd5b5035919050565b60008060408385031215613172578182fd5b50508035926020909101359150565b600081518084526131998160208601602086016135d6565b601f01601f19169290920160200192915050565b600081516131bf8185602086016135d6565b9290920192915050565b600080845482600182811c9150808316806131e557607f831692505b602080841082141561320557634e487b7160e01b87526022600452602487fd5b818015613219576001811461322a57613256565b60ff19861689528489019650613256565b60008b815260209020885b8681101561324e5781548b820152908501908301613235565b505084890196505b50505050505061326681856131ad565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132a290830184613181565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561331657815180511515855286810151600581106132f957634e487b7160e01b89526021600452602489fd5b8588015285015185850152606090930192908501906001016132c9565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156133165781518051855286810151878601528501518585015260609093019290850190600101613340565b602081526000612f486020830184613181565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f43616e206f6e6c79206d696e742061206d6178206f6620323020746f6b656e7360408201526f103832b9103a3930b739b0b1ba34b7b760811b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f507572636861736520657863656564696e67206d61782072657365727665207460408201526a6f6b656e20737570706c7960a81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260129082015271151a1a5cc81a5cdb9d081e5bdd5c8813919560721b604082015260600190565b6000821982111561358757613587613666565b500190565b60008261359b5761359b61367c565b500490565b60008160001904831182151516156135ba576135ba613666565b500290565b6000828210156135d1576135d1613666565b500390565b60005b838110156135f15781810151838201526020016135d9565b8381111561157e5750506000910152565b600181811c9082168061361657607f821691505b6020821081141561201557634e487b7160e01b600052602260045260246000fd5b600060001982141561364b5761364b613666565b5060010190565b6000826136615761366161367c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461214757600080fdfea2646970667358221220a927c0bd9d1ffcae619d5ad228fe7dbe816c3b2e0ff970047c3e3dd1e7a6b21664736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102e35760003560e01c8063715018a611610190578063b88d4fde116100dc578063e224809a11610095578063eb36f3501161006f578063eb36f35014610874578063ebe78a2a14610896578063efd12de6146108ab578063f2fde38b146108c057600080fd5b8063e224809a146107f8578063e71433d61461080b578063e985e9c51461082b57600080fd5b8063b88d4fde14610749578063c87b56dd14610769578063d031370b14610789578063d293187c146107a9578063dd500e02146107c3578063e0bb1c4e146107d857600080fd5b806395d89b4111610149578063a22cb46511610123578063a22cb465146106ca578063a9fd9af9146106ea578063b54fa47414610709578063b7f280571461072957600080fd5b806395d89b4114610682578063982121a01461069757806399664549146106b757600080fd5b8063715018a6146105d85780638adf1bbc146105ed5780638bf97a811461060e5780638da5cb5b14610624578063921032d51461064257806393e350451461066257600080fd5b806342842e0e1161024f5780636352211e1161020857806368fc68c7116101e257806368fc68c71461056e5780636b8dc355146105835780636ef82ecc1461059857806370a08231146105b857600080fd5b80636352211e1461051d57806364f42d8a1461053d578063676dd5631461055257600080fd5b806342842e0e14610461578063438b6300146104815780634f6ccce7146104ae57806355f804b3146104ce578063577ad34d146104ee5780635b52d0e91461050a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf57806312065fe0146103ef57806318160ddd1461040457806323b872dd146104195780632f745c59146104395780633ccfd60b1461045957600080fd5b8062923f9e146102e857806301ffc9a71461031d578063020b39cc1461033d5780630562b9f71461036057806306fdde0314610375578063081812fc14610397575b600080fd5b3480156102f457600080fd5b50610308610303366004613148565b6108e0565b60405190151581526020015b60405180910390f35b34801561032957600080fd5b506103086103383660046130ca565b610901565b34801561034957600080fd5b50610352601481565b604051908152602001610314565b61037361036e366004613148565b610926565b005b34801561038157600080fd5b5061038a61098a565b604051610314919061336f565b3480156103a357600080fd5b506103b76103b2366004613148565b610a1c565b6040516001600160a01b039091168152602001610314565b3480156103db57600080fd5b506103736103ea36600461306f565b610ab1565b3480156103fb57600080fd5b50610352610bc7565b34801561041057600080fd5b50600854610352565b34801561042557600080fd5b50610373610434366004612f81565b610bf9565b34801561044557600080fd5b5061035261045436600461306f565b610c2a565b610373610cc0565b34801561046d57600080fd5b5061037361047c366004612f81565b610d19565b34801561048d57600080fd5b506104a161049c366004612f2e565b610d34565b60405161031491906132ac565b3480156104ba57600080fd5b506103526104c9366004613148565b610f23565b3480156104da57600080fd5b506103736104e9366004613102565b610fc4565b3480156104fa57600080fd5b5061035267010a741a4627800081565b610373610518366004613148565b611000565b34801561052957600080fd5b506103b7610538366004613148565b6111bc565b34801561054957600080fd5b50610373611233565b34801561055e57600080fd5b5061035267011c37937e08000081565b34801561057a57600080fd5b5061035260c881565b34801561058f57600080fd5b5061035261127a565b3480156105a457600080fd5b506103526105b3366004613148565b61128a565b3480156105c457600080fd5b506103526105d3366004612f2e565b6112a1565b3480156105e457600080fd5b50610373611328565b3480156105f957600080fd5b50601f54610308906301000000900460ff1681565b34801561061a57600080fd5b5061035261271081565b34801561063057600080fd5b50600a546001600160a01b03166103b7565b34801561064e57600080fd5b5061035261065d366004613148565b61135e565b34801561066e57600080fd5b5061037361067d366004613148565b61136e565b34801561068e57600080fd5b5061038a6114ea565b3480156106a357600080fd5b506103526106b2366004613148565b6114f9565b6103736106c5366004613098565b611509565b3480156106d657600080fd5b506103736106e5366004613035565b611584565b3480156106f657600080fd5b50601f5461030890610100900460ff1681565b34801561071557600080fd5b50610352610724366004613148565b611649565b34801561073557600080fd5b50601f546103089062010000900460ff1681565b34801561075557600080fd5b50610373610764366004612fbc565b611659565b34801561077557600080fd5b5061038a610784366004613148565b61168b565b34801561079557600080fd5b506103736107a4366004613148565b6116bf565b3480156107b557600080fd5b50601f546103089060ff1681565b3480156107cf57600080fd5b5061037361174b565b3480156107e457600080fd5b506103736107f3366004613160565b611789565b610373610806366004613148565b611c52565b34801561081757600080fd5b5061037361082636600461306f565b611df7565b34801561083757600080fd5b50610308610846366004612f4f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088057600080fd5b50610889611ea3565b6040516103149190613323565b3480156108a257600080fd5b5061037361201b565b3480156108b757600080fd5b50610373612064565b3480156108cc57600080fd5b506103736108db366004612f2e565b6120af565b6000818152600260205260408120546001600160a01b031615155b92915050565b60006001600160e01b0319821663780e9d6360e01b14806108fb57506108fb8261214a565b600a546001600160a01b031633146109595760405162461bcd60e51b815260040161095090613477565b60405180910390fd5b604051339082156108fc029083906000818181858888f19350505050158015610986573d6000803e3d6000fd5b5050565b60606000805461099990613602565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613602565b8015610a125780601f106109e757610100808354040283529160200191610a12565b820191906000526020600020905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b506000908152600460205260409020546001600160a01b031690565b6000610abc826111bc565b9050806001600160a01b0316836001600160a01b03161415610b2a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610950565b336001600160a01b0382161480610b465750610b468133610846565b610bb85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610950565b610bc2838361219a565b505050565b600a546000906001600160a01b03163314610bf45760405162461bcd60e51b815260040161095090613477565b504790565b610c033382612208565b610c1f5760405162461bcd60e51b8152600401610950906134f7565b610bc28383836122ff565b6000610c35836112a1565b8210610c975760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610950565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cea5760405162461bcd60e51b815260040161095090613477565b6040514790339082156108fc029083906000818181858888f19350505050158015610986573d6000803e3d6000fd5b610bc283838360405180602001604052806000815250611659565b60606000610d41836112a1565b905060008167ffffffffffffffff811115610d6c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db757816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d8a5790505b50905060005b82811015610f1b57610dcf8582610c2a565b828281518110610def57634e487b7160e01b600052603260045260246000fd5b60200260200101516040018181525050610e33828281518110610e2257634e487b7160e01b600052603260045260246000fd5b6020026020010151604001516124aa565b828281518110610e5357634e487b7160e01b600052603260045260246000fd5b602090810291909101015190151590528151610e9a90839083908110610e8957634e487b7160e01b600052603260045260246000fd5b60200260200101516040015161250c565b828281518110610eba57634e487b7160e01b600052603260045260246000fd5b6020026020010151602001906004811115610ee557634e487b7160e01b600052602160045260246000fd5b90816004811115610f0657634e487b7160e01b600052602160045260246000fd5b90525080610f1381613637565b915050610dbd565b509392505050565b6000610f2e60085490565b8210610f915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610950565b60088281548110610fb257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610fee5760405162461bcd60e51b815260040161095090613477565b80516109869060209081840190612e08565b600061100b60085490565b601f54909150610100900460ff166110655760405162461bcd60e51b815260206004820152601b60248201527f43616e7420627579206567677320617420746865206d6f6d656e7400000000006044820152606401610950565b600082116110855760405162461bcd60e51b815260040161095090613382565b6127106110928383613574565b11156110ec5760405162461bcd60e51b815260206004820152602360248201527f507572636861736520657863656564696e67206d617820746f6b656e20737570604482015262706c7960e81b6064820152608401610950565b601482111561110d5760405162461bcd60e51b815260040161095090613427565b346111208367011c37937e0800006135a0565b1461116d5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610950565b60005b8281101561119d5761118b336111868385613574565b612564565b8061119581613637565b915050611170565b5081600b60000160008282546111b39190613574565b90915550505050565b6000818152600260205260408120546001600160a01b0316806108fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610950565b600a546001600160a01b0316331461125d5760405162461bcd60e51b815260040161095090613477565b601f805461ff001981166101009182900460ff1615909102179055565b61128760c86101f4613574565b81565b6010816005811061129a57600080fd5b0154905081565b60006001600160a01b03821661130c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610950565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113525760405162461bcd60e51b815260040161095090613477565b61135c600061257e565b565b6015816005811061129a57600080fd5b611377816111bc565b6001600160a01b0316336001600160a01b0316146113a75760405162461bcd60e51b815260040161095090613548565b601f5462010000900460ff166113ff5760405162461bcd60e51b815260206004820152601b60248201527f43616e7420696e63756261746520617420746865206d6f6d656e7400000000006044820152606401610950565b600061140a8261250c565b600481111561142957634e487b7160e01b600052602160045260246000fd5b1461146c5760405162461bcd60e51b8152602060048201526013602482015272546f6b656e206973206e6f7420616e2065676760681b6044820152606401610950565b60006114778261250c565b600481111561149657634e487b7160e01b600052602160045260246000fd5b90506114a1826125d0565b6114b13361118661271085613574565b601081600581106114d257634e487b7160e01b600052603260045260246000fd5b0180549060006114e183613637565b91905055505050565b60606001805461099990613602565b601a816005811061129a57600080fd5b600a546001600160a01b031633146115335760405162461bcd60e51b815260040161095090613477565b6001600160a01b0383166108fc606461154c84866135a0565b611556919061358c565b6040518115909202916000818181858888f1935050505015801561157e573d6000803e3d6000fd5b50505050565b6001600160a01b0382163314156115dd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610950565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b816005811061129a57600080fd5b6116633383612208565b61167f5760405162461bcd60e51b8152600401610950906134f7565b61157e84848484612677565b60606020611698836126aa565b6040516020016116a99291906131c9565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116e95760405162461bcd60e51b815260040161095090613477565b60006116f460085490565b905060c86117028383613574565b11156117205760405162461bcd60e51b8152600401610950906134ac565b60005b8281101561119d57611739336111868385613574565b8061174381613637565b915050611723565b600a546001600160a01b031633146117755760405162461bcd60e51b815260040161095090613477565b601f805460ff19811660ff90911615179055565b611792826111bc565b6001600160a01b0316336001600160a01b0316146117c25760405162461bcd60e51b815260040161095090613548565b6117cb816111bc565b6001600160a01b0316336001600160a01b0316146117fb5760405162461bcd60e51b815260040161095090613548565b601f546301000000900460ff166118545760405162461bcd60e51b815260206004820181905260248201527f43616e742066757365206d6f6e737465727320617420746865206d6f6d656e746044820152606401610950565b600061185f8361250c565b600481111561187e57634e487b7160e01b600052602160045260246000fd5b14156118c15760405162461bcd60e51b81526020600482015260126024820152711159d9dcc818d85b9d08189948199d5cd95960721b6044820152606401610950565b60006118cc8261250c565b60048111156118eb57634e487b7160e01b600052602160045260246000fd5b141561192e5760405162461bcd60e51b81526020600482015260126024820152711159d9dcc818d85b9d08189948199d5cd95960721b6044820152606401610950565b60046119398361250c565b600481111561195857634e487b7160e01b600052602160045260246000fd5b14156119a05760405162461bcd60e51b8152602060048201526017602482015276105b1c1a184819d95b8818d85b9d08189948199d5cd959604a1b6044820152606401610950565b60046119ab8261250c565b60048111156119ca57634e487b7160e01b600052602160045260246000fd5b1415611a125760405162461bcd60e51b8152602060048201526017602482015276105b1c1a184819d95b8818d85b9d08189948199d5cd959604a1b6044820152606401610950565b611a1c82826127c4565b611a775760405162461bcd60e51b815260206004820152602660248201527f4d6f6e7374657273206e65656420746f206265206f66206f70706f736974652060448201526533b2b73232b960d11b6064820152608401610950565b611a8182826127e5565b611adc5760405162461bcd60e51b815260206004820152602660248201527f4d6f6e7374657273206e65656420746f206265206f662073616d652067656e656044820152653930ba34b7b760d11b6064820152608401610950565b611ae58261283f565b15611b325760405162461bcd60e51b815260206004820152601c60248201527f4d61782067656e65726174696f6e206d696e74732072656163686564000000006044820152606401610950565b6000611b3d8361250c565b6004811115611b5c57634e487b7160e01b600052602160045260246000fd5b90506000611b6b826001613574565b9050611b76846125d0565b611b7f836125d0565b611bde33600b8360058110611ba457634e487b7160e01b600052603260045260246000fd5b015460158560058110611bc757634e487b7160e01b600052603260045260246000fd5b0154611bd4906001613574565b6111869190613574565b600260108360058110611c0157634e487b7160e01b600052603260045260246000fd5b016000828254611c119190613574565b90915550600b90508160058110611c3857634e487b7160e01b600052603260045260246000fd5b018054906000611c4783613637565b919050555050505050565b6000611c5d60085490565b601f5490915060ff16611cb25760405162461bcd60e51b815260206004820152601960248201527f50726573616c65206861736e74207374617274656420796574000000000000006044820152606401610950565b60008211611cd25760405162461bcd60e51b815260040161095090613382565b611cdf60c86101f4613574565b611ce98383613574565b1115611d4b5760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520657863656564696e67206d61782070726573616c65207460448201526a6f6b656e20737570706c7960a81b6064820152608401610950565b6014821115611d6c5760405162461bcd60e51b815260040161095090613427565b34611d7f8367010a741a462780006135a0565b14611dcc5760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610950565b60005b8281101561119d57611de5336111868385613574565b80611def81613637565b915050611dcf565b600a546001600160a01b03163314611e215760405162461bcd60e51b815260040161095090613477565b6000611e2c60085490565b905060c8611e3a8383613574565b1115611e585760405162461bcd60e51b8152600401610950906134ac565b60005b82811015611e8357611e71846111868385613574565b80611e7b81613637565b915050611e5b565b5081600b6000016000828254611e999190613574565b9091555050505050565b60408051600580825260c0820190925260609160009190816020015b611ee360405180606001604052806000815260200160008152602001600081525090565b815260200190600190039081611ebf57905050905060005b600581101561201557600b8160058110611f2557634e487b7160e01b600052603260045260246000fd5b0154828281518110611f4757634e487b7160e01b600052603260045260246000fd5b60209081029190910101515260158160058110611f7457634e487b7160e01b600052603260045260246000fd5b0154611f81906001613574565b828281518110611fa157634e487b7160e01b600052603260045260246000fd5b6020026020010151602001818152505060108160058110611fd257634e487b7160e01b600052603260045260246000fd5b0154828281518110611ff457634e487b7160e01b600052603260045260246000fd5b6020908102919091010151604001528061200d81613637565b915050611efb565b50919050565b600a546001600160a01b031633146120455760405162461bcd60e51b815260040161095090613477565b601f805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b0316331461208e5760405162461bcd60e51b815260040161095090613477565b601f805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b031633146120d95760405162461bcd60e51b815260040161095090613477565b6001600160a01b03811661213e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b6121478161257e565b50565b60006001600160e01b031982166380ac58cd60e01b148061217b57506001600160e01b03198216635b5e139f60e01b145b806108fb57506301ffc9a760e01b6001600160e01b03198316146108fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121cf826111bc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610950565b600061228c836111bc565b9050806001600160a01b0316846001600160a01b031614806122c75750836001600160a01b03166122bc84610a1c565b6001600160a01b0316145b806122f757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612312826111bc565b6001600160a01b03161461237a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610950565b6001600160a01b0382166123dc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6123e7838383612908565b6123f260008261219a565b6001600160a01b038316600090815260036020526040812080546001929061241b9084906135bf565b90915550506001600160a01b0382166000908152600360205260408120805460019290612449908490613574565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806124b68361250c565b60048111156124d557634e487b7160e01b600052602160045260246000fd5b9050601a81600581106124f857634e487b7160e01b600052603260045260246000fd5b01546125049084613652565b159392505050565b60185460009082111561252157506004919050565b60175482111561253357506003919050565b60165482111561254557506002919050565b60155482111561255757506001919050565b506000919050565b919050565b6109868282604051806020016040528060008152506129c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006125db826111bc565b90506125e981600084612908565b6125f460008361219a565b6001600160a01b038116600090815260036020526040812080546001929061261d9084906135bf565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126828484846122ff565b61268e848484846129f3565b61157e5760405162461bcd60e51b8152600401610950906133d5565b6060816126ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126f857806126e281613637565b91506126f19050600a8361358c565b91506126d2565b60008167ffffffffffffffff81111561272157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561274b576020820181803683370190505b5090505b84156122f7576127606001836135bf565b915061276d600a86613652565b612778906030613574565b60f81b81838151811061279b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506127bd600a8661358c565b945061274f565b60006127cf826124aa565b15156127da846124aa565b151514159392505050565b60006127f08261250c565b600481111561280f57634e487b7160e01b600052602160045260246000fd5b6128188461250c565b600481111561283757634e487b7160e01b600052602160045260246000fd5b149392505050565b60008061284b8361250c565b600481111561286a57634e487b7160e01b600052602160045260246000fd5b90506000612879826001613574565b905060006015826005811061289e57634e487b7160e01b600052603260045260246000fd5b0154905080600b83600581106128c457634e487b7160e01b600052603260045260246000fd5b0154601585600581106128e757634e487b7160e01b600052603260045260246000fd5b01546128f4906001613574565b6128fe9190613574565b1195945050505050565b6001600160a01b0383166129635761295e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612986565b816001600160a01b0316836001600160a01b031614612986576129868382612b00565b6001600160a01b03821661299d57610bc281612b9d565b826001600160a01b0316826001600160a01b031614610bc257610bc28282612c76565b6129ca8383612cba565b6129d760008484846129f3565b610bc25760405162461bcd60e51b8152600401610950906133d5565b60006001600160a01b0384163b15612af557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a3790339089908890889060040161326f565b602060405180830381600087803b158015612a5157600080fd5b505af1925050508015612a81575060408051601f3d908101601f19168201909252612a7e918101906130e6565b60015b612adb573d808015612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b508051612ad35760405162461bcd60e51b8152600401610950906133d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122f7565b506001949350505050565b60006001612b0d846112a1565b612b1791906135bf565b600083815260076020526040902054909150808214612b6a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612baf906001906135bf565b60008381526009602052604081205460088054939450909284908110612be557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c1457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c5a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c81836112a1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610950565b6000818152600260205260409020546001600160a01b031615612d755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610950565b612d8160008383612908565b6001600160a01b0382166000908152600360205260408120805460019290612daa908490613574565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612e1490613602565b90600052602060002090601f016020900481019282612e365760008555612e7c565b82601f10612e4f57805160ff1916838001178555612e7c565b82800160010185558215612e7c579182015b82811115612e7c578251825591602001919060010190612e61565b50612e88929150612e8c565b5090565b5b80821115612e885760008155600101612e8d565b600067ffffffffffffffff80841115612ebc57612ebc613692565b604051601f8501601f19908116603f01168101908282118183101715612ee457612ee4613692565b81604052809350858152868686011115612efd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461255f57600080fd5b600060208284031215612f3f578081fd5b612f4882612f17565b9392505050565b60008060408385031215612f61578081fd5b612f6a83612f17565b9150612f7860208401612f17565b90509250929050565b600080600060608486031215612f95578081fd5b612f9e84612f17565b9250612fac60208501612f17565b9150604084013590509250925092565b60008060008060808587031215612fd1578081fd5b612fda85612f17565b9350612fe860208601612f17565b925060408501359150606085013567ffffffffffffffff81111561300a578182fd5b8501601f8101871361301a578182fd5b61302987823560208401612ea1565b91505092959194509250565b60008060408385031215613047578182fd5b61305083612f17565b915060208301358015158114613064578182fd5b809150509250929050565b60008060408385031215613081578182fd5b61308a83612f17565b946020939093013593505050565b6000806000606084860312156130ac578283fd5b6130b584612f17565b95602085013595506040909401359392505050565b6000602082840312156130db578081fd5b8135612f48816136a8565b6000602082840312156130f7578081fd5b8151612f48816136a8565b600060208284031215613113578081fd5b813567ffffffffffffffff811115613129578182fd5b8201601f81018413613139578182fd5b6122f784823560208401612ea1565b600060208284031215613159578081fd5b5035919050565b60008060408385031215613172578182fd5b50508035926020909101359150565b600081518084526131998160208601602086016135d6565b601f01601f19169290920160200192915050565b600081516131bf8185602086016135d6565b9290920192915050565b600080845482600182811c9150808316806131e557607f831692505b602080841082141561320557634e487b7160e01b87526022600452602487fd5b818015613219576001811461322a57613256565b60ff19861689528489019650613256565b60008b815260209020885b8681101561324e5781548b820152908501908301613235565b505084890196505b50505050505061326681856131ad565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132a290830184613181565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b8281101561331657815180511515855286810151600581106132f957634e487b7160e01b89526021600452602489fd5b8588015285015185850152606090930192908501906001016132c9565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156133165781518051855286810151878601528501518585015260609093019290850190600101613340565b602081526000612f486020830184613181565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f43616e206f6e6c79206d696e742061206d6178206f6620323020746f6b656e7360408201526f103832b9103a3930b739b0b1ba34b7b760811b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f507572636861736520657863656564696e67206d61782072657365727665207460408201526a6f6b656e20737570706c7960a81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260129082015271151a1a5cc81a5cdb9d081e5bdd5c8813919560721b604082015260600190565b6000821982111561358757613587613666565b500190565b60008261359b5761359b61367c565b500490565b60008160001904831182151516156135ba576135ba613666565b500290565b6000828210156135d1576135d1613666565b500390565b60005b838110156135f15781810151838201526020016135d9565b8381111561157e5750506000910152565b600181811c9082168061361657607f821691505b6020821081141561201557634e487b7160e01b600052602260045260246000fd5b600060001982141561364b5761364b613666565b5060010190565b6000826136615761366161367c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461214757600080fdfea2646970667358221220a927c0bd9d1ffcae619d5ad228fe7dbe816c3b2e0ff970047c3e3dd1e7a6b21664736f6c63430008040033

Deployed Bytecode Sourcemap

42725:9477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50939:106;;;;;;;;;;-1:-1:-1;50939:106:0;;;;;:::i;:::-;;:::i;:::-;;;9270:14:1;;9263:22;9245:41;;9233:2;9218:18;50939:106:0;;;;;;;;23409:224;;;;;;;;;;-1:-1:-1;23409:224:0;;;;;:::i;:::-;;:::i;43551:45::-;;;;;;;;;;;;43594:2;43551:45;;;;;22873:25:1;;;22861:2;22846:18;43551:45:0;22828:76:1;51217:120:0;;;;;;:::i;:::-;;:::i;:::-;;11413:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12972:221::-;;;;;;;;;;-1:-1:-1;12972:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6592:32:1;;;6574:51;;6562:2;6547:18;12972:221:0;6529:102:1;12495:411:0;;;;;;;;;;-1:-1:-1;12495:411:0;;;;;:::i;:::-;;:::i;51545:108::-;;;;;;;;;;;;;:::i;24049:113::-;;;;;;;;;;-1:-1:-1;24137:10:0;:17;24049:113;;13862:339;;;;;;;;;;-1:-1:-1;13862:339:0;;;;;:::i;:::-;;:::i;23717:256::-;;;;;;;;;;-1:-1:-1;23717:256:0;;;;;:::i;:::-;;:::i;51057:148::-;;;:::i;14272:185::-;;;;;;;;;;-1:-1:-1;14272:185:0;;;;;:::i;:::-;;:::i;50409:518::-;;;;;;;;;;-1:-1:-1;50409:518:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24239:233::-;;;;;;;;;;-1:-1:-1;24239:233:0;;;;;:::i;:::-;;:::i;51862:104::-;;;;;;;;;;-1:-1:-1;51862:104:0;;;;;:::i;:::-;;:::i;43464:61::-;;;;;;;;;;;;43508:17;43464:61;;46109:731;;;;;;:::i;:::-;;:::i;11107:239::-;;;;;;;;;;-1:-1:-1;11107:239:0;;;;;:::i;:::-;;:::i;44225:82::-;;;;;;;;;;;;;:::i;43392:53::-;;;;;;;;;;;;43428:17;43392:53;;43603:45;;;;;;;;;;;;43645:3;43603:45;;43708:66;;;;;;;;;;;;;:::i;43206:47::-;;;;;;;;;;-1:-1:-1;43206:47:0;;;;;:::i;:::-;;:::i;10837:208::-;;;;;;;;;;-1:-1:-1;10837:208:0;;;;;:::i;:::-;;:::i;42045:94::-;;;;;;;;;;;;;:::i;43939:31::-;;;;;;;;;;-1:-1:-1;43939:31:0;;;;;;;;;;;43655:46;;;;;;;;;;;;43696:5;43655:46;;41394:87;;;;;;;;;;-1:-1:-1;41467:6:0;;-1:-1:-1;;;;;41467:6:0;41394:87;;43260:64;;;;;;;;;;-1:-1:-1;43260:64:0;;;;;:::i;:::-;;:::i;48106:470::-;;;;;;;;;;-1:-1:-1;48106:470:0;;;;;:::i;:::-;;:::i;11582:104::-;;;;;;;;;;;;;:::i;43331:48::-;;;;;;;;;;-1:-1:-1;43331:48:0;;;;;:::i;:::-;;:::i;51349:184::-;;;;;;:::i;:::-;;:::i;13265:295::-;;;;;;;;;;-1:-1:-1;13265:295:0;;;;;:::i;:::-;;:::i;43862:28::-;;;;;;;;;;-1:-1:-1;43862:28:0;;;;;;;;;;;43150:49;;;;;;;;;;-1:-1:-1;43150:49:0;;;;;:::i;:::-;;:::i;43897:35::-;;;;;;;;;;-1:-1:-1;43897:35:0;;;;;;;;;;;14528:328;;;;;;;;;;-1:-1:-1;14528:328:0;;;;;:::i;:::-;;:::i;51974:225::-;;;;;;;;;;-1:-1:-1;51974:225:0;;;;;:::i;:::-;;:::i;44533:378::-;;;;;;;;;;-1:-1:-1;44533:378:0;;;;;:::i;:::-;;:::i;43823:32::-;;;;;;;;;;-1:-1:-1;43823:32:0;;;;;;;;44123:94;;;;;;;;;;;;;:::i;46852:1243::-;;;;;;;;;;-1:-1:-1;46852:1243:0;;;;;:::i;:::-;;:::i;45341:760::-;;;;;;:::i;:::-;;:::i;44923:406::-;;;;;;;;;;-1:-1:-1;44923:406:0;;;;;:::i;:::-;;:::i;13631:164::-;;;;;;;;;;-1:-1:-1;13631:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;13752:25:0;;;13728:4;13752:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13631:164;49634:422;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44422:103::-;;;;;;;;;;;;;:::i;44319:91::-;;;;;;;;;;;;;:::i;42294:192::-;;;;;;;;;;-1:-1:-1;42294:192:0;;;;;:::i;:::-;;:::i;50939:106::-;50998:4;16455:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16455:16:0;:30;;51021:16;51014:23;50939:106;-1:-1:-1;;50939:106:0:o;23409:224::-;23511:4;-1:-1:-1;;;;;;23535:50:0;;-1:-1:-1;;;23535:50:0;;:90;;;23589:36;23613:11;23589:23;:36::i;51217:120::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;;;;;;;;;51293:36:::1;::::0;51301:10:::1;::::0;51293:36;::::1;;;::::0;51322:6;;51293:36:::1;::::0;;;51322:6;51301:10;51293:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51217:120:::0;:::o;11413:100::-;11467:13;11500:5;11493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11413:100;:::o;12972:221::-;13048:7;16455:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16455:16:0;13068:73;;;;-1:-1:-1;;;13068:73:0;;17942:2:1;13068:73:0;;;17924:21:1;17981:2;17961:18;;;17954:30;18020:34;18000:18;;;17993:62;-1:-1:-1;;;18071:18:1;;;18064:42;18123:19;;13068:73:0;17914:234:1;13068:73:0;-1:-1:-1;13161:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;13161:24:0;;12972:221::o;12495:411::-;12576:13;12592:23;12607:7;12592:14;:23::i;:::-;12576:39;;12640:5;-1:-1:-1;;;;;12634:11:0;:2;-1:-1:-1;;;;;12634:11:0;;;12626:57;;;;-1:-1:-1;;;12626:57:0;;20293:2:1;12626:57:0;;;20275:21:1;20332:2;20312:18;;;20305:30;20371:34;20351:18;;;20344:62;-1:-1:-1;;;20422:18:1;;;20415:31;20463:19;;12626:57:0;20265:223:1;12626:57:0;790:10;-1:-1:-1;;;;;12718:21:0;;;;:62;;-1:-1:-1;12743:37:0;12760:5;790:10;13631:164;:::i;12743:37::-;12696:168;;;;-1:-1:-1;;;12696:168:0;;15206:2:1;12696:168:0;;;15188:21:1;15245:2;15225:18;;;15218:30;15284:34;15264:18;;;15257:62;15355:26;15335:18;;;15328:54;15399:19;;12696:168:0;15178:246:1;12696:168:0;12877:21;12886:2;12890:7;12877:8;:21::i;:::-;12495:411;;;:::o;51545:108::-;41467:6;;51598:7;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;-1:-1:-1;51624:21:0::1;51545:108:::0;:::o;13862:339::-;14057:41;790:10;14090:7;14057:18;:41::i;:::-;14049:103;;;;-1:-1:-1;;;14049:103:0;;;;;;;:::i;:::-;14165:28;14175:4;14181:2;14185:7;14165:9;:28::i;23717:256::-;23814:7;23850:23;23867:5;23850:16;:23::i;:::-;23842:5;:31;23834:87;;;;-1:-1:-1;;;23834:87:0;;10911:2:1;23834:87:0;;;10893:21:1;10950:2;10930:18;;;10923:30;10989:34;10969:18;;;10962:62;-1:-1:-1;;;11040:18:1;;;11033:41;11091:19;;23834:87:0;10883:233:1;23834:87:0;-1:-1:-1;;;;;;23939:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;23717:256::o;51057:148::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;51160:37:::1;::::0;51128:21:::1;::::0;51168:10:::1;::::0;51160:37;::::1;;;::::0;51128:21;;51113:12:::1;51160:37:::0;51113:12;51160:37;51128:21;51168:10;51160:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;14272:185:::0;14410:39;14427:4;14433:2;14437:7;14410:39;;;;;;;;;;;;:16;:39::i;50409:518::-;50469:21;50508:18;50529:17;50539:6;50529:9;:17::i;:::-;50508:38;;50557:31;50610:10;50591:30;;;;;;-1:-1:-1;;;50591:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;50591:30:0;;-1:-1:-1;;50591:30:0;;;;;;;;;;;;50557:64;;50637:9;50632:261;50652:10;50648:1;:14;50632:261;;;50707:30;50727:6;50735:1;50707:19;:30::i;:::-;50684:9;50694:1;50684:12;;;;;;-1:-1:-1;;;50684:12:0;;;;;;;;;;;;;;;:20;;:53;;;;;50774:31;50784:9;50794:1;50784:12;;;;;;-1:-1:-1;;;50784:12:0;;;;;;;;;;;;;;;:20;;;50774:9;:31::i;:::-;50752:9;50762:1;50752:12;;;;;;-1:-1:-1;;;50752:12:0;;;;;;;;;;;;;;;;;;;:53;;;;;50860:12;;50846:35;;50860:9;;50870:1;;50860:12;;;;-1:-1:-1;;;50860:12:0;;;;;;;;;;;;;;;:20;;;50846:13;:35::i;:::-;50820:9;50830:1;50820:12;;;;;;-1:-1:-1;;;50820:12:0;;;;;;;;;;;;;;;:23;;:61;;;;;;;-1:-1:-1;;;50820:61:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;50820:61:0;;;;;;;;;;;-1:-1:-1;50664:3:0;;;;:::i;:::-;;;;50632:261;;;-1:-1:-1;50910:9:0;50409:518;-1:-1:-1;;;50409:518:0:o;24239:233::-;24314:7;24350:30;24137:10;:17;;24049:113;24350:30;24342:5;:38;24334:95;;;;-1:-1:-1;;;24334:95:0;;21460:2:1;24334:95:0;;;21442:21:1;21499:2;21479:18;;;21472:30;21538:34;21518:18;;;21511:62;-1:-1:-1;;;21589:18:1;;;21582:42;21641:19;;24334:95:0;21432:234:1;24334:95:0;24447:10;24458:5;24447:17;;;;;;-1:-1:-1;;;24447:17:0;;;;;;;;;;;;;;;;;24440:24;;24239:233;;;:::o;51862:104::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;51934:24;;::::1;::::0;:13:::1;::::0;:24;;::::1;::::0;::::1;:::i;46109:731::-:0;46177:19;46199:13;24137:10;:17;;24049:113;46199:13;46231:8;;46177:35;;-1:-1:-1;46231:8:0;;;;;46223:48;;;;-1:-1:-1;;;46223:48:0;;14850:2:1;46223:48:0;;;14832:21:1;14889:2;14869:18;;;14862:30;14928:29;14908:18;;;14901:57;14975:18;;46223:48:0;14822:177:1;46223:48:0;46307:1;46290:14;:18;46282:82;;;;-1:-1:-1;;;46282:82:0;;;;;;;:::i;:::-;43696:5;46384:28;46398:14;46384:11;:28;:::i;:::-;46383:48;;46375:96;;;;-1:-1:-1;;;46375:96:0;;12913:2:1;46375:96:0;;;12895:21:1;12952:2;12932:18;;;12925:30;12991:34;12971:18;;;12964:62;-1:-1:-1;;;13042:18:1;;;13035:33;13085:19;;46375:96:0;12885:225:1;46375:96:0;43594:2;46490:14;:34;;46482:94;;;;-1:-1:-1;;;46482:94:0;;;;;;;:::i;:::-;46625:9;46595:26;46607:14;43428:17;46595:26;:::i;:::-;:39;46587:81;;;;-1:-1:-1;;;46587:81:0;;16452:2:1;46587:81:0;;;16434:21:1;16491:2;16471:18;;;16464:30;16530:31;16510:18;;;16503:59;16579:18;;46587:81:0;16424:179:1;46587:81:0;46686:6;46681:107;46702:14;46698:1;:18;46681:107;;;46738:38;46748:10;46760:15;46774:1;46760:11;:15;:::i;:::-;46738:9;:38::i;:::-;46718:3;;;;:::i;:::-;;;;46681:107;;;-1:-1:-1;46818:14:0;46798:13;46812:1;46798:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;46109:731:0:o;11107:239::-;11179:7;11215:16;;;:7;:16;;;;;;-1:-1:-1;;;;;11215:16:0;11250:19;11242:73;;;;-1:-1:-1;;;11242:73:0;;16042:2:1;11242:73:0;;;16024:21:1;16081:2;16061:18;;;16054:30;16120:34;16100:18;;;16093:62;-1:-1:-1;;;16171:18:1;;;16164:39;16220:19;;11242:73:0;16014:231:1;44225:82:0;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;44291:8:::1;::::0;;-1:-1:-1;;44279:20:0;::::1;44291:8;::::0;;;::::1;;;44290:9;44279:20:::0;;::::1;;::::0;;44225:82::o;43708:66::-;43753:21;43645:3;43771;43753:21;:::i;:::-;43708:66;:::o;43206:47::-;;;;;;;;;;;;;;;-1:-1:-1;43206:47:0;:::o;10837:208::-;10909:7;-1:-1:-1;;;;;10937:19:0;;10929:74;;;;-1:-1:-1;;;10929:74:0;;15631:2:1;10929:74:0;;;15613:21:1;15670:2;15650:18;;;15643:30;15709:34;15689:18;;;15682:62;-1:-1:-1;;;15760:18:1;;;15753:40;15810:19;;10929:74:0;15603:232:1;10929:74:0;-1:-1:-1;;;;;;11021:16:0;;;;;:9;:16;;;;;;;10837:208::o;42045:94::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;42110:21:::1;42128:1;42110:9;:21::i;:::-;42045:94::o:0;43260:64::-;;;;;;;;;;;48106:470;48184:16;48192:7;48184;:16::i;:::-;-1:-1:-1;;;;;48170:30:0;:10;-1:-1:-1;;;;;48170:30:0;;48162:61;;;;-1:-1:-1;;;48162:61:0;;;;;;;:::i;:::-;48241:15;;;;;;;48233:55;;;;-1:-1:-1;;;48233:55:0;;9723:2:1;48233:55:0;;;9705:21:1;9762:2;9742:18;;;9735:30;9801:29;9781:18;;;9774:57;9848:18;;48233:55:0;9695:177:1;48233:55:0;48332:15;48306:22;48320:7;48306:13;:22::i;:::-;:41;;;;;;-1:-1:-1;;;48306:41:0;;;;;;;;;;48298:73;;;;-1:-1:-1;;;48298:73:0;;18716:2:1;48298:73:0;;;18698:21:1;18755:2;18735:18;;;18728:30;-1:-1:-1;;;18774:18:1;;;18767:49;18833:18;;48298:73:0;18688:169:1;48298:73:0;48390:19;48420:22;48434:7;48420:13;:22::i;:::-;48412:31;;;;;;-1:-1:-1;;;48412:31:0;;;;;;;;;48390:53;;48461:14;48467:7;48461:5;:14::i;:::-;48485:47;48495:10;48507:24;43696:5;48507:7;:24;:::i;48485:47::-;48542:11;48554;48542:24;;;;;-1:-1:-1;;;48542:24:0;;;;;;;;;;:26;;;:24;:26;;;:::i;:::-;;;;;;48106:470;;:::o;11582:104::-;11638:13;11671:7;11664:14;;;;;:::i;43331:48::-;;;;;;;;;;;51349:184;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51470:30:0;::::1;:55;51521:3;51501:17;51512:6:::0;51501:8;:17:::1;:::i;:::-;:23;;;;:::i;:::-;51470:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51349:184:::0;;;:::o;13265:295::-;-1:-1:-1;;;;;13368:24:0;;790:10;13368:24;;13360:62;;;;-1:-1:-1;;;13360:62:0;;14083:2:1;13360:62:0;;;14065:21:1;14122:2;14102:18;;;14095:30;14161:27;14141:18;;;14134:55;14206:18;;13360:62:0;14055:175:1;13360:62:0;790:10;13435:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;13435:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;13435:53:0;;;;;;;;;;13504:48;;9245:41:1;;;13435:42:0;;790:10;13504:48;;9218:18:1;13504:48:0;;;;;;;13265:295;;:::o;43150:49::-;;;;;;;;;;;14528:328;14703:41;790:10;14736:7;14703:18;:41::i;:::-;14695:103;;;;-1:-1:-1;;;14695:103:0;;;;;;;:::i;:::-;14809:39;14823:4;14829:2;14833:7;14842:5;14809:13;:39::i;51974:225::-;52047:13;52156;52171:18;:7;:16;:18::i;:::-;52139:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52125:66;;51974:225;;;:::o;44533:378::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;44608:11:::1;44622:13;24137:10:::0;:17;;24049:113;44622:13:::1;44608:27:::0;-1:-1:-1;43645:3:0::1;44655:23;44664:14:::0;44608:27;44655:23:::1;:::i;:::-;44654:44;;44646:100;;;;-1:-1:-1::0;;;44646:100:0::1;;;;;;;:::i;:::-;44762:6;44757:102;44778:14;44774:1;:18;44757:102;;;44814:33;44824:10;44836;44845:1:::0;44836:6;:10:::1;:::i;44814:33::-;44794:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44757:102;;44123:94:::0;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;44197:12:::1;::::0;;-1:-1:-1;;44181:28:0;::::1;44197:12;::::0;;::::1;44196:13;44181:28;::::0;;44123:94::o;46852:1243::-;46945:17;46953:8;46945:7;:17::i;:::-;-1:-1:-1;;;;;46931:31:0;:10;-1:-1:-1;;;;;46931:31:0;;46923:62;;;;-1:-1:-1;;;46923:62:0;;;;;;;:::i;:::-;47017:17;47025:8;47017:7;:17::i;:::-;-1:-1:-1;;;;;47003:31:0;:10;-1:-1:-1;;;;;47003:31:0;;46995:62;;;;-1:-1:-1;;;46995:62:0;;;;;;;:::i;:::-;47075:11;;;;;;;47067:56;;;;-1:-1:-1;;;47067:56:0;;13317:2:1;47067:56:0;;;13299:21:1;;;13336:18;;;13329:30;13395:34;13375:18;;;13368:62;13447:18;;47067:56:0;13289:182:1;47067:56:0;47168:15;47141:23;47155:8;47141:13;:23::i;:::-;:42;;;;;;-1:-1:-1;;;47141:42:0;;;;;;;;;;;47133:73;;;;-1:-1:-1;;;47133:73:0;;20695:2:1;47133:73:0;;;20677:21:1;20734:2;20714:18;;;20707:30;-1:-1:-1;;;20753:18:1;;;20746:48;20811:18;;47133:73:0;20667:168:1;47133:73:0;47251:15;47224:23;47238:8;47224:13;:23::i;:::-;:42;;;;;;-1:-1:-1;;;47224:42:0;;;;;;;;;;;47216:73;;;;-1:-1:-1;;;47216:73:0;;20695:2:1;47216:73:0;;;20677:21:1;20734:2;20714:18;;;20707:30;-1:-1:-1;;;20753:18:1;;;20746:48;20811:18;;47216:73:0;20667:168:1;47216:73:0;47334:15;47307:23;47321:8;47307:13;:23::i;:::-;:42;;;;;;-1:-1:-1;;;47307:42:0;;;;;;;;;;;47299:78;;;;-1:-1:-1;;;47299:78:0;;22220:2:1;47299:78:0;;;22202:21:1;22259:2;22239:18;;;22232:30;-1:-1:-1;;;22278:18:1;;;22271:53;22341:18;;47299:78:0;22192:173:1;47299:78:0;47422:15;47395:23;47409:8;47395:13;:23::i;:::-;:42;;;;;;-1:-1:-1;;;47395:42:0;;;;;;;;;;;47387:78;;;;-1:-1:-1;;;47387:78:0;;22220:2:1;47387:78:0;;;22202:21:1;22259:2;22239:18;;;22232:30;-1:-1:-1;;;22278:18:1;;;22271:53;22341:18;;47387:78:0;22192:173:1;47387:78:0;47483:34;47498:8;47508;47483:14;:34::i;:::-;47475:85;;;;-1:-1:-1;;;47475:85:0;;19886:2:1;47475:85:0;;;19868:21:1;19925:2;19905:18;;;19898:30;19964:34;19944:18;;;19937:62;-1:-1:-1;;;20015:18:1;;;20008:36;20061:19;;47475:85:0;19858:228:1;47475:85:0;47578:34;47593:8;47603;47578:14;:34::i;:::-;47570:85;;;;-1:-1:-1;;;47570:85:0;;11742:2:1;47570:85:0;;;11724:21:1;11781:2;11761:18;;;11754:30;11820:34;11800:18;;;11793:62;-1:-1:-1;;;11871:18:1;;;11864:36;11917:19;;47570:85:0;11714:228:1;47570:85:0;47674:27;47692:8;47674:17;:27::i;:::-;47673:28;47665:69;;;;-1:-1:-1;;;47665:69:0;;22572:2:1;47665:69:0;;;22554:21:1;22611:2;22591:18;;;22584:30;22650;22630:18;;;22623:58;22698:18;;47665:69:0;22544:178:1;47665:69:0;47753:19;47783:23;47797:8;47783:13;:23::i;:::-;47775:32;;;;;;-1:-1:-1;;;47775:32:0;;;;;;;;;47753:54;-1:-1:-1;47817:16:0;47836:15;47753:54;47850:1;47836:15;:::i;:::-;47817:34;;47870:15;47876:8;47870:5;:15::i;:::-;47895;47901:8;47895:5;:15::i;:::-;47929:75;47939:10;47980:13;47994:8;47980:23;;;;;-1:-1:-1;;;47980:23:0;;;;;;;;;;;47951:9;47961:11;47951:22;;;;;-1:-1:-1;;;47951:22:0;;;;;;;;;;;:26;;47976:1;47951:26;:::i;:::-;:52;;;;:::i;47929:75::-;48051:1;48023:11;48035;48023:24;;;;;-1:-1:-1;;;48023:24:0;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;48062:13:0;;-1:-1:-1;48076:8:0;48062:23;;;;;-1:-1:-1;;;48062:23:0;;;;;;;;;;:25;;;:23;:25;;;:::i;:::-;;;;;;46852:1243;;;;:::o;45341:760::-;45416:19;45438:13;24137:10;:17;;24049:113;45438:13;45470:12;;45416:35;;-1:-1:-1;45470:12:0;;45462:50;;;;-1:-1:-1;;;45462:50:0;;17227:2:1;45462:50:0;;;17209:21:1;17266:2;17246:18;;;17239:30;17305:27;17285:18;;;17278:55;17350:18;;45462:50:0;17199:175:1;45462:50:0;45548:1;45531:14;:18;45523:82;;;;-1:-1:-1;;;45523:82:0;;;;;;;:::i;:::-;43753:21;43645:3;43771;43753:21;:::i;:::-;45625:28;45639:14;45625:11;:28;:::i;:::-;45624:52;;45616:108;;;;-1:-1:-1;;;45616:108:0;;10499:2:1;45616:108:0;;;10481:21:1;10538:2;10518:18;;;10511:30;10577:34;10557:18;;;10550:62;-1:-1:-1;;;10628:18:1;;;10621:41;10679:19;;45616:108:0;10471:233:1;45616:108:0;43594:2;45743:14;:34;;45735:94;;;;-1:-1:-1;;;45735:94:0;;;;;;;:::i;:::-;45886:9;45848:34;45868:14;43508:17;45848:34;:::i;:::-;:47;45840:89;;;;-1:-1:-1;;;45840:89:0;;16452:2:1;45840:89:0;;;16434:21:1;16491:2;16471:18;;;16464:30;16530:31;16510:18;;;16503:59;16579:18;;45840:89:0;16424:179:1;45840:89:0;45947:6;45942:107;45963:14;45959:1;:18;45942:107;;;45999:38;46009:10;46021:15;46035:1;46021:11;:15;:::i;45999:38::-;45979:3;;;;:::i;:::-;;;;45942:107;;44923:406;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;45024:11:::1;45038:13;24137:10:::0;:17;;24049:113;45038:13:::1;45024:27:::0;-1:-1:-1;43645:3:0::1;45071:23;45080:14:::0;45024:27;45071:23:::1;:::i;:::-;45070:44;;45062:100;;;;-1:-1:-1::0;;;45062:100:0::1;;;;;;;:::i;:::-;45178:6;45173:104;45194:14;45190:1;:18;45173:104;;;45230:35;45240:12:::0;45254:10:::1;45263:1:::0;45254:6;:10:::1;:::i;45230:35::-;45210:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45173:104;;;-1:-1:-1::0;45307:14:0;45287:13:::1;45301:1;45287:16;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;44923:406:0:o;49634:422::-;49758:42;;;49779:20;49758:42;;;;;;;;;49685:23;;49726:29;;49758:42;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;49758:42:0;;;;;;;;;;;;;;;;49726:74;;49816:9;49811:215;49831:20;49827:1;:24;49811:215;;;49891:13;49905:1;49891:16;;;;;-1:-1:-1;;;49891:16:0;;;;;;;;;;;49873:5;49879:1;49873:8;;;;;;-1:-1:-1;;;49873:8:0;;;;;;;;;;;;;;;;;;;:34;49944:9;49954:1;49944:12;;;;;-1:-1:-1;;;49944:12:0;;;;;;;;;;;:16;;49959:1;49944:16;:::i;:::-;49922:5;49928:1;49922:8;;;;;;-1:-1:-1;;;49922:8:0;;;;;;;;;;;;;;;:19;;:38;;;;;50000:11;50012:1;50000:14;;;;;-1:-1:-1;;;50000:14:0;;;;;;;;;;;49975:5;49981:1;49975:8;;;;;;-1:-1:-1;;;49975:8:0;;;;;;;;;;;;;;;;;;;:22;;:39;49853:3;;;;:::i;:::-;;;;49811:215;;;-1:-1:-1;50043:5:0;49634:422;-1:-1:-1;49634:422:0:o;44422:103::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;44502:15:::1;::::0;;-1:-1:-1;;44483:34:0;::::1;44502:15:::0;;;;::::1;;;44501:16;44483:34:::0;;::::1;;::::0;;44422:103::o;44319:91::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;44391:11:::1;::::0;;-1:-1:-1;;44376:26:0;::::1;44391:11:::0;;;;::::1;;;44390:12;44376:26:::0;;::::1;;::::0;;44319:91::o;42294:192::-;41467:6;;-1:-1:-1;;;;;41467:6:0;790:10;41614:23;41606:68;;;;-1:-1:-1;;;41606:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42383:22:0;::::1;42375:73;;;::::0;-1:-1:-1;;;42375:73:0;;12149:2:1;42375:73:0::1;::::0;::::1;12131:21:1::0;12188:2;12168:18;;;12161:30;12227:34;12207:18;;;12200:62;-1:-1:-1;;;12278:18:1;;;12271:36;12324:19;;42375:73:0::1;12121:228:1::0;42375:73:0::1;42459:19;42469:8;42459:9;:19::i;:::-;42294:192:::0;:::o;10468:305::-;10570:4;-1:-1:-1;;;;;;10607:40:0;;-1:-1:-1;;;10607:40:0;;:105;;-1:-1:-1;;;;;;;10664:48:0;;-1:-1:-1;;;10664:48:0;10607:105;:158;;;-1:-1:-1;;;;;;;;;;9099:40:0;;;10729:36;8990:157;20348:174;20423:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;20423:29:0;-1:-1:-1;;;;;20423:29:0;;;;;;;;:24;;20477:23;20423:24;20477:14;:23::i;:::-;-1:-1:-1;;;;;20468:46:0;;;;;;;;;;;20348:174;;:::o;16660:348::-;16753:4;16455:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16455:16:0;16770:73;;;;-1:-1:-1;;;16770:73:0;;14437:2:1;16770:73:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;-1:-1:-1;;;14566:18:1;;;14559:42;14618:19;;16770:73:0;14409:234:1;16770:73:0;16854:13;16870:23;16885:7;16870:14;:23::i;:::-;16854:39;;16923:5;-1:-1:-1;;;;;16912:16:0;:7;-1:-1:-1;;;;;16912:16:0;;:51;;;;16956:7;-1:-1:-1;;;;;16932:31:0;:20;16944:7;16932:11;:20::i;:::-;-1:-1:-1;;;;;16932:31:0;;16912:51;:87;;;-1:-1:-1;;;;;;13752:25:0;;;13728:4;13752:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;16967:32;16904:96;16660:348;-1:-1:-1;;;;16660:348:0:o;19652:578::-;19811:4;-1:-1:-1;;;;;19784:31:0;:23;19799:7;19784:14;:23::i;:::-;-1:-1:-1;;;;;19784:31:0;;19776:85;;;;-1:-1:-1;;;19776:85:0;;19064:2:1;19776:85:0;;;19046:21:1;19103:2;19083:18;;;19076:30;19142:34;19122:18;;;19115:62;-1:-1:-1;;;19193:18:1;;;19186:39;19242:19;;19776:85:0;19036:231:1;19776:85:0;-1:-1:-1;;;;;19880:16:0;;19872:65;;;;-1:-1:-1;;;19872:65:0;;13678:2:1;19872:65:0;;;13660:21:1;13717:2;13697:18;;;13690:30;13756:34;13736:18;;;13729:62;-1:-1:-1;;;13807:18:1;;;13800:34;13851:19;;19872:65:0;13650:226:1;19872:65:0;19950:39;19971:4;19977:2;19981:7;19950:20;:39::i;:::-;20054:29;20071:1;20075:7;20054:8;:29::i;:::-;-1:-1:-1;;;;;20096:15:0;;;;;;:9;:15;;;;;:20;;20115:1;;20096:15;:20;;20115:1;;20096:20;:::i;:::-;;;;-1:-1:-1;;;;;;;20127:13:0;;;;;;:9;:13;;;;;:18;;20144:1;;20127:13;:18;;20144:1;;20127:18;:::i;:::-;;;;-1:-1:-1;;20156:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;20156:21:0;-1:-1:-1;;;;;20156:21:0;;;;;;;;;20195:27;;20156:16;;20195:27;;;;;;;19652:578;;;:::o;48935:196::-;48993:4;49010:19;49040:22;49054:7;49040:13;:22::i;:::-;49032:31;;;;;;-1:-1:-1;;;49032:31:0;;;;;;;;;49010:53;;49092:12;49105:11;49092:25;;;;;-1:-1:-1;;;49092:25:0;;;;;;;;;;;49082:35;;:7;:35;:::i;:::-;49081:42;;48935:196;-1:-1:-1;;;48935:196:0:o;49142:480::-;49240:12;;49204:10;;49230:22;;49227:387;;;-1:-1:-1;49274:15:0;;49142:480;-1:-1:-1;49142:480:0:o;49227:387::-;49328:12;;49318:22;;49315:299;;;-1:-1:-1;49362:15:0;;49142:480;-1:-1:-1;49142:480:0:o;49315:299::-;49416:12;;49406:22;;49403:211;;;-1:-1:-1;49450:15:0;;49142:480;-1:-1:-1;49142:480:0:o;49403:211::-;49504:9;:12;49494:22;;49491:123;;;-1:-1:-1;49538:15:0;;49142:480;-1:-1:-1;49142:480:0:o;49491:123::-;-1:-1:-1;49599:15:0;;49142:480;-1:-1:-1;49142:480:0:o;49491:123::-;49142:480;;;:::o;17350:110::-;17426:26;17436:2;17440:7;17426:26;;;;;;;;;;;;:9;:26::i;42494:173::-;42569:6;;;-1:-1:-1;;;;;42586:17:0;;;-1:-1:-1;;;;;;42586:17:0;;;;;;;42619:40;;42569:6;;;42586:17;42569:6;;42619:40;;42550:16;;42619:40;42494:173;;:::o;18955:360::-;19015:13;19031:23;19046:7;19031:14;:23::i;:::-;19015:39;;19067:48;19088:5;19103:1;19107:7;19067:20;:48::i;:::-;19156:29;19173:1;19177:7;19156:8;:29::i;:::-;-1:-1:-1;;;;;19198:16:0;;;;;;:9;:16;;;;;:21;;19218:1;;19198:16;:21;;19218:1;;19198:21;:::i;:::-;;;;-1:-1:-1;;19237:16:0;;;;:7;:16;;;;;;19230:23;;-1:-1:-1;;;;;;19230:23:0;;;19271:36;19245:7;;19237:16;-1:-1:-1;;;;;19271:36:0;;;;;19237:16;;19271:36;18955:360;;:::o;15738:315::-;15895:28;15905:4;15911:2;15915:7;15895:9;:28::i;:::-;15942:48;15965:4;15971:2;15975:7;15984:5;15942:22;:48::i;:::-;15934:111;;;;-1:-1:-1;;;15934:111:0;;;;;;;:::i;29864:723::-;29920:13;30141:10;30137:53;;-1:-1:-1;;30168:10:0;;;;;;;;;;;;-1:-1:-1;;;30168:10:0;;;;;29864:723::o;30137:53::-;30215:5;30200:12;30256:78;30263:9;;30256:78;;30289:8;;;;:::i;:::-;;-1:-1:-1;30312:10:0;;-1:-1:-1;30320:2:0;30312:10;;:::i;:::-;;;30256:78;;;30344:19;30376:6;30366:17;;;;;;-1:-1:-1;;;30366:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30366:17:0;;30344:39;;30394:154;30401:10;;30394:154;;30428:11;30438:1;30428:11;;:::i;:::-;;-1:-1:-1;30497:10:0;30505:2;30497:5;:10;:::i;:::-;30484:24;;:2;:24;:::i;:::-;30471:39;;30454:6;30461;30454:14;;;;;;-1:-1:-1;;;30454:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;30454:56:0;;;;;;;;-1:-1:-1;30525:11:0;30534:2;30525:11;;:::i;:::-;;;30394:154;;50067:156;50149:4;50196:19;50206:8;50196:9;:19::i;:::-;50173:42;;:19;50183:8;50173:9;:19::i;:::-;:42;;;;;50067:156;-1:-1:-1;;;50067:156:0:o;50234:164::-;50316:4;50367:23;50381:8;50367:13;:23::i;:::-;50340:50;;;;;;-1:-1:-1;;;50340:50:0;;;;;;;;;:23;50354:8;50340:13;:23::i;:::-;:50;;;;;;-1:-1:-1;;;50340:50:0;;;;;;;;;;;50234:164;-1:-1:-1;;;50234:164:0:o;48588:335::-;48655:4;48672:19;48702:23;48716:8;48702:13;:23::i;:::-;48694:32;;;;;;-1:-1:-1;;;48694:32:0;;;;;;;;;48672:54;-1:-1:-1;48737:16:0;48756:15;48672:54;48770:1;48756:15;:::i;:::-;48737:34;;48782:17;48802:9;48812:8;48802:19;;;;;-1:-1:-1;;;48802:19:0;;;;;;;;;;;48782:39;;48906:9;48879:13;48893:8;48879:23;;;;;-1:-1:-1;;;48879:23:0;;;;;;;;;;;48850:9;48860:11;48850:22;;;;;-1:-1:-1;;;48850:22:0;;;;;;;;;;;:26;;48875:1;48850:26;:::i;:::-;:52;;;;:::i;:::-;48849:66;;48588:335;-1:-1:-1;;;;;48588:335:0:o;25085:589::-;-1:-1:-1;;;;;25291:18:0;;25287:187;;25326:40;25358:7;26501:10;:17;;26474:24;;;;:15;:24;;;;;:44;;;26529:24;;;;;;;;;;;;26397:164;25326:40;25287:187;;;25396:2;-1:-1:-1;;;;;25388:10:0;:4;-1:-1:-1;;;;;25388:10:0;;25384:90;;25415:47;25448:4;25454:7;25415:32;:47::i;:::-;-1:-1:-1;;;;;25488:16:0;;25484:183;;25521:45;25558:7;25521:36;:45::i;25484:183::-;25594:4;-1:-1:-1;;;;;25588:10:0;:2;-1:-1:-1;;;;;25588:10:0;;25584:83;;25615:40;25643:2;25647:7;25615:27;:40::i;17687:321::-;17817:18;17823:2;17827:7;17817:5;:18::i;:::-;17868:54;17899:1;17903:2;17907:7;17916:5;17868:22;:54::i;:::-;17846:154;;;;-1:-1:-1;;;17846:154:0;;;;;;;:::i;21087:803::-;21242:4;-1:-1:-1;;;;;21263:13:0;;32708:20;32756:8;21259:624;;21299:72;;-1:-1:-1;;;21299:72:0;;-1:-1:-1;;;;;21299:36:0;;;;;:72;;790:10;;21350:4;;21356:7;;21365:5;;21299:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21299:72:0;;;;;;;;-1:-1:-1;;21299:72:0;;;;;;;;;;;;:::i;:::-;;;21295:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21545:13:0;;21541:272;;21588:60;;-1:-1:-1;;;21588:60:0;;;;;;;:::i;21541:272::-;21763:6;21757:13;21748:6;21744:2;21740:15;21733:38;21295:533;-1:-1:-1;;;;;;21422:55:0;-1:-1:-1;;;21422:55:0;;-1:-1:-1;21415:62:0;;21259:624;-1:-1:-1;21867:4:0;21087:803;;;;;;:::o;27188:988::-;27454:22;27504:1;27479:22;27496:4;27479:16;:22::i;:::-;:26;;;;:::i;:::-;27516:18;27537:26;;;:17;:26;;;;;;27454:51;;-1:-1:-1;27670:28:0;;;27666:328;;-1:-1:-1;;;;;27737:18:0;;27715:19;27737:18;;;:12;:18;;;;;;;;:34;;;;;;;;;27788:30;;;;;;:44;;;27905:30;;:17;:30;;;;;:43;;;27666:328;-1:-1:-1;28090:26:0;;;;:17;:26;;;;;;;;28083:33;;;-1:-1:-1;;;;;28134:18:0;;;;;:12;:18;;;;;:34;;;;;;;28127:41;27188:988::o;28471:1079::-;28749:10;:17;28724:22;;28749:21;;28769:1;;28749:21;:::i;:::-;28781:18;28802:24;;;:15;:24;;;;;;29175:10;:26;;28724:46;;-1:-1:-1;28802:24:0;;28724:46;;29175:26;;;;-1:-1:-1;;;29175:26:0;;;;;;;;;;;;;;;;;29153:48;;29239:11;29214:10;29225;29214:22;;;;;;-1:-1:-1;;;29214:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;29319:28;;;:15;:28;;;;;;;:41;;;29491:24;;;;;29484:31;29526:10;:16;;;;;-1:-1:-1;;;29526:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;28471:1079;;;;:::o;25975:221::-;26060:14;26077:20;26094:2;26077:16;:20::i;:::-;-1:-1:-1;;;;;26108:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;26153:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;25975:221:0:o;18344:382::-;-1:-1:-1;;;;;18424:16:0;;18416:61;;;;-1:-1:-1;;;18416:61:0;;17581:2:1;18416:61:0;;;17563:21:1;;;17600:18;;;17593:30;17659:34;17639:18;;;17632:62;17711:18;;18416:61:0;17553:182:1;18416:61:0;16431:4;16455:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16455:16:0;:30;18488:58;;;;-1:-1:-1;;;18488:58:0;;12556:2:1;18488:58:0;;;12538:21:1;12595:2;12575:18;;;12568:30;12634;12614:18;;;12607:58;12682:18;;18488:58:0;12528:178:1;18488:58:0;18559:45;18588:1;18592:2;18596:7;18559:20;:45::i;:::-;-1:-1:-1;;;;;18617:13:0;;;;;;:9;:13;;;;;:18;;18634:1;;18617:13;:18;;18634:1;;18617:18;:::i;:::-;;;;-1:-1:-1;;18646:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18646:21:0;-1:-1:-1;;;;;18646:21:0;;;;;;;;18685:33;;18646:16;;;18685:33;;18646:16;;18685:33;18344:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:332::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:2;;;3156:6;3148;3141:22;3103:2;3184:29;3203:9;3184:29;:::i;:::-;3174:39;3260:2;3245:18;;3232:32;;-1:-1:-1;3311:2:1;3296:18;;;3283:32;;3093:228;-1:-1:-1;;;3093:228:1:o;3326:255::-;3384:6;3437:2;3425:9;3416:7;3412:23;3408:32;3405:2;;;3458:6;3450;3443:22;3405:2;3502:9;3489:23;3521:30;3545:5;3521:30;:::i;3586:259::-;3655:6;3708:2;3696:9;3687:7;3683:23;3679:32;3676:2;;;3729:6;3721;3714:22;3676:2;3766:9;3760:16;3785:30;3809:5;3785:30;:::i;3850:480::-;3919:6;3972:2;3960:9;3951:7;3947:23;3943:32;3940:2;;;3993:6;3985;3978:22;3940:2;4038:9;4025:23;4071:18;4063:6;4060:30;4057:2;;;4108:6;4100;4093:22;4057:2;4136:22;;4189:4;4181:13;;4177:27;-1:-1:-1;4167:2:1;;4223:6;4215;4208:22;4167:2;4251:73;4316:7;4311:2;4298:16;4293:2;4289;4285:11;4251:73;:::i;4335:190::-;4394:6;4447:2;4435:9;4426:7;4422:23;4418:32;4415:2;;;4468:6;4460;4453:22;4415:2;-1:-1:-1;4496:23:1;;4405:120;-1:-1:-1;4405:120:1:o;4530:258::-;4598:6;4606;4659:2;4647:9;4638:7;4634:23;4630:32;4627:2;;;4680:6;4672;4665:22;4627:2;-1:-1:-1;;4708:23:1;;;4778:2;4763:18;;;4750:32;;-1:-1:-1;4617:171:1:o;4793:257::-;4834:3;4872:5;4866:12;4899:6;4894:3;4887:19;4915:63;4971:6;4964:4;4959:3;4955:14;4948:4;4941:5;4937:16;4915:63;:::i;:::-;5032:2;5011:15;-1:-1:-1;;5007:29:1;4998:39;;;;5039:4;4994:50;;4842:208;-1:-1:-1;;4842:208:1:o;5055:185::-;5097:3;5135:5;5129:12;5150:52;5195:6;5190:3;5183:4;5176:5;5172:16;5150:52;:::i;:::-;5218:16;;;;;5105:135;-1:-1:-1;;5105:135:1:o;5245:1178::-;5421:3;5450;5485:6;5479:13;5515:3;5537:1;5565:9;5561:2;5557:18;5547:28;;5625:2;5614:9;5610:18;5647;5637:2;;5691:4;5683:6;5679:17;5669:27;;5637:2;5717;5765;5757:6;5754:14;5734:18;5731:38;5728:2;;;-1:-1:-1;;;5792:33:1;;5848:4;5845:1;5838:15;5878:4;5799:3;5866:17;5728:2;5909:18;5936:104;;;;6054:1;6049:322;;;;5902:469;;5936:104;-1:-1:-1;;5969:24:1;;5957:37;;6014:16;;;;-1:-1:-1;5936:104:1;;6049:322;22956:4;22975:17;;;23025:4;23009:21;;6144:3;6160:165;6174:6;6171:1;6168:13;6160:165;;;6252:14;;6239:11;;;6232:35;6295:16;;;;6189:10;;6160:165;;;6164:3;;6354:6;6349:3;6345:16;6338:23;;5902:469;;;;;;;6387:30;6413:3;6405:6;6387:30;:::i;:::-;6380:37;5429:994;-1:-1:-1;;;;;5429:994:1:o;6636:488::-;-1:-1:-1;;;;;6905:15:1;;;6887:34;;6957:15;;6952:2;6937:18;;6930:43;7004:2;6989:18;;6982:34;;;7052:3;7047:2;7032:18;;7025:31;;;6830:4;;7073:45;;7098:19;;7090:6;7073:45;:::i;:::-;7065:53;6839:285;-1:-1:-1;;;;;;6839:285:1:o;7129:1106::-;7360:2;7412:21;;;7482:13;;7385:18;;;7504:22;;;7331:4;;7360:2;7545;;7563:18;;;;7604:15;;;7331:4;7650:559;7664:6;7661:1;7658:13;7650:559;;;7729:6;7723:13;7781:2;7775:9;7768:17;7761:25;7756:3;7749:38;7834:2;7830;7826:11;7820:18;7878:1;7864:12;7861:19;7851:2;;-1:-1:-1;;;7912:34:1;;7973:4;7970:1;7963:15;8008:4;7919;7995:18;7851:2;8047:12;;;8040:34;8114:11;;8108:18;8094:12;;;8087:40;8156:4;8147:14;;;;8184:15;;;;7686:1;7679:9;7650:559;;;-1:-1:-1;8226:3:1;;7340:895;-1:-1:-1;;;;;;;7340:895:1:o;8240:860::-;8475:2;8527:21;;;8597:13;;8500:18;;;8619:22;;;8446:4;;8475:2;8660;;8678:18;;;;8719:15;;;8446:4;8765:309;8779:6;8776:1;8773:13;8765:309;;;8838:13;;8876:9;;8864:22;;8926:11;;;8920:18;8906:12;;;8899:40;8979:11;;8973:18;8959:12;;;8952:40;9021:4;9012:14;;;;9049:15;;;;8801:1;8794:9;8765:309;;9297:219;9446:2;9435:9;9428:21;9409:4;9466:44;9506:2;9495:9;9491:18;9483:6;9466:44;:::i;9877:415::-;10079:2;10061:21;;;10118:2;10098:18;;;10091:30;10157:34;10152:2;10137:18;;10130:62;-1:-1:-1;;;10223:2:1;10208:18;;10201:49;10282:3;10267:19;;10051:241::o;11121:414::-;11323:2;11305:21;;;11362:2;11342:18;;;11335:30;11401:34;11396:2;11381:18;;11374:62;-1:-1:-1;;;11467:2:1;11452:18;;11445:48;11525:3;11510:19;;11295:240::o;16608:412::-;16810:2;16792:21;;;16849:2;16829:18;;;16822:30;16888:34;16883:2;16868:18;;16861:62;-1:-1:-1;;;16954:2:1;16939:18;;16932:46;17010:3;16995:19;;16782:238::o;18153:356::-;18355:2;18337:21;;;18374:18;;;18367:30;18433:34;18428:2;18413:18;;18406:62;18500:2;18485:18;;18327:182::o;19272:407::-;19474:2;19456:21;;;19513:2;19493:18;;;19486:30;19552:34;19547:2;19532:18;;19525:62;-1:-1:-1;;;19618:2:1;19603:18;;19596:41;19669:3;19654:19;;19446:233::o;20840:413::-;21042:2;21024:21;;;21081:2;21061:18;;;21054:30;21120:34;21115:2;21100:18;;21093:62;-1:-1:-1;;;21186:2:1;21171:18;;21164:47;21243:3;21228:19;;21014:239::o;21671:342::-;21873:2;21855:21;;;21912:2;21892:18;;;21885:30;-1:-1:-1;;;21946:2:1;21931:18;;21924:48;22004:2;21989:18;;21845:168::o;23041:128::-;23081:3;23112:1;23108:6;23105:1;23102:13;23099:2;;;23118:18;;:::i;:::-;-1:-1:-1;23154:9:1;;23089:80::o;23174:120::-;23214:1;23240;23230:2;;23245:18;;:::i;:::-;-1:-1:-1;23279:9:1;;23220:74::o;23299:168::-;23339:7;23405:1;23401;23397:6;23393:14;23390:1;23387:21;23382:1;23375:9;23368:17;23364:45;23361:2;;;23412:18;;:::i;:::-;-1:-1:-1;23452:9:1;;23351:116::o;23472:125::-;23512:4;23540:1;23537;23534:8;23531:2;;;23545:18;;:::i;:::-;-1:-1:-1;23582:9:1;;23521:76::o;23602:258::-;23674:1;23684:113;23698:6;23695:1;23692:13;23684:113;;;23774:11;;;23768:18;23755:11;;;23748:39;23720:2;23713:10;23684:113;;;23815:6;23812:1;23809:13;23806:2;;;-1:-1:-1;;23850:1:1;23832:16;;23825:27;23655:205::o;23865:380::-;23944:1;23940:12;;;;23987;;;24008:2;;24062:4;24054:6;24050:17;24040:27;;24008:2;24115;24107:6;24104:14;24084:18;24081:38;24078:2;;;24161:10;24156:3;24152:20;24149:1;24142:31;24196:4;24193:1;24186:15;24224:4;24221:1;24214:15;24250:135;24289:3;-1:-1:-1;;24310:17:1;;24307:2;;;24330:18;;:::i;:::-;-1:-1:-1;24377:1:1;24366:13;;24297:88::o;24390:112::-;24422:1;24448;24438:2;;24453:18;;:::i;:::-;-1:-1:-1;24487:9:1;;24428:74::o;24507:127::-;24568:10;24563:3;24559:20;24556:1;24549:31;24599:4;24596:1;24589:15;24623:4;24620:1;24613:15;24639:127;24700:10;24695:3;24691:20;24688:1;24681:31;24731:4;24728:1;24721:15;24755:4;24752:1;24745:15;24771:127;24832:10;24827:3;24823:20;24820:1;24813:31;24863:4;24860:1;24853:15;24887:4;24884:1;24877:15;24903:131;-1:-1:-1;;;;;;24977:32:1;;24967:43;;24957:2;;25024:1;25021;25014:12

Swarm Source

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