ETH Price: $3,267.02 (+3.05%)
Gas: 2 Gwei

Token

Nonkiverse (NV)
 

Overview

Max Total Supply

747 NV

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 NV
0xf9583c6f0a45d1e5160d1404cb6eeb69a1438c27
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:
Nonkiverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

//OperatorFilter
interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

abstract contract OperatorFilterer721 { 
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

abstract contract DefaultOperatorFilterer721 is OperatorFilterer721 {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer721(DEFAULT_SUBSCRIPTION, true) {}
}

interface IRegularTicket {
    function transfer(address _recipient, uint256 _amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    function totalSupply() external view returns (uint256);
}

interface IPlatiumTicket {
    function transfer(address _recipient, uint256 _amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    function totalSupply() external view returns (uint256);
}

contract Nonkiverse is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer721 {
    using Strings for uint256;

    uint256 public MAX_SUPPLY = 5555;
    uint256 public MAX_WHITELIST_MINTS = 2;
    uint256 public MAX_ALLOWLIST_MINTS = 2;
    uint256 public MAX_PUBLIC_MINTS = 10;
    uint256 public MAX_SPECIAL_MINTS = 10;

    
    uint256 public TICKET_PORTAL_LIMIT = 1111;
    
    uint256 public WHITELIST_PRICE = 0.04 ether;
    uint256 public ALLOWLIST_PRICE = 0.06 ether;
    uint256 public PUBLIC_PRICE = 0.08 ether;

    bool public whitelistStart;
    bool public allowlistStart;
    bool public publicSaleStart;
    bool public ticketMintStart;
    bool public specialMintStart;

    address public SPECIAL_MINT_CONTRACT;
    
    bool public revealed = false;
    string public notRevealedUri;

    bytes32 public whitelistMerkleRoot;
    bytes32 public allowlistMerkleRoot;

    mapping(address => uint256) private _whitelisted;
    mapping(address => uint256) private _allowed;

    string private _baseURIextended;

    IRegularTicket public regularTicket;
    IPlatiumTicket public platiumTicket;

    address public ticketPoolAddress;

    constructor() ERC721A("Nonkiverse", "NV") {
        whitelistStart = false;
        allowlistStart = false;
        publicSaleStart = false;
        ticketMintStart = false;
    }

    modifier isValidMerkleProof(bytes32[] memory merkleProof, bytes32 root) {
        require(MerkleProof.verify(merkleProof, root, keccak256(abi.encodePacked(msg.sender))), "Address does not exist in list");
        _;
    }

    function whitelistMint(bytes32[] calldata _proof, uint256 nMints) external payable isValidMerkleProof(_proof, whitelistMerkleRoot) nonReentrant {
        require(msg.sender == tx.origin, "Can't mint through another contract");
        require(whitelistStart, "Whitelist Mint not active");
        require(nMints <= MAX_WHITELIST_MINTS, "Exceeds max token purchase");
        require(totalSupply() + nMints <= MAX_SUPPLY - TICKET_PORTAL_LIMIT, "Mint exceeds total supply");
        require(WHITELIST_PRICE * nMints <= msg.value, "Sent incorrect ETH value");
        require(_whitelisted[msg.sender] + nMints <= MAX_WHITELIST_MINTS, "Exceeds whitelist mint limit");

        // Keep track of mints for each address
        if (_whitelisted[msg.sender] > 0) {
            _whitelisted[msg.sender] = _whitelisted[msg.sender] + nMints;
        } else {
            _whitelisted[msg.sender] = nMints;
        }

        _safeMint(msg.sender, nMints);
    }

    function allowlistMint(bytes32[] calldata _proof, uint256 nMints) external payable isValidMerkleProof(_proof, allowlistMerkleRoot) nonReentrant {
        require(msg.sender == tx.origin, "Can't mint through another contract");
        require(allowlistStart, "Allowlist Mint not active");
        require(nMints <= MAX_ALLOWLIST_MINTS, "Exceeds max token purchase");
        require(totalSupply() + nMints <= MAX_SUPPLY - TICKET_PORTAL_LIMIT, "Mint exceeds total supply");
        require(ALLOWLIST_PRICE * nMints <= msg.value, "Sent incorrect ETH value");
        require(_allowed[msg.sender] + nMints <= MAX_ALLOWLIST_MINTS, "Exceeds allowlist mint limit");

        // Keep track of mints for each address
        if (_allowed[msg.sender] > 0) {
            _allowed[msg.sender] = _allowed[msg.sender] + nMints;
        } else {
            _allowed[msg.sender] = nMints;
        }

        _safeMint(msg.sender, nMints);
    }

    function publicMint(uint256 nMints) external payable nonReentrant {
        require(totalSupply() + nMints <= MAX_SUPPLY - TICKET_PORTAL_LIMIT, "Mint exceeds total supply");
        require(nMints <= MAX_PUBLIC_MINTS, "Exceeds max token purchase");
        require(publicSaleStart, "Public sale not active");
        require(PUBLIC_PRICE * nMints <= msg.value, "Sent incorrect ETH value");

        _safeMint(msg.sender, nMints);
    }

    function ticketMint(uint256 nRegularTickets, uint256 nPlatiumTickets) external nonReentrant{
        uint256 nMints = nRegularTickets + nPlatiumTickets;
        require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
        require(ticketMintStart, "Ticket mint not active");
        require(nRegularTickets > 0 || nPlatiumTickets > 0, "Can't mint with no tickets");
        
        if(nRegularTickets > 0) regularTicket.transferFrom(msg.sender, ticketPoolAddress, nRegularTickets);
        if(nPlatiumTickets > 0) platiumTicket.transferFrom(msg.sender, ticketPoolAddress, nPlatiumTickets);

        _safeMint(msg.sender, nMints);
    }

    function specialMint(uint256 nMints, address _to) external nonReentrant {
        require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
        require(nMints <= MAX_SPECIAL_MINTS, "Exceeds max token purchase");
        require(specialMintStart, "Special mint not active");
        require(SPECIAL_MINT_CONTRACT == msg.sender, "Can't mint with that address");

        _safeMint(_to, nMints);
    }

    function mintForOwner(uint256 nMints) external payable nonReentrant onlyOwner {
        require(msg.sender == tx.origin, "Can't mint through another contract");
        require(nMints <= MAX_WHITELIST_MINTS, "Exceeds max token purchase");
        require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");

        _safeMint(msg.sender, nMints);
    }

    function reserveMint(uint256 nMints, uint256 batchSize, address to) external onlyOwner {
        require(totalSupply() + nMints <= MAX_SUPPLY, "Mint exceeds total supply");
        require(nMints % batchSize == 0, "Can only mint a multiple of batchSize");

        for (uint256 i = 0; i < nMints / batchSize; i++) {
            _safeMint(to, batchSize);
        }
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner {
        require(address(this).balance > 0, "No funds to withdraw");
        uint256 contractBalance = address(this).balance;
        _withdraw(msg.sender, contractBalance);
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        if(revealed == false) {
            return notRevealedUri;
        }

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, (tokenId + 1).toString(), '.json')) : '';
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function setNotRevealedUri(string memory _uri) external onlyOwner {
        notRevealedUri = _uri;
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setAllowlistMerkleRoot(bytes32 _allowlistMerkleRoot) external onlyOwner {
        allowlistMerkleRoot = _allowlistMerkleRoot;
    }

    function setWhitelistStart(bool _whitelistStart) external onlyOwner {
        whitelistStart = _whitelistStart;
    }

    function setAllowlistStart(bool _allowlistStart) external onlyOwner {
        allowlistStart = _allowlistStart;
    }

    function setPublicSaleStart(bool _publicSaleStart) external onlyOwner {
        publicSaleStart = _publicSaleStart;
    }

    function setTicketMintStart(bool _ticketMintStart) external onlyOwner {
        ticketMintStart = _ticketMintStart;
    }

    function setRegularTicket(address _regularTicket) public onlyOwner {
        regularTicket = IRegularTicket(_regularTicket);
    }

    function setPlatiumTicket(address _platiumTicket) public onlyOwner {
        platiumTicket = IPlatiumTicket(_platiumTicket);
    }

    function setTicketPoolAddress(address _address) public onlyOwner {
        ticketPoolAddress = _address;
    }

    function setWhitelistPrice(uint256 _whitelistPrice) public onlyOwner {
        WHITELIST_PRICE = _whitelistPrice;
    } 

    function setAllowlistPrice(uint256 _allowlistPrice) public onlyOwner {
        ALLOWLIST_PRICE = _allowlistPrice;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        PUBLIC_PRICE = _publicPrice;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }

    function setMaxWhitelistMints(uint256 _maxWhitelistMints) public onlyOwner {
        MAX_WHITELIST_MINTS = _maxWhitelistMints;
    }

    function setMaxAllowlistMints(uint256 _maxAllowlistMints) public onlyOwner {
        MAX_ALLOWLIST_MINTS = _maxAllowlistMints;
    }

    function setPublicMints(uint256 _maxPublicMints) public onlyOwner {
        MAX_PUBLIC_MINTS = _maxPublicMints;
    }

    function setTicketPortalLimit(uint256 _ticketPortalLimit) public onlyOwner {
        TICKET_PORTAL_LIMIT = _ticketPortalLimit;
    }

    function setSpecialMintContract(address _specialMintContract) public onlyOwner {
        SPECIAL_MINT_CONTRACT = _specialMintContract;
    }

    function setSpecialMintStart(bool _specialMintStart) public onlyOwner {
        specialMintStart = _specialMintStart;
    }

    function setRevealed(bool _revealed) external onlyOwner {
        revealed = _revealed;
    }

    function getCurrentBlockTimeStamp() public view returns (uint256) {
        return block.timestamp;
    }

    // OperatorFilter overrides
    function transferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    )
        public
        override 
        onlyAllowedOperator(_from)
    {
        super.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId
    ) 
        public
        override 
        onlyAllowedOperator(_from)
    {
        super.safeTransferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(
        address _from,
        address _to,
        uint256 _tokenId,
        bytes memory _data
    )
        public
        override
        onlyAllowedOperator(_from)
    {
        super.safeTransferFrom(_from, _to, _tokenId, _data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALLOWLIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWLIST_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SPECIAL_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPECIAL_MINT_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TICKET_PORTAL_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platiumTicket","outputs":[{"internalType":"contract IPlatiumTicket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"regularTicket","outputs":[{"internalType":"contract IRegularTicket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"},{"internalType":"uint256","name":"batchSize","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bytes32","name":"_allowlistMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allowlistPrice","type":"uint256"}],"name":"setAllowlistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowlistStart","type":"bool"}],"name":"setAllowlistStart","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":"uint256","name":"_maxAllowlistMints","type":"uint256"}],"name":"setMaxAllowlistMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWhitelistMints","type":"uint256"}],"name":"setMaxWhitelistMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platiumTicket","type":"address"}],"name":"setPlatiumTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMints","type":"uint256"}],"name":"setPublicMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSaleStart","type":"bool"}],"name":"setPublicSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_regularTicket","type":"address"}],"name":"setRegularTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_specialMintContract","type":"address"}],"name":"setSpecialMintContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_specialMintStart","type":"bool"}],"name":"setSpecialMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_ticketMintStart","type":"bool"}],"name":"setTicketMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTicketPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketPortalLimit","type":"uint256"}],"name":"setTicketPortalLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistStart","type":"bool"}],"name":"setWhitelistStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nMints","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"specialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specialMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nRegularTickets","type":"uint256"},{"internalType":"uint256","name":"nPlatiumTickets","type":"uint256"}],"name":"ticketMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ticketMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"nMints","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b36009556002600a818155600b91909155600c819055600d55610457600e55668e1bc9bf040000600f5566d529ae9e86000060105567011c37937e0800006011556012805460ff60c81b191690553480156200006157600080fd5b50604080518082018252600a8152694e6f6e6b69766572736560b01b602080830191825283518085019094526002845261272b60f11b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000c6918591620002ae565b508051620000dc906002906020840190620002ae565b505050620000f9620000f36200025860201b60201c565b6200025c565b60016008556daaeb6d7670e522a718067333cd4e3b15620002435780156200019157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017257600080fd5b505af115801562000187573d6000803e3d6000fd5b5050505062000243565b6001600160a01b03821615620001e25760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000157565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022957600080fd5b505af11580156200023e573d6000803e3d6000fd5b505050505b50506012805463ffffffff1916905562000391565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002bc9062000354565b90600052602060002090601f016020900481019282620002e057600085556200032b565b82601f10620002fb57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032b5782518255916020019190600101906200030e565b50620003399291506200033d565b5090565b5b808211156200033957600081556001016200033e565b600181811c908216806200036957607f821691505b602082108114156200038b57634e487b7160e01b600052602260045260246000fd5b50919050565b613ef880620003a16000396000f3fe6080604052600436106104265760003560e01c806378a6400f11610229578063baf976f71161012e578063dcd5e34e116100b6578063f2fde38b1161007a578063f2fde38b14610c26578063f48a2e0314610c46578063f79ad48614610c66578063f95df41414610c86578063faf5316914610ca657600080fd5b8063dcd5e34e14610b67578063e0a8085314610b7d578063e2cceb6214610b9d578063e985e9c514610bbd578063f216f28414610c0657600080fd5b8063c6275255116100fd578063c627525514610ad2578063c87b56dd14610af2578063cd94d50214610b12578063d417b86314610b34578063d9af94af14610b5457600080fd5b8063baf976f714610a49578063bd32fb6614610a69578063c17ecd1214610a89578063c1af58c714610aa957600080fd5b806395d89b41116101b15780639aaebf7e116101805780639aaebf7e146109c8578063a22cb465146109de578063a475b5dd146109fe578063aa98e0c614610a13578063b88d4fde14610a2957600080fd5b806395d89b41146109635780639845adea14610978578063994d39691461098e5780639a30d021146109a857600080fd5b80637cde7e18116101f85780637cde7e18146108da5780637f42ec74146108f057806382fc3d2814610910578063853828b6146109305780638da5cb5b1461094557600080fd5b806378a6400f1461085a5780637b75b0db1461087a5780637bde3be61461089a5780637cce7972146108ba57600080fd5b80633d73c75d1161032f578063611f3f10116102b75780636f8b44b0116102865780636f8b44b0146107c557806370a08231146107e5578063715018a614610805578063717d57d31461081a578063779dc7c01461083a57600080fd5b8063611f3f101461075b5780636352211e1461077157806363bc312a146107915780636ab0e762146107a457600080fd5b80634f32630e116102fe5780634f32630e146106ba5780634f6ccce7146106da57806351830227146106fa57806355f804b31461071b5780635e2abfb61461073b57600080fd5b80633d73c75d1461064457806342842e0e14610664578063451680a61461068457806349e71c591461069a57600080fd5b806323b872dd116103b25780632de9d0c7116103815780632de9d0c7146105af5780632f745c59146105cf57806332cb6b0c146105ef5780633360caa0146106055780633cc1251f1461062557600080fd5b806323b872dd146105535780632904e6d914610573578063293108e0146105865780632db115441461059c57600080fd5b8063095ea7b3116103f9578063095ea7b3146104cf5780630a8d0b2a146104f15780631338a83f1461051557806317e7f2951461052857806318160ddd1461053e57600080fd5b806301ffc9a71461042b57806306fdde0314610460578063081812fc14610482578063081c8c44146104ba575b600080fd5b34801561043757600080fd5b5061044b61044636600461397d565b610cc6565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b50610475610d33565b6040516104579190613b94565b34801561048e57600080fd5b506104a261049d366004613964565b610dc5565b6040516001600160a01b039091168152602001610457565b3480156104c657600080fd5b50610475610e55565b3480156104db57600080fd5b506104ef6104ea366004613885565b610ee3565b005b3480156104fd57600080fd5b50610507600d5481565b604051908152602001610457565b6104ef6105233660046138af565b610ffb565b34801561053457600080fd5b50610507600f5481565b34801561054a57600080fd5b50600054610507565b34801561055f57600080fd5b506104ef61056e366004613796565b6112ca565b6104ef6105813660046138af565b611445565b34801561059257600080fd5b5061050760155481565b6104ef6105aa366004613964565b6116eb565b3480156105bb57600080fd5b50601b546104a2906001600160a01b031681565b3480156105db57600080fd5b506105076105ea366004613885565b611807565b3480156105fb57600080fd5b5061050760095481565b34801561061157600080fd5b5060125461044b9062010000900460ff1681565b34801561063157600080fd5b5060125461044b90610100900460ff1681565b34801561065057600080fd5b506104ef61065f36600461392a565b611964565b34801561067057600080fd5b506104ef61067f366004613796565b6119aa565b34801561069057600080fd5b5061050760105481565b3480156106a657600080fd5b506104ef6106b5366004613748565b611b1a565b3480156106c657600080fd5b506104ef6106d536600461392a565b611b66565b3480156106e657600080fd5b506105076106f5366004613964565b611bb0565b34801561070657600080fd5b5060125461044b90600160c81b900460ff1681565b34801561072757600080fd5b506104ef6107363660046139b7565b611c12565b34801561074757600080fd5b506104ef61075636600461392a565b611c48565b34801561076757600080fd5b5061050760115481565b34801561077d57600080fd5b506104a261078c366004613964565b611c8c565b6104ef61079f366004613964565b611c9e565b3480156107b057600080fd5b5060125461044b906301000000900460ff1681565b3480156107d157600080fd5b506104ef6107e0366004613964565b611d66565b3480156107f157600080fd5b50610507610800366004613748565b611d95565b34801561081157600080fd5b506104ef611e26565b34801561082657600080fd5b506104ef610835366004613964565b611e5c565b34801561084657600080fd5b506104ef610855366004613964565b611e8b565b34801561086657600080fd5b506104ef610875366004613748565b611eba565b34801561088657600080fd5b506019546104a2906001600160a01b031681565b3480156108a657600080fd5b506104ef6108b5366004613a95565b611f06565b3480156108c657600080fd5b506104ef6108d5366004613748565b61215e565b3480156108e657600080fd5b50610507600c5481565b3480156108fc57600080fd5b506104ef61090b366004613964565b6121b8565b34801561091c57600080fd5b506104ef61092b366004613964565b6121e7565b34801561093c57600080fd5b506104ef612216565b34801561095157600080fd5b506007546001600160a01b03166104a2565b34801561096f57600080fd5b50610475612295565b34801561098457600080fd5b50610507600e5481565b34801561099a57600080fd5b5060125461044b9060ff1681565b3480156109b457600080fd5b506104ef6109c336600461392a565b6122a4565b3480156109d457600080fd5b50610507600a5481565b3480156109ea57600080fd5b506104ef6109f936600461384e565b6122e1565b348015610a0a57600080fd5b506104ef6123a6565b348015610a1f57600080fd5b5061050760145481565b348015610a3557600080fd5b506104ef610a443660046137d2565b6123e5565b348015610a5557600080fd5b50601a546104a2906001600160a01b031681565b348015610a7557600080fd5b506104ef610a84366004613964565b612563565b348015610a9557600080fd5b506104ef610aa4366004613a29565b612592565b348015610ab557600080fd5b506012546104a2906501000000000090046001600160a01b031681565b348015610ade57600080fd5b506104ef610aed366004613964565b6125d3565b348015610afe57600080fd5b50610475610b0d366004613964565b612602565b348015610b1e57600080fd5b5060125461044b90640100000000900460ff1681565b348015610b4057600080fd5b506104ef610b4f366004613ab7565b61277d565b348015610b6057600080fd5b5042610507565b348015610b7357600080fd5b50610507600b5481565b348015610b8957600080fd5b506104ef610b9836600461392a565b612871565b348015610ba957600080fd5b506104ef610bb8366004613a72565b6128b9565b348015610bc957600080fd5b5061044b610bd8366004613763565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610c1257600080fd5b506104ef610c21366004613748565b612a08565b348015610c3257600080fd5b506104ef610c41366004613748565b612a54565b348015610c5257600080fd5b506104ef610c61366004613964565b612aec565b348015610c7257600080fd5b506104ef610c8136600461392a565b612b1b565b348015610c9257600080fd5b506104ef610ca1366004613964565b612b63565b348015610cb257600080fd5b506104ef610cc1366004613964565b612b92565b60006001600160e01b031982166380ac58cd60e01b1480610cf757506001600160e01b03198216635b5e139f60e01b145b80610d1257506001600160e01b0319821663780e9d6360e01b145b80610d2d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610d4290613ddc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6e90613ddc565b8015610dbb5780601f10610d9057610100808354040283529160200191610dbb565b820191906000526020600020905b815481529060010190602001808311610d9e57829003601f168201915b5050505050905090565b6000610dd2826000541190565b610e395760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60138054610e6290613ddc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90613ddc565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b6000610eee82611c8c565b9050806001600160a01b0316836001600160a01b03161415610f5d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610e30565b336001600160a01b0382161480610f795750610f798133610bd8565b610feb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610e30565b610ff6838383612bc1565b505050565b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b1660208201529092506110759150839083906034015b60405160208183030381529060405280519060200120612c1d565b6110c15760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610e30565b600260085414156110e45760405162461bcd60e51b8152600401610e3090613cd4565b60026008553332146111085760405162461bcd60e51b8152600401610e3090613d0b565b601254610100900460ff1661115f5760405162461bcd60e51b815260206004820152601960248201527f416c6c6f776c697374204d696e74206e6f7420616374697665000000000000006044820152606401610e30565b600b548311156111815760405162461bcd60e51b8152600401610e3090613ba7565b600e546009546111919190613d99565b8361119b60005490565b6111a59190613d4e565b11156111c35760405162461bcd60e51b8152600401610e3090613c15565b34836010546111d29190613d7a565b11156111f05760405162461bcd60e51b8152600401610e3090613bde565b600b543360009081526017602052604090205461120e908590613d4e565b111561125c5760405162461bcd60e51b815260206004820152601c60248201527f4578636565647320616c6c6f776c697374206d696e74206c696d6974000000006044820152606401610e30565b33600090815260176020526040902054156112a1573360009081526017602052604090205461128c908490613d4e565b336000908152601760205260409020556112b4565b3360009081526017602052604090208390555b6112be3384612c33565b50506001600855505050565b826daaeb6d7670e522a718067333cd4e3b15611434576001600160a01b038116331415611301576112fc848484612c4d565b61143f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561134b57600080fd5b505afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190613947565b80156114155750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156113dd57600080fd5b505afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114159190613947565b61143457604051633b79c77360e21b8152336004820152602401610e30565b61143f848484612c4d565b50505050565b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff193360601b1660208201529092506114a891508390839060340161105a565b6114f45760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610e30565b600260085414156115175760405162461bcd60e51b8152600401610e3090613cd4565b600260085533321461153b5760405162461bcd60e51b8152600401610e3090613d0b565b60125460ff1661158d5760405162461bcd60e51b815260206004820152601960248201527f57686974656c697374204d696e74206e6f7420616374697665000000000000006044820152606401610e30565b600a548311156115af5760405162461bcd60e51b8152600401610e3090613ba7565b600e546009546115bf9190613d99565b836115c960005490565b6115d39190613d4e565b11156115f15760405162461bcd60e51b8152600401610e3090613c15565b3483600f546116009190613d7a565b111561161e5760405162461bcd60e51b8152600401610e3090613bde565b600a543360009081526016602052604090205461163c908590613d4e565b111561168a5760405162461bcd60e51b815260206004820152601c60248201527f457863656564732077686974656c697374206d696e74206c696d6974000000006044820152606401610e30565b33600090815260166020526040902054156116cf57336000908152601660205260409020546116ba908490613d4e565b336000908152601660205260409020556112b4565b3360009081526016602052604090208390556112be3384612c33565b6002600854141561170e5760405162461bcd60e51b8152600401610e3090613cd4565b6002600855600e546009546117239190613d99565b8161172d60005490565b6117379190613d4e565b11156117555760405162461bcd60e51b8152600401610e3090613c15565b600c548111156117775760405162461bcd60e51b8152600401610e3090613ba7565b60125462010000900460ff166117c85760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610e30565b34816011546117d79190613d7a565b11156117f55760405162461bcd60e51b8152600401610e3090613bde565b6117ff3382612c33565b506001600855565b600061181283611d95565b821061186b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610e30565b600080549080805b83811015611904576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118c657805192505b876001600160a01b0316836001600160a01b031614156118fb57868414156118f457509350610d2d92505050565b6001909301925b50600101611873565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610e30565b6007546001600160a01b0316331461198e5760405162461bcd60e51b8152600401610e3090613c4c565b60128054911515620100000262ff000019909216919091179055565b826daaeb6d7670e522a718067333cd4e3b15611b0f576001600160a01b0381163314156119dc576112fc848484612c58565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611a2657600080fd5b505afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190613947565b8015611af05750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611ab857600080fd5b505afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190613947565b611b0f57604051633b79c77360e21b8152336004820152602401610e30565b61143f848484612c58565b6007546001600160a01b03163314611b445760405162461bcd60e51b8152600401610e3090613c4c565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314611b905760405162461bcd60e51b8152600401610e3090613c4c565b601280549115156401000000000264ff0000000019909216919091179055565b600080548210611c0e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610e30565b5090565b6007546001600160a01b03163314611c3c5760405162461bcd60e51b8152600401610e3090613c4c565b610ff6601883836135ad565b6007546001600160a01b03163314611c725760405162461bcd60e51b8152600401610e3090613c4c565b601280549115156101000261ff0019909216919091179055565b6000611c9782612c73565b5192915050565b60026008541415611cc15760405162461bcd60e51b8152600401610e3090613cd4565b60026008556007546001600160a01b03163314611cf05760405162461bcd60e51b8152600401610e3090613c4c565b333214611d0f5760405162461bcd60e51b8152600401610e3090613d0b565b600a54811115611d315760405162461bcd60e51b8152600401610e3090613ba7565b60095481611d3e60005490565b611d489190613d4e565b11156117f55760405162461bcd60e51b8152600401610e3090613c15565b6007546001600160a01b03163314611d905760405162461bcd60e51b8152600401610e3090613c4c565b600955565b60006001600160a01b038216611e015760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610e30565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314611e505760405162461bcd60e51b8152600401610e3090613c4c565b611e5a6000612d4a565b565b6007546001600160a01b03163314611e865760405162461bcd60e51b8152600401610e3090613c4c565b600f55565b6007546001600160a01b03163314611eb55760405162461bcd60e51b8152600401610e3090613c4c565b600c55565b6007546001600160a01b03163314611ee45760405162461bcd60e51b8152600401610e3090613c4c565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60026008541415611f295760405162461bcd60e51b8152600401610e3090613cd4565b60026008556000611f3a8284613d4e565b905060095481611f4960005490565b611f539190613d4e565b1115611f715760405162461bcd60e51b8152600401610e3090613c15565b6012546301000000900460ff16611fc35760405162461bcd60e51b81526020600482015260166024820152755469636b6574206d696e74206e6f742061637469766560501b6044820152606401610e30565b6000831180611fd25750600082115b61201e5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774206d696e742077697468206e6f207469636b6574730000000000006044820152606401610e30565b82156120b457601954601b546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018690529116906323b872dd90606401602060405180830381600087803b15801561207a57600080fd5b505af115801561208e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b29190613947565b505b811561214a57601a54601b546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018590529116906323b872dd90606401602060405180830381600087803b15801561211057600080fd5b505af1158015612124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121489190613947565b505b6121543382612c33565b5050600160085550565b6007546001600160a01b031633146121885760405162461bcd60e51b8152600401610e3090613c4c565b601280546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6007546001600160a01b031633146121e25760405162461bcd60e51b8152600401610e3090613c4c565b600e55565b6007546001600160a01b031633146122115760405162461bcd60e51b8152600401610e3090613c4c565b600b55565b6007546001600160a01b031633146122405760405162461bcd60e51b8152600401610e3090613c4c565b600047116122875760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b6044820152606401610e30565b476122923382612d9c565b50565b606060028054610d4290613ddc565b6007546001600160a01b031633146122ce5760405162461bcd60e51b8152600401610e3090613c4c565b6012805460ff1916911515919091179055565b6001600160a01b03821633141561233a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610e30565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146123d05760405162461bcd60e51b8152600401610e3090613c4c565b6012805460ff60c81b1916600160c81b179055565b836daaeb6d7670e522a718067333cd4e3b15612550576001600160a01b03811633141561241d5761241885858585612e32565b61255c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561246757600080fd5b505afa15801561247b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249f9190613947565b80156125315750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156124f957600080fd5b505afa15801561250d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125319190613947565b61255057604051633b79c77360e21b8152336004820152602401610e30565b61255c85858585612e32565b5050505050565b6007546001600160a01b0316331461258d5760405162461bcd60e51b8152600401610e3090613c4c565b601455565b6007546001600160a01b031633146125bc5760405162461bcd60e51b8152600401610e3090613c4c565b80516125cf90601390602084019061362d565b5050565b6007546001600160a01b031633146125fd5760405162461bcd60e51b8152600401610e3090613c4c565b601155565b606061260f826000541190565b6126735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e30565b601254600160c81b900460ff16612716576013805461269190613ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546126bd90613ddc565b801561270a5780601f106126df5761010080835404028352916020019161270a565b820191906000526020600020905b8154815290600101906020018083116126ed57829003601f168201915b50505050509050919050565b6000612720612e65565b90508051600014156127415760405180602001604052806000815250612776565b80612755612750856001613d4e565b612e74565b604051602001612766929190613b18565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146127a75760405162461bcd60e51b8152600401610e3090613c4c565b600954836127b460005490565b6127be9190613d4e565b11156127dc5760405162461bcd60e51b8152600401610e3090613c15565b6127e68284613e32565b156128415760405162461bcd60e51b815260206004820152602560248201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f6620626174636044820152646853697a6560d81b6064820152608401610e30565b60005b61284e8385613d66565b81101561143f5761285f8284612c33565b8061286981613e17565b915050612844565b6007546001600160a01b0316331461289b5760405162461bcd60e51b8152600401610e3090613c4c565b60128054911515600160c81b0260ff60c81b19909216919091179055565b600260085414156128dc5760405162461bcd60e51b8152600401610e3090613cd4565b6002600855600954826128ee60005490565b6128f89190613d4e565b11156129165760405162461bcd60e51b8152600401610e3090613c15565b600d548211156129385760405162461bcd60e51b8152600401610e3090613ba7565b601254640100000000900460ff166129925760405162461bcd60e51b815260206004820152601760248201527f5370656369616c206d696e74206e6f74206163746976650000000000000000006044820152606401610e30565b6012546501000000000090046001600160a01b031633146129f55760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74207769746820746861742061646472657373000000006044820152606401610e30565b6129ff8183612c33565b50506001600855565b6007546001600160a01b03163314612a325760405162461bcd60e51b8152600401610e3090613c4c565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314612a7e5760405162461bcd60e51b8152600401610e3090613c4c565b6001600160a01b038116612ae35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e30565b61229281612d4a565b6007546001600160a01b03163314612b165760405162461bcd60e51b8152600401610e3090613c4c565b601055565b6007546001600160a01b03163314612b455760405162461bcd60e51b8152600401610e3090613c4c565b6012805491151563010000000263ff00000019909216919091179055565b6007546001600160a01b03163314612b8d5760405162461bcd60e51b8152600401610e3090613c4c565b601555565b6007546001600160a01b03163314612bbc5760405162461bcd60e51b8152600401610e3090613c4c565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082612c2a8584612f7a565b14949350505050565b6125cf828260405180602001604052806000815250612fee565b610ff6838383612ffb565b610ff6838383604051806020016040528060008152506123e5565b6040805180820190915260008082526020820152612c92826000541190565b612cf15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610e30565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d40579392505050565b5060001901612cf3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612de9576040519150601f19603f3d011682016040523d82523d6000602084013e612dee565b606091505b5050905080610ff65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610e30565b612e3d848484612ffb565b612e49848484846132dd565b61143f5760405162461bcd60e51b8152600401610e3090613c81565b606060188054610d4290613ddc565b606081612e985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ec25780612eac81613e17565b9150612ebb9050600a83613d66565b9150612e9c565b60008167ffffffffffffffff811115612edd57612edd613e88565b6040519080825280601f01601f191660200182016040528015612f07576020820181803683370190505b5090505b8415612f7257612f1c600183613d99565b9150612f29600a86613e32565b612f34906030613d4e565b60f81b818381518110612f4957612f49613e72565b60200101906001600160f81b031916908160001a905350612f6b600a86613d66565b9450612f0b565b949350505050565b600081815b8451811015612fe6576000858281518110612f9c57612f9c613e72565b60200260200101519050808311612fc25760008381526020829052604090209250612fd3565b600081815260208490526040902092505b5080612fde81613e17565b915050612f7f565b509392505050565b610ff683838360016133ea565b600061300682612c73565b80519091506000906001600160a01b0316336001600160a01b0316148061303d57503361303284610dc5565b6001600160a01b0316145b8061304f5750815161304f9033610bd8565b9050806130b95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610e30565b846001600160a01b031682600001516001600160a01b03161461312d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610e30565b6001600160a01b0384166131915760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610e30565b6131a16000848460000151612bc1565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661329657613249816000541190565b15613296578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255c565b60006001600160a01b0384163b156133df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613321903390899088908890600401613b57565b602060405180830381600087803b15801561333b57600080fd5b505af192505050801561336b575060408051601f3d908101601f191682019092526133689181019061399a565b60015b6133c5573d808015613399576040519150601f19603f3d011682016040523d82523d6000602084013e61339e565b606091505b5080516133bd5760405162461bcd60e51b8152600401610e3090613c81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f72565b506001949350505050565b6000546001600160a01b03851661344d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610e30565b836134ab5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610e30565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156135a45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156135985761357c60008884886132dd565b6135985760405162461bcd60e51b8152600401610e3090613c81565b60019182019101613529565b5060005561255c565b8280546135b990613ddc565b90600052602060002090601f0160209004810192826135db5760008555613621565b82601f106135f45782800160ff19823516178555613621565b82800160010185558215613621579182015b82811115613621578235825591602001919060010190613606565b50611c0e9291506136a1565b82805461363990613ddc565b90600052602060002090601f01602090048101928261365b5760008555613621565b82601f1061367457805160ff1916838001178555613621565b82800160010185558215613621579182015b82811115613621578251825591602001919060010190613686565b5b80821115611c0e57600081556001016136a2565b600067ffffffffffffffff808411156136d1576136d1613e88565b604051601f8501601f19908116603f011681019082821181831017156136f9576136f9613e88565b8160405280935085815286868601111561371257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461374357600080fd5b919050565b60006020828403121561375a57600080fd5b6127768261372c565b6000806040838503121561377657600080fd5b61377f8361372c565b915061378d6020840161372c565b90509250929050565b6000806000606084860312156137ab57600080fd5b6137b48461372c565b92506137c26020850161372c565b9150604084013590509250925092565b600080600080608085870312156137e857600080fd5b6137f18561372c565b93506137ff6020860161372c565b925060408501359150606085013567ffffffffffffffff81111561382257600080fd5b8501601f8101871361383357600080fd5b613842878235602084016136b6565b91505092959194509250565b6000806040838503121561386157600080fd5b61386a8361372c565b9150602083013561387a81613e9e565b809150509250929050565b6000806040838503121561389857600080fd5b6138a18361372c565b946020939093013593505050565b6000806000604084860312156138c457600080fd5b833567ffffffffffffffff808211156138dc57600080fd5b818601915086601f8301126138f057600080fd5b8135818111156138ff57600080fd5b8760208260051b850101111561391457600080fd5b6020928301989097509590910135949350505050565b60006020828403121561393c57600080fd5b813561277681613e9e565b60006020828403121561395957600080fd5b815161277681613e9e565b60006020828403121561397657600080fd5b5035919050565b60006020828403121561398f57600080fd5b813561277681613eac565b6000602082840312156139ac57600080fd5b815161277681613eac565b600080602083850312156139ca57600080fd5b823567ffffffffffffffff808211156139e257600080fd5b818501915085601f8301126139f657600080fd5b813581811115613a0557600080fd5b866020828501011115613a1757600080fd5b60209290920196919550909350505050565b600060208284031215613a3b57600080fd5b813567ffffffffffffffff811115613a5257600080fd5b8201601f81018413613a6357600080fd5b612f72848235602084016136b6565b60008060408385031215613a8557600080fd5b8235915061378d6020840161372c565b60008060408385031215613aa857600080fd5b50508035926020909101359150565b600080600060608486031215613acc57600080fd5b8335925060208401359150613ae36040850161372c565b90509250925092565b60008151808452613b04816020860160208601613db0565b601f01601f19169290920160200192915050565b60008351613b2a818460208801613db0565b835190830190613b3e818360208801613db0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b8a90830184613aec565b9695505050505050565b6020815260006127766020830184613aec565b6020808252601a908201527f45786365656473206d617820746f6b656e207075726368617365000000000000604082015260600190565b60208082526018908201527f53656e7420696e636f7272656374204554482076616c75650000000000000000604082015260600190565b60208082526019908201527f4d696e74206578636565647320746f74616c20737570706c7900000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60008219821115613d6157613d61613e46565b500190565b600082613d7557613d75613e5c565b500490565b6000816000190483118215151615613d9457613d94613e46565b500290565b600082821015613dab57613dab613e46565b500390565b60005b83811015613dcb578181015183820152602001613db3565b8381111561143f5750506000910152565b600181811c90821680613df057607f821691505b60208210811415613e1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e2b57613e2b613e46565b5060010190565b600082613e4157613e41613e5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461229257600080fd5b6001600160e01b03198116811461229257600080fdfea26469706673582212205db9e09b90d3700df0a1b703b6b0bf6303bc8ff7176d35b01617b7a1d5beadb864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106104265760003560e01c806378a6400f11610229578063baf976f71161012e578063dcd5e34e116100b6578063f2fde38b1161007a578063f2fde38b14610c26578063f48a2e0314610c46578063f79ad48614610c66578063f95df41414610c86578063faf5316914610ca657600080fd5b8063dcd5e34e14610b67578063e0a8085314610b7d578063e2cceb6214610b9d578063e985e9c514610bbd578063f216f28414610c0657600080fd5b8063c6275255116100fd578063c627525514610ad2578063c87b56dd14610af2578063cd94d50214610b12578063d417b86314610b34578063d9af94af14610b5457600080fd5b8063baf976f714610a49578063bd32fb6614610a69578063c17ecd1214610a89578063c1af58c714610aa957600080fd5b806395d89b41116101b15780639aaebf7e116101805780639aaebf7e146109c8578063a22cb465146109de578063a475b5dd146109fe578063aa98e0c614610a13578063b88d4fde14610a2957600080fd5b806395d89b41146109635780639845adea14610978578063994d39691461098e5780639a30d021146109a857600080fd5b80637cde7e18116101f85780637cde7e18146108da5780637f42ec74146108f057806382fc3d2814610910578063853828b6146109305780638da5cb5b1461094557600080fd5b806378a6400f1461085a5780637b75b0db1461087a5780637bde3be61461089a5780637cce7972146108ba57600080fd5b80633d73c75d1161032f578063611f3f10116102b75780636f8b44b0116102865780636f8b44b0146107c557806370a08231146107e5578063715018a614610805578063717d57d31461081a578063779dc7c01461083a57600080fd5b8063611f3f101461075b5780636352211e1461077157806363bc312a146107915780636ab0e762146107a457600080fd5b80634f32630e116102fe5780634f32630e146106ba5780634f6ccce7146106da57806351830227146106fa57806355f804b31461071b5780635e2abfb61461073b57600080fd5b80633d73c75d1461064457806342842e0e14610664578063451680a61461068457806349e71c591461069a57600080fd5b806323b872dd116103b25780632de9d0c7116103815780632de9d0c7146105af5780632f745c59146105cf57806332cb6b0c146105ef5780633360caa0146106055780633cc1251f1461062557600080fd5b806323b872dd146105535780632904e6d914610573578063293108e0146105865780632db115441461059c57600080fd5b8063095ea7b3116103f9578063095ea7b3146104cf5780630a8d0b2a146104f15780631338a83f1461051557806317e7f2951461052857806318160ddd1461053e57600080fd5b806301ffc9a71461042b57806306fdde0314610460578063081812fc14610482578063081c8c44146104ba575b600080fd5b34801561043757600080fd5b5061044b61044636600461397d565b610cc6565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b50610475610d33565b6040516104579190613b94565b34801561048e57600080fd5b506104a261049d366004613964565b610dc5565b6040516001600160a01b039091168152602001610457565b3480156104c657600080fd5b50610475610e55565b3480156104db57600080fd5b506104ef6104ea366004613885565b610ee3565b005b3480156104fd57600080fd5b50610507600d5481565b604051908152602001610457565b6104ef6105233660046138af565b610ffb565b34801561053457600080fd5b50610507600f5481565b34801561054a57600080fd5b50600054610507565b34801561055f57600080fd5b506104ef61056e366004613796565b6112ca565b6104ef6105813660046138af565b611445565b34801561059257600080fd5b5061050760155481565b6104ef6105aa366004613964565b6116eb565b3480156105bb57600080fd5b50601b546104a2906001600160a01b031681565b3480156105db57600080fd5b506105076105ea366004613885565b611807565b3480156105fb57600080fd5b5061050760095481565b34801561061157600080fd5b5060125461044b9062010000900460ff1681565b34801561063157600080fd5b5060125461044b90610100900460ff1681565b34801561065057600080fd5b506104ef61065f36600461392a565b611964565b34801561067057600080fd5b506104ef61067f366004613796565b6119aa565b34801561069057600080fd5b5061050760105481565b3480156106a657600080fd5b506104ef6106b5366004613748565b611b1a565b3480156106c657600080fd5b506104ef6106d536600461392a565b611b66565b3480156106e657600080fd5b506105076106f5366004613964565b611bb0565b34801561070657600080fd5b5060125461044b90600160c81b900460ff1681565b34801561072757600080fd5b506104ef6107363660046139b7565b611c12565b34801561074757600080fd5b506104ef61075636600461392a565b611c48565b34801561076757600080fd5b5061050760115481565b34801561077d57600080fd5b506104a261078c366004613964565b611c8c565b6104ef61079f366004613964565b611c9e565b3480156107b057600080fd5b5060125461044b906301000000900460ff1681565b3480156107d157600080fd5b506104ef6107e0366004613964565b611d66565b3480156107f157600080fd5b50610507610800366004613748565b611d95565b34801561081157600080fd5b506104ef611e26565b34801561082657600080fd5b506104ef610835366004613964565b611e5c565b34801561084657600080fd5b506104ef610855366004613964565b611e8b565b34801561086657600080fd5b506104ef610875366004613748565b611eba565b34801561088657600080fd5b506019546104a2906001600160a01b031681565b3480156108a657600080fd5b506104ef6108b5366004613a95565b611f06565b3480156108c657600080fd5b506104ef6108d5366004613748565b61215e565b3480156108e657600080fd5b50610507600c5481565b3480156108fc57600080fd5b506104ef61090b366004613964565b6121b8565b34801561091c57600080fd5b506104ef61092b366004613964565b6121e7565b34801561093c57600080fd5b506104ef612216565b34801561095157600080fd5b506007546001600160a01b03166104a2565b34801561096f57600080fd5b50610475612295565b34801561098457600080fd5b50610507600e5481565b34801561099a57600080fd5b5060125461044b9060ff1681565b3480156109b457600080fd5b506104ef6109c336600461392a565b6122a4565b3480156109d457600080fd5b50610507600a5481565b3480156109ea57600080fd5b506104ef6109f936600461384e565b6122e1565b348015610a0a57600080fd5b506104ef6123a6565b348015610a1f57600080fd5b5061050760145481565b348015610a3557600080fd5b506104ef610a443660046137d2565b6123e5565b348015610a5557600080fd5b50601a546104a2906001600160a01b031681565b348015610a7557600080fd5b506104ef610a84366004613964565b612563565b348015610a9557600080fd5b506104ef610aa4366004613a29565b612592565b348015610ab557600080fd5b506012546104a2906501000000000090046001600160a01b031681565b348015610ade57600080fd5b506104ef610aed366004613964565b6125d3565b348015610afe57600080fd5b50610475610b0d366004613964565b612602565b348015610b1e57600080fd5b5060125461044b90640100000000900460ff1681565b348015610b4057600080fd5b506104ef610b4f366004613ab7565b61277d565b348015610b6057600080fd5b5042610507565b348015610b7357600080fd5b50610507600b5481565b348015610b8957600080fd5b506104ef610b9836600461392a565b612871565b348015610ba957600080fd5b506104ef610bb8366004613a72565b6128b9565b348015610bc957600080fd5b5061044b610bd8366004613763565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610c1257600080fd5b506104ef610c21366004613748565b612a08565b348015610c3257600080fd5b506104ef610c41366004613748565b612a54565b348015610c5257600080fd5b506104ef610c61366004613964565b612aec565b348015610c7257600080fd5b506104ef610c8136600461392a565b612b1b565b348015610c9257600080fd5b506104ef610ca1366004613964565b612b63565b348015610cb257600080fd5b506104ef610cc1366004613964565b612b92565b60006001600160e01b031982166380ac58cd60e01b1480610cf757506001600160e01b03198216635b5e139f60e01b145b80610d1257506001600160e01b0319821663780e9d6360e01b145b80610d2d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610d4290613ddc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6e90613ddc565b8015610dbb5780601f10610d9057610100808354040283529160200191610dbb565b820191906000526020600020905b815481529060010190602001808311610d9e57829003601f168201915b5050505050905090565b6000610dd2826000541190565b610e395760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60138054610e6290613ddc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90613ddc565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b6000610eee82611c8c565b9050806001600160a01b0316836001600160a01b03161415610f5d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610e30565b336001600160a01b0382161480610f795750610f798133610bd8565b610feb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610e30565b610ff6838383612bc1565b505050565b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b1660208201529092506110759150839083906034015b60405160208183030381529060405280519060200120612c1d565b6110c15760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610e30565b600260085414156110e45760405162461bcd60e51b8152600401610e3090613cd4565b60026008553332146111085760405162461bcd60e51b8152600401610e3090613d0b565b601254610100900460ff1661115f5760405162461bcd60e51b815260206004820152601960248201527f416c6c6f776c697374204d696e74206e6f7420616374697665000000000000006044820152606401610e30565b600b548311156111815760405162461bcd60e51b8152600401610e3090613ba7565b600e546009546111919190613d99565b8361119b60005490565b6111a59190613d4e565b11156111c35760405162461bcd60e51b8152600401610e3090613c15565b34836010546111d29190613d7a565b11156111f05760405162461bcd60e51b8152600401610e3090613bde565b600b543360009081526017602052604090205461120e908590613d4e565b111561125c5760405162461bcd60e51b815260206004820152601c60248201527f4578636565647320616c6c6f776c697374206d696e74206c696d6974000000006044820152606401610e30565b33600090815260176020526040902054156112a1573360009081526017602052604090205461128c908490613d4e565b336000908152601760205260409020556112b4565b3360009081526017602052604090208390555b6112be3384612c33565b50506001600855505050565b826daaeb6d7670e522a718067333cd4e3b15611434576001600160a01b038116331415611301576112fc848484612c4d565b61143f565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561134b57600080fd5b505afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190613947565b80156114155750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156113dd57600080fd5b505afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114159190613947565b61143457604051633b79c77360e21b8152336004820152602401610e30565b61143f848484612c4d565b50505050565b828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff193360601b1660208201529092506114a891508390839060340161105a565b6114f45760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c69737400006044820152606401610e30565b600260085414156115175760405162461bcd60e51b8152600401610e3090613cd4565b600260085533321461153b5760405162461bcd60e51b8152600401610e3090613d0b565b60125460ff1661158d5760405162461bcd60e51b815260206004820152601960248201527f57686974656c697374204d696e74206e6f7420616374697665000000000000006044820152606401610e30565b600a548311156115af5760405162461bcd60e51b8152600401610e3090613ba7565b600e546009546115bf9190613d99565b836115c960005490565b6115d39190613d4e565b11156115f15760405162461bcd60e51b8152600401610e3090613c15565b3483600f546116009190613d7a565b111561161e5760405162461bcd60e51b8152600401610e3090613bde565b600a543360009081526016602052604090205461163c908590613d4e565b111561168a5760405162461bcd60e51b815260206004820152601c60248201527f457863656564732077686974656c697374206d696e74206c696d6974000000006044820152606401610e30565b33600090815260166020526040902054156116cf57336000908152601660205260409020546116ba908490613d4e565b336000908152601660205260409020556112b4565b3360009081526016602052604090208390556112be3384612c33565b6002600854141561170e5760405162461bcd60e51b8152600401610e3090613cd4565b6002600855600e546009546117239190613d99565b8161172d60005490565b6117379190613d4e565b11156117555760405162461bcd60e51b8152600401610e3090613c15565b600c548111156117775760405162461bcd60e51b8152600401610e3090613ba7565b60125462010000900460ff166117c85760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610e30565b34816011546117d79190613d7a565b11156117f55760405162461bcd60e51b8152600401610e3090613bde565b6117ff3382612c33565b506001600855565b600061181283611d95565b821061186b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610e30565b600080549080805b83811015611904576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118c657805192505b876001600160a01b0316836001600160a01b031614156118fb57868414156118f457509350610d2d92505050565b6001909301925b50600101611873565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610e30565b6007546001600160a01b0316331461198e5760405162461bcd60e51b8152600401610e3090613c4c565b60128054911515620100000262ff000019909216919091179055565b826daaeb6d7670e522a718067333cd4e3b15611b0f576001600160a01b0381163314156119dc576112fc848484612c58565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611a2657600080fd5b505afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190613947565b8015611af05750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b158015611ab857600080fd5b505afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190613947565b611b0f57604051633b79c77360e21b8152336004820152602401610e30565b61143f848484612c58565b6007546001600160a01b03163314611b445760405162461bcd60e51b8152600401610e3090613c4c565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314611b905760405162461bcd60e51b8152600401610e3090613c4c565b601280549115156401000000000264ff0000000019909216919091179055565b600080548210611c0e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610e30565b5090565b6007546001600160a01b03163314611c3c5760405162461bcd60e51b8152600401610e3090613c4c565b610ff6601883836135ad565b6007546001600160a01b03163314611c725760405162461bcd60e51b8152600401610e3090613c4c565b601280549115156101000261ff0019909216919091179055565b6000611c9782612c73565b5192915050565b60026008541415611cc15760405162461bcd60e51b8152600401610e3090613cd4565b60026008556007546001600160a01b03163314611cf05760405162461bcd60e51b8152600401610e3090613c4c565b333214611d0f5760405162461bcd60e51b8152600401610e3090613d0b565b600a54811115611d315760405162461bcd60e51b8152600401610e3090613ba7565b60095481611d3e60005490565b611d489190613d4e565b11156117f55760405162461bcd60e51b8152600401610e3090613c15565b6007546001600160a01b03163314611d905760405162461bcd60e51b8152600401610e3090613c4c565b600955565b60006001600160a01b038216611e015760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610e30565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314611e505760405162461bcd60e51b8152600401610e3090613c4c565b611e5a6000612d4a565b565b6007546001600160a01b03163314611e865760405162461bcd60e51b8152600401610e3090613c4c565b600f55565b6007546001600160a01b03163314611eb55760405162461bcd60e51b8152600401610e3090613c4c565b600c55565b6007546001600160a01b03163314611ee45760405162461bcd60e51b8152600401610e3090613c4c565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b60026008541415611f295760405162461bcd60e51b8152600401610e3090613cd4565b60026008556000611f3a8284613d4e565b905060095481611f4960005490565b611f539190613d4e565b1115611f715760405162461bcd60e51b8152600401610e3090613c15565b6012546301000000900460ff16611fc35760405162461bcd60e51b81526020600482015260166024820152755469636b6574206d696e74206e6f742061637469766560501b6044820152606401610e30565b6000831180611fd25750600082115b61201e5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774206d696e742077697468206e6f207469636b6574730000000000006044820152606401610e30565b82156120b457601954601b546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018690529116906323b872dd90606401602060405180830381600087803b15801561207a57600080fd5b505af115801561208e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b29190613947565b505b811561214a57601a54601b546040516323b872dd60e01b81523360048201526001600160a01b039182166024820152604481018590529116906323b872dd90606401602060405180830381600087803b15801561211057600080fd5b505af1158015612124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121489190613947565b505b6121543382612c33565b5050600160085550565b6007546001600160a01b031633146121885760405162461bcd60e51b8152600401610e3090613c4c565b601280546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6007546001600160a01b031633146121e25760405162461bcd60e51b8152600401610e3090613c4c565b600e55565b6007546001600160a01b031633146122115760405162461bcd60e51b8152600401610e3090613c4c565b600b55565b6007546001600160a01b031633146122405760405162461bcd60e51b8152600401610e3090613c4c565b600047116122875760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b6044820152606401610e30565b476122923382612d9c565b50565b606060028054610d4290613ddc565b6007546001600160a01b031633146122ce5760405162461bcd60e51b8152600401610e3090613c4c565b6012805460ff1916911515919091179055565b6001600160a01b03821633141561233a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610e30565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146123d05760405162461bcd60e51b8152600401610e3090613c4c565b6012805460ff60c81b1916600160c81b179055565b836daaeb6d7670e522a718067333cd4e3b15612550576001600160a01b03811633141561241d5761241885858585612e32565b61255c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b15801561246757600080fd5b505afa15801561247b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249f9190613947565b80156125315750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c61711349060440160206040518083038186803b1580156124f957600080fd5b505afa15801561250d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125319190613947565b61255057604051633b79c77360e21b8152336004820152602401610e30565b61255c85858585612e32565b5050505050565b6007546001600160a01b0316331461258d5760405162461bcd60e51b8152600401610e3090613c4c565b601455565b6007546001600160a01b031633146125bc5760405162461bcd60e51b8152600401610e3090613c4c565b80516125cf90601390602084019061362d565b5050565b6007546001600160a01b031633146125fd5760405162461bcd60e51b8152600401610e3090613c4c565b601155565b606061260f826000541190565b6126735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610e30565b601254600160c81b900460ff16612716576013805461269190613ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546126bd90613ddc565b801561270a5780601f106126df5761010080835404028352916020019161270a565b820191906000526020600020905b8154815290600101906020018083116126ed57829003601f168201915b50505050509050919050565b6000612720612e65565b90508051600014156127415760405180602001604052806000815250612776565b80612755612750856001613d4e565b612e74565b604051602001612766929190613b18565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146127a75760405162461bcd60e51b8152600401610e3090613c4c565b600954836127b460005490565b6127be9190613d4e565b11156127dc5760405162461bcd60e51b8152600401610e3090613c15565b6127e68284613e32565b156128415760405162461bcd60e51b815260206004820152602560248201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f6620626174636044820152646853697a6560d81b6064820152608401610e30565b60005b61284e8385613d66565b81101561143f5761285f8284612c33565b8061286981613e17565b915050612844565b6007546001600160a01b0316331461289b5760405162461bcd60e51b8152600401610e3090613c4c565b60128054911515600160c81b0260ff60c81b19909216919091179055565b600260085414156128dc5760405162461bcd60e51b8152600401610e3090613cd4565b6002600855600954826128ee60005490565b6128f89190613d4e565b11156129165760405162461bcd60e51b8152600401610e3090613c15565b600d548211156129385760405162461bcd60e51b8152600401610e3090613ba7565b601254640100000000900460ff166129925760405162461bcd60e51b815260206004820152601760248201527f5370656369616c206d696e74206e6f74206163746976650000000000000000006044820152606401610e30565b6012546501000000000090046001600160a01b031633146129f55760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e74207769746820746861742061646472657373000000006044820152606401610e30565b6129ff8183612c33565b50506001600855565b6007546001600160a01b03163314612a325760405162461bcd60e51b8152600401610e3090613c4c565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314612a7e5760405162461bcd60e51b8152600401610e3090613c4c565b6001600160a01b038116612ae35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e30565b61229281612d4a565b6007546001600160a01b03163314612b165760405162461bcd60e51b8152600401610e3090613c4c565b601055565b6007546001600160a01b03163314612b455760405162461bcd60e51b8152600401610e3090613c4c565b6012805491151563010000000263ff00000019909216919091179055565b6007546001600160a01b03163314612b8d5760405162461bcd60e51b8152600401610e3090613c4c565b601555565b6007546001600160a01b03163314612bbc5760405162461bcd60e51b8152600401610e3090613c4c565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082612c2a8584612f7a565b14949350505050565b6125cf828260405180602001604052806000815250612fee565b610ff6838383612ffb565b610ff6838383604051806020016040528060008152506123e5565b6040805180820190915260008082526020820152612c92826000541190565b612cf15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610e30565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612d40579392505050565b5060001901612cf3565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612de9576040519150601f19603f3d011682016040523d82523d6000602084013e612dee565b606091505b5050905080610ff65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610e30565b612e3d848484612ffb565b612e49848484846132dd565b61143f5760405162461bcd60e51b8152600401610e3090613c81565b606060188054610d4290613ddc565b606081612e985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ec25780612eac81613e17565b9150612ebb9050600a83613d66565b9150612e9c565b60008167ffffffffffffffff811115612edd57612edd613e88565b6040519080825280601f01601f191660200182016040528015612f07576020820181803683370190505b5090505b8415612f7257612f1c600183613d99565b9150612f29600a86613e32565b612f34906030613d4e565b60f81b818381518110612f4957612f49613e72565b60200101906001600160f81b031916908160001a905350612f6b600a86613d66565b9450612f0b565b949350505050565b600081815b8451811015612fe6576000858281518110612f9c57612f9c613e72565b60200260200101519050808311612fc25760008381526020829052604090209250612fd3565b600081815260208490526040902092505b5080612fde81613e17565b915050612f7f565b509392505050565b610ff683838360016133ea565b600061300682612c73565b80519091506000906001600160a01b0316336001600160a01b0316148061303d57503361303284610dc5565b6001600160a01b0316145b8061304f5750815161304f9033610bd8565b9050806130b95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610e30565b846001600160a01b031682600001516001600160a01b03161461312d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610e30565b6001600160a01b0384166131915760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610e30565b6131a16000848460000151612bc1565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661329657613249816000541190565b15613296578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255c565b60006001600160a01b0384163b156133df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613321903390899088908890600401613b57565b602060405180830381600087803b15801561333b57600080fd5b505af192505050801561336b575060408051601f3d908101601f191682019092526133689181019061399a565b60015b6133c5573d808015613399576040519150601f19603f3d011682016040523d82523d6000602084013e61339e565b606091505b5080516133bd5760405162461bcd60e51b8152600401610e3090613c81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f72565b506001949350505050565b6000546001600160a01b03851661344d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610e30565b836134ab5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610e30565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156135a45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156135985761357c60008884886132dd565b6135985760405162461bcd60e51b8152600401610e3090613c81565b60019182019101613529565b5060005561255c565b8280546135b990613ddc565b90600052602060002090601f0160209004810192826135db5760008555613621565b82601f106135f45782800160ff19823516178555613621565b82800160010185558215613621579182015b82811115613621578235825591602001919060010190613606565b50611c0e9291506136a1565b82805461363990613ddc565b90600052602060002090601f01602090048101928261365b5760008555613621565b82601f1061367457805160ff1916838001178555613621565b82800160010185558215613621579182015b82811115613621578251825591602001919060010190613686565b5b80821115611c0e57600081556001016136a2565b600067ffffffffffffffff808411156136d1576136d1613e88565b604051601f8501601f19908116603f011681019082821181831017156136f9576136f9613e88565b8160405280935085815286868601111561371257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461374357600080fd5b919050565b60006020828403121561375a57600080fd5b6127768261372c565b6000806040838503121561377657600080fd5b61377f8361372c565b915061378d6020840161372c565b90509250929050565b6000806000606084860312156137ab57600080fd5b6137b48461372c565b92506137c26020850161372c565b9150604084013590509250925092565b600080600080608085870312156137e857600080fd5b6137f18561372c565b93506137ff6020860161372c565b925060408501359150606085013567ffffffffffffffff81111561382257600080fd5b8501601f8101871361383357600080fd5b613842878235602084016136b6565b91505092959194509250565b6000806040838503121561386157600080fd5b61386a8361372c565b9150602083013561387a81613e9e565b809150509250929050565b6000806040838503121561389857600080fd5b6138a18361372c565b946020939093013593505050565b6000806000604084860312156138c457600080fd5b833567ffffffffffffffff808211156138dc57600080fd5b818601915086601f8301126138f057600080fd5b8135818111156138ff57600080fd5b8760208260051b850101111561391457600080fd5b6020928301989097509590910135949350505050565b60006020828403121561393c57600080fd5b813561277681613e9e565b60006020828403121561395957600080fd5b815161277681613e9e565b60006020828403121561397657600080fd5b5035919050565b60006020828403121561398f57600080fd5b813561277681613eac565b6000602082840312156139ac57600080fd5b815161277681613eac565b600080602083850312156139ca57600080fd5b823567ffffffffffffffff808211156139e257600080fd5b818501915085601f8301126139f657600080fd5b813581811115613a0557600080fd5b866020828501011115613a1757600080fd5b60209290920196919550909350505050565b600060208284031215613a3b57600080fd5b813567ffffffffffffffff811115613a5257600080fd5b8201601f81018413613a6357600080fd5b612f72848235602084016136b6565b60008060408385031215613a8557600080fd5b8235915061378d6020840161372c565b60008060408385031215613aa857600080fd5b50508035926020909101359150565b600080600060608486031215613acc57600080fd5b8335925060208401359150613ae36040850161372c565b90509250925092565b60008151808452613b04816020860160208601613db0565b601f01601f19169290920160200192915050565b60008351613b2a818460208801613db0565b835190830190613b3e818360208801613db0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b8a90830184613aec565b9695505050505050565b6020815260006127766020830184613aec565b6020808252601a908201527f45786365656473206d617820746f6b656e207075726368617365000000000000604082015260600190565b60208082526018908201527f53656e7420696e636f7272656374204554482076616c75650000000000000000604082015260600190565b60208082526019908201527f4d696e74206578636565647320746f74616c20737570706c7900000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60008219821115613d6157613d61613e46565b500190565b600082613d7557613d75613e5c565b500490565b6000816000190483118215151615613d9457613d94613e46565b500290565b600082821015613dab57613dab613e46565b500390565b60005b83811015613dcb578181015183820152602001613db3565b8381111561143f5750506000910152565b600181811c90821680613df057607f821691505b60208210811415613e1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e2b57613e2b613e46565b5060010190565b600082613e4157613e41613e5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461229257600080fd5b6001600160e01b03198116811461229257600080fdfea26469706673582212205db9e09b90d3700df0a1b703b6b0bf6303bc8ff7176d35b01617b7a1d5beadb864736f6c63430008070033

Deployed Bytecode Sourcemap

48696:10752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30456:372;;;;;;;;;;-1:-1:-1;30456:372:0;;;;;:::i;:::-;;:::i;:::-;;;9725:14:1;;9718:22;9700:41;;9688:2;9673:18;30456:372:0;;;;;;;;32342:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33904:214::-;;;;;;;;;;-1:-1:-1;33904:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8334:32:1;;;8316:51;;8304:2;8289:18;33904:214:0;8170:203:1;49504:28:0;;;;;;;;;;;;;:::i;33425:413::-;;;;;;;;;;-1:-1:-1;33425:413:0;;;;;:::i;:::-;;:::i;:::-;;48994:37;;;;;;;;;;;;;;;;;;;9898:25:1;;;9886:2;9871:18;48994:37:0;9752:177:1;51298:946:0;;;;;;:::i;:::-;;:::i;49100:43::-;;;;;;;;;;;;;;;;28713:100;;;;;;;;;;-1:-1:-1;28766:7:0;28793:12;28713:100;;58666:237;;;;;;;;;;-1:-1:-1;58666:237:0;;;;;:::i;:::-;;:::i;50324:966::-;;;;;;:::i;:::-;;:::i;49582:34::-;;;;;;;;;;;;;;;;52252:442;;;;;;:::i;:::-;;:::i;49859:32::-;;;;;;;;;;-1:-1:-1;49859:32:0;;;;-1:-1:-1;;;;;49859:32:0;;;29377:1007;;;;;;;;;;-1:-1:-1;29377:1007:0;;;;;:::i;:::-;;:::i;48822:32::-;;;;;;;;;;;;;;;;49315:27;;;;;;;;;;-1:-1:-1;49315:27:0;;;;;;;;;;;49282:26;;;;;;;;;;-1:-1:-1;49282:26:0;;;;;;;;;;;56432:123;;;;;;;;;;-1:-1:-1;56432:123:0;;;;;:::i;:::-;;:::i;58911:246::-;;;;;;;;;;-1:-1:-1;58911:246:0;;;;;:::i;:::-;;:::i;49150:43::-;;;;;;;;;;;;;;;;56694:132;;;;;;;;;;-1:-1:-1;56694:132:0;;;;;:::i;:::-;;:::i;58282:125::-;;;;;;;;;;-1:-1:-1;58282:125:0;;;;;:::i;:::-;;:::i;28890:187::-;;;;;;;;;;-1:-1:-1;28890:187:0;;;;;:::i;:::-;;:::i;49469:28::-;;;;;;;;;;-1:-1:-1;49469:28:0;;;;-1:-1:-1;;;49469:28:0;;;;;;55645:111;;;;;;;;;;-1:-1:-1;55645:111:0;;;;;:::i;:::-;;:::i;56305:119::-;;;;;;;;;;-1:-1:-1;56305:119:0;;;;;:::i;:::-;;:::i;49200:40::-;;;;;;;;;;;;;;;;32151:124;;;;;;;;;;-1:-1:-1;32151:124:0;;;;;:::i;:::-;;:::i;53813:374::-;;;;;;:::i;:::-;;:::i;49349:27::-;;;;;;;;;;-1:-1:-1;49349:27:0;;;;;;;;;;;57470:101;;;;;;;;;;-1:-1:-1;57470:101:0;;;;;:::i;:::-;;:::i;30892:221::-;;;;;;;;;;-1:-1:-1;30892:221:0;;;;;:::i;:::-;;:::i;23590:103::-;;;;;;;;;;;;;:::i;57094:121::-;;;;;;;;;;-1:-1:-1;57094:121:0;;;;;:::i;:::-;;:::i;57863:119::-;;;;;;;;;;-1:-1:-1;57863:119:0;;;;;:::i;:::-;;:::i;56974:112::-;;;;;;;;;;-1:-1:-1;56974:112:0;;;;;:::i;:::-;;:::i;49773:35::-;;;;;;;;;;-1:-1:-1;49773:35:0;;;;-1:-1:-1;;;;;49773:35:0;;;52702:668;;;;;;;;;;-1:-1:-1;52702:668:0;;;;;:::i;:::-;;:::i;58132:142::-;;;;;;;;;;-1:-1:-1;58132:142:0;;;;;:::i;:::-;;:::i;48951:36::-;;;;;;;;;;;;;;;;57990:134;;;;;;;;;;-1:-1:-1;57990:134:0;;;;;:::i;:::-;;:::i;57721:::-;;;;;;;;;;-1:-1:-1;57721:134:0;;;;;:::i;:::-;;:::i;54767:226::-;;;;;;;;;;;;;:::i;22939:87::-;;;;;;;;;;-1:-1:-1;23012:6:0;;-1:-1:-1;;;;;23012:6:0;22939:87;;32511:104;;;;;;;;;;;;;:::i;49046:41::-;;;;;;;;;;;;;;;;49249:26;;;;;;;;;;-1:-1:-1;49249:26:0;;;;;;;;56178:119;;;;;;;;;;-1:-1:-1;56178:119:0;;;;;:::i;:::-;;:::i;48861:38::-;;;;;;;;;;;;;;;;34190:288;;;;;;;;;;-1:-1:-1;34190:288:0;;;;;:::i;:::-;;:::i;55001:71::-;;;;;;;;;;;;;:::i;49541:34::-;;;;;;;;;;;;;;;;59165:280;;;;;;;;;;-1:-1:-1;59165:280:0;;;;;:::i;:::-;;:::i;49815:35::-;;;;;;;;;;-1:-1:-1;49815:35:0;;;;-1:-1:-1;;;;;49815:35:0;;;55878:142;;;;;;;;;;-1:-1:-1;55878:142:0;;;;;:::i;:::-;;:::i;55764:106::-;;;;;;;;;;-1:-1:-1;55764:106:0;;;;;:::i;:::-;;:::i;49420:36::-;;;;;;;;;;-1:-1:-1;49420:36:0;;;;;;;-1:-1:-1;;;;;49420:36:0;;;57353:109;;;;;;;;;;-1:-1:-1;57353:109:0;;;;;:::i;:::-;;:::i;55205:432::-;;;;;;;;;;-1:-1:-1;55205:432:0;;;;;:::i;:::-;;:::i;49383:28::-;;;;;;;;;;-1:-1:-1;49383:28:0;;;;;;;;;;;54195:376;;;;;;;;;;-1:-1:-1;54195:376:0;;;;;:::i;:::-;;:::i;58518:107::-;;;;;;;;;;-1:-1:-1;58602:15:0;58518:107;;48906:38;;;;;;;;;;;;;;;;58415:95;;;;;;;;;;-1:-1:-1;58415:95:0;;;;;:::i;:::-;;:::i;53378:427::-;;;;;;;;;;-1:-1:-1;53378:427:0;;;;;:::i;:::-;;:::i;34549:164::-;;;;;;;;;;-1:-1:-1;34549:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34670:25:0;;;34646:4;34670:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34549:164;56834:132;;;;;;;;;;-1:-1:-1;56834:132:0;;;;;:::i;:::-;;:::i;23848:201::-;;;;;;;;;;-1:-1:-1;23848:201:0;;;;;:::i;:::-;;:::i;57224:121::-;;;;;;;;;;-1:-1:-1;57224:121:0;;;;;:::i;:::-;;:::i;56563:123::-;;;;;;;;;;-1:-1:-1;56563:123:0;;;;;:::i;:::-;;:::i;56028:142::-;;;;;;;;;;-1:-1:-1;56028:142:0;;;;;:::i;:::-;;:::i;57579:134::-;;;;;;;;;;-1:-1:-1;57579:134:0;;;;;:::i;:::-;;:::i;30456:372::-;30558:4;-1:-1:-1;;;;;;30595:40:0;;-1:-1:-1;;;30595:40:0;;:105;;-1:-1:-1;;;;;;;30652:48:0;;-1:-1:-1;;;30652:48:0;30595:105;:172;;;-1:-1:-1;;;;;;;30717:50:0;;-1:-1:-1;;;30717:50:0;30595:172;:225;;;-1:-1:-1;;;;;;;;;;21965:40:0;;;30784:36;30575:245;30456:372;-1:-1:-1;;30456:372:0:o;32342:100::-;32396:13;32429:5;32422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32342:100;:::o;33904:214::-;33972:7;34000:16;34008:7;35952:4;35986:12;-1:-1:-1;35976:22:0;35895:111;34000:16;33992:74;;;;-1:-1:-1;;;33992:74:0;;23826:2:1;33992:74:0;;;23808:21:1;23865:2;23845:18;;;23838:30;23904:34;23884:18;;;23877:62;-1:-1:-1;;;23955:18:1;;;23948:43;24008:19;;33992:74:0;;;;;;;;;-1:-1:-1;34086:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34086:24:0;;33904:214::o;49504:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33425:413::-;33498:13;33514:24;33530:7;33514:15;:24::i;:::-;33498:40;;33563:5;-1:-1:-1;;;;;33557:11:0;:2;-1:-1:-1;;;;;33557:11:0;;;33549:58;;;;-1:-1:-1;;;33549:58:0;;19190:2:1;33549:58:0;;;19172:21:1;19229:2;19209:18;;;19202:30;19268:34;19248:18;;;19241:62;-1:-1:-1;;;19319:18:1;;;19312:32;19361:19;;33549:58:0;18988:398:1;33549:58:0;19039:10;-1:-1:-1;;;;;33642:21:0;;;;:62;;-1:-1:-1;33667:37:0;33684:5;19039:10;34549:164;:::i;33667:37::-;33620:169;;;;-1:-1:-1;;;33620:169:0;;14981:2:1;33620:169:0;;;14963:21:1;15020:2;15000:18;;;14993:30;15059:34;15039:18;;;15032:62;15130:27;15110:18;;;15103:55;15175:19;;33620:169:0;14779:421:1;33620:169:0;33802:28;33811:2;33815:7;33824:5;33802:8;:28::i;:::-;33487:351;33425:413;;:::o;51298:946::-;51400:6;;50092:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51408:19:0;;50231:28;;-1:-1:-1;;50248:10:0;7233:2:1;7229:15;7225:53;50231:28:0;;;7213:66:1;51408:19:0;;-1:-1:-1;50183:78:0;;-1:-1:-1;50202:11:0;;51408:19;;7295:12:1;;50231:28:0;;;;;;;;;;;;;50221:39;;;;;;50183:18;:78::i;:::-;50175:121;;;;-1:-1:-1;;;50175:121:0;;14622:2:1;50175:121:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:32;14680:18;;;14673:60;14750:18;;50175:121:0;14420:354:1;50175:121:0;26058:1:::1;26656:7;;:19;;26648:63;;;;-1:-1:-1::0;;;26648:63:0::1;;;;;;;:::i;:::-;26058:1;26789:7;:18:::0;51461:10:::2;51475:9;51461:23;51453:71;;;;-1:-1:-1::0;;;51453:71:0::2;;;;;;;:::i;:::-;51543:14;::::0;::::2;::::0;::::2;;;51535:52;;;::::0;-1:-1:-1;;;51535:52:0;;17646:2:1;51535:52:0::2;::::0;::::2;17628:21:1::0;17685:2;17665:18;;;17658:30;17724:27;17704:18;;;17697:55;17769:18;;51535:52:0::2;17444:349:1::0;51535:52:0::2;51616:19;;51606:6;:29;;51598:68;;;;-1:-1:-1::0;;;51598:68:0::2;;;;;;;:::i;:::-;51724:19;;51711:10;;:32;;;;:::i;:::-;51701:6;51685:13;28766:7:::0;28793:12;;28713:100;51685:13:::2;:22;;;;:::i;:::-;:58;;51677:96;;;;-1:-1:-1::0;;;51677:96:0::2;;;;;;;:::i;:::-;51820:9;51810:6;51792:15;;:24;;;;:::i;:::-;:37;;51784:74;;;;-1:-1:-1::0;;;51784:74:0::2;;;;;;;:::i;:::-;51910:19;::::0;51886:10:::2;51877:20;::::0;;;:8:::2;:20;::::0;;;;;:29:::2;::::0;51900:6;;51877:29:::2;:::i;:::-;:52;;51869:93;;;::::0;-1:-1:-1;;;51869:93:0;;11225:2:1;51869:93:0::2;::::0;::::2;11207:21:1::0;11264:2;11244:18;;;11237:30;11303;11283:18;;;11276:58;11351:18;;51869:93:0::2;11023:352:1::0;51869:93:0::2;52037:10;52051:1;52028:20:::0;;;:8:::2;:20;::::0;;;;;:24;52024:171:::2;;52101:10;52092:20;::::0;;;:8:::2;:20;::::0;;;;;:29:::2;::::0;52115:6;;52092:29:::2;:::i;:::-;52078:10;52069:20;::::0;;;:8:::2;:20;::::0;;;;:52;52024:171:::2;;;52163:10;52154:20;::::0;;;:8:::2;:20;::::0;;;;:29;;;52024:171:::2;52207:29;52217:10;52229:6;52207:9;:29::i;:::-;-1:-1:-1::0;;26014:1:0::1;26968:7;:22:::0;-1:-1:-1;;;51298:946:0:o;58666:237::-;58832:5;45877:42;47017:43;:47;47013:699;;-1:-1:-1;;;;;47296:18:0;;47304:10;47296:18;47292:85;;;58855:40:::1;58874:5;58881:3;58886:8;58855:18;:40::i;:::-;47355:7:::0;;47292:85;47437:67;;-1:-1:-1;;;47437:67:0;;47486:4;47437:67;;;8590:34:1;47493:10:0;8640:18:1;;;8633:43;45877:42:0;;47437:40;;8525:18:1;;47437:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;47533:61:0;;-1:-1:-1;;;47533:61:0;;47582:4;47533:61;;;8590:34:1;-1:-1:-1;;;;;8660:15:1;;8640:18;;;8633:43;45877:42:0;;47533:40;;8525:18:1;;47533:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47391:310;;47655:30;;-1:-1:-1;;;47655:30:0;;47674:10;47655:30;;;8316:51:1;8289:18;;47655:30:0;8170:203:1;47391:310:0;58855:40:::1;58874:5;58881:3;58886:8;58855:18;:40::i;:::-;58666:237:::0;;;;:::o;50324:966::-;50426:6;;50092:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50434:19:0;;50231:28;;-1:-1:-1;;50248:10:0;7233:2:1;7229:15;7225:53;50231:28:0;;;7213:66:1;50434:19:0;;-1:-1:-1;50183:78:0;;-1:-1:-1;50202:11:0;;50434:19;;7295:12:1;;50231:28:0;7084:229:1;50183:78:0;50175:121;;;;-1:-1:-1;;;50175:121:0;;14622:2:1;50175:121:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:32;14680:18;;;14673:60;14750:18;;50175:121:0;14420:354:1;50175:121:0;26058:1:::1;26656:7;;:19;;26648:63;;;;-1:-1:-1::0;;;26648:63:0::1;;;;;;;:::i;:::-;26058:1;26789:7;:18:::0;50487:10:::2;50501:9;50487:23;50479:71;;;;-1:-1:-1::0;;;50479:71:0::2;;;;;;;:::i;:::-;50569:14;::::0;::::2;;50561:52;;;::::0;-1:-1:-1;;;50561:52:0;;17292:2:1;50561:52:0::2;::::0;::::2;17274:21:1::0;17331:2;17311:18;;;17304:30;17370:27;17350:18;;;17343:55;17415:18;;50561:52:0::2;17090:349:1::0;50561:52:0::2;50642:19;;50632:6;:29;;50624:68;;;;-1:-1:-1::0;;;50624:68:0::2;;;;;;;:::i;:::-;50750:19;;50737:10;;:32;;;;:::i;:::-;50727:6;50711:13;28766:7:::0;28793:12;;28713:100;50711:13:::2;:22;;;;:::i;:::-;:58;;50703:96;;;;-1:-1:-1::0;;;50703:96:0::2;;;;;;;:::i;:::-;50846:9;50836:6;50818:15;;:24;;;;:::i;:::-;:37;;50810:74;;;;-1:-1:-1::0;;;50810:74:0::2;;;;;;;:::i;:::-;50940:19;::::0;50916:10:::2;50903:24;::::0;;;:12:::2;:24;::::0;;;;;:33:::2;::::0;50930:6;;50903:33:::2;:::i;:::-;:56;;50895:97;;;::::0;-1:-1:-1;;;50895:97:0;;20710:2:1;50895:97:0::2;::::0;::::2;20692:21:1::0;20749:2;20729:18;;;20722:30;20788;20768:18;;;20761:58;20836:18;;50895:97:0::2;20508:352:1::0;50895:97:0::2;51071:10;51085:1;51058:24:::0;;;:12:::2;:24;::::0;;;;;:28;51054:187:::2;;51143:10;51130:24;::::0;;;:12:::2;:24;::::0;;;;;:33:::2;::::0;51157:6;;51130:33:::2;:::i;:::-;51116:10;51103:24;::::0;;;:12:::2;:24;::::0;;;;:60;51054:187:::2;;;51209:10;51196:24;::::0;;;:12:::2;:24;::::0;;;;:33;;;51253:29:::2;51263:10;51275:6;51253:9;:29::i;52252:442::-:0;26058:1;26656:7;;:19;;26648:63;;;;-1:-1:-1;;;26648:63:0;;;;;;;:::i;:::-;26058:1;26789:7;:18;52376:19:::1;::::0;52363:10:::1;::::0;:32:::1;::::0;52376:19;52363:32:::1;:::i;:::-;52353:6;52337:13;28766:7:::0;28793:12;;28713:100;52337:13:::1;:22;;;;:::i;:::-;:58;;52329:96;;;;-1:-1:-1::0;;;52329:96:0::1;;;;;;;:::i;:::-;52454:16;;52444:6;:26;;52436:65;;;;-1:-1:-1::0;;;52436:65:0::1;;;;;;;:::i;:::-;52520:15;::::0;;;::::1;;;52512:50;;;::::0;-1:-1:-1;;;52512:50:0;;16580:2:1;52512:50:0::1;::::0;::::1;16562:21:1::0;16619:2;16599:18;;;16592:30;-1:-1:-1;;;16638:18:1;;;16631:52;16700:18;;52512:50:0::1;16378:346:1::0;52512:50:0::1;52606:9;52596:6;52581:12;;:21;;;;:::i;:::-;:34;;52573:71;;;;-1:-1:-1::0;;;52573:71:0::1;;;;;;;:::i;:::-;52657:29;52667:10;52679:6;52657:9;:29::i;:::-;-1:-1:-1::0;26014:1:0;26968:7;:22;52252:442::o;29377:1007::-;29466:7;29502:16;29512:5;29502:9;:16::i;:::-;29494:5;:24;29486:71;;;;-1:-1:-1;;;29486:71:0;;10822:2:1;29486:71:0;;;10804:21:1;10861:2;10841:18;;;10834:30;10900:34;10880:18;;;10873:62;-1:-1:-1;;;10951:18:1;;;10944:32;10993:19;;29486:71:0;10620:398:1;29486:71:0;29568:22;28793:12;;;29568:22;;29831:466;29851:14;29847:1;:18;29831:466;;;29891:31;29925:14;;;:11;:14;;;;;;;;;29891:48;;;;;;;;;-1:-1:-1;;;;;29891:48:0;;;;;-1:-1:-1;;;29891:48:0;;;;;;;;;;;;29962:28;29958:111;;30035:14;;;-1:-1:-1;29958:111:0;30112:5;-1:-1:-1;;;;;30091:26:0;:17;-1:-1:-1;;;;;30091:26:0;;30087:195;;;30161:5;30146:11;:20;30142:85;;;-1:-1:-1;30202:1:0;-1:-1:-1;30195:8:0;;-1:-1:-1;;;30195:8:0;30142:85;30249:13;;;;;30087:195;-1:-1:-1;29867:3:0;;29831:466;;;-1:-1:-1;30320:56:0;;-1:-1:-1;;;30320:56:0;;22635:2:1;30320:56:0;;;22617:21:1;22674:2;22654:18;;;22647:30;22713:34;22693:18;;;22686:62;-1:-1:-1;;;22764:18:1;;;22757:44;22818:19;;30320:56:0;22433:410:1;56432:123:0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56513:15:::1;:34:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56513:34:0;;::::1;::::0;;;::::1;::::0;;56432:123::o;58911:246::-;59082:5;45877:42;47017:43;:47;47013:699;;-1:-1:-1;;;;;47296:18:0;;47304:10;47296:18;47292:85;;;59105:44:::1;59128:5;59135:3;59140:8;59105:22;:44::i;47292:85::-:0;47437:67;;-1:-1:-1;;;47437:67:0;;47486:4;47437:67;;;8590:34:1;47493:10:0;8640:18:1;;;8633:43;45877:42:0;;47437:40;;8525:18:1;;47437:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;47533:61:0;;-1:-1:-1;;;47533:61:0;;47582:4;47533:61;;;8590:34:1;-1:-1:-1;;;;;8660:15:1;;8640:18;;;8633:43;45877:42:0;;47533:40;;8525:18:1;;47533:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47391:310;;47655:30;;-1:-1:-1;;;47655:30:0;;47674:10;47655:30;;;8316:51:1;8289:18;;47655:30:0;8170:203:1;47391:310:0;59105:44:::1;59128:5;59135:3;59140:8;59105:22;:44::i;56694:132::-:0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56772:13:::1;:46:::0;;-1:-1:-1;;;;;;56772:46:0::1;-1:-1:-1::0;;;;;56772:46:0;;;::::1;::::0;;;::::1;::::0;;56694:132::o;58282:125::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;58363:16:::1;:36:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58363:36:0;;::::1;::::0;;;::::1;::::0;;58282:125::o;28890:187::-;28957:7;28793:12;;28985:5;:21;28977:69;;;;-1:-1:-1;;;28977:69:0;;13110:2:1;28977:69:0;;;13092:21:1;13149:2;13129:18;;;13122:30;13188:34;13168:18;;;13161:62;-1:-1:-1;;;13239:18:1;;;13232:33;13282:19;;28977:69:0;12908:399:1;28977:69:0;-1:-1:-1;29064:5:0;28890:187::o;55645:111::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;55721:27:::1;:16;55740:8:::0;;55721:27:::1;:::i;56305:119::-:0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56384:14:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;56384:32:0;;::::1;::::0;;;::::1;::::0;;56305:119::o;32151:124::-;32215:7;32242:20;32254:7;32242:11;:20::i;:::-;:25;;32151:124;-1:-1:-1;;32151:124:0:o;53813:374::-;26058:1;26656:7;;:19;;26648:63;;;;-1:-1:-1;;;26648:63:0;;;;;;;:::i;:::-;26058:1;26789:7;:18;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23:::1;23151:68;;;;-1:-1:-1::0;;;23151:68:0::1;;;;;;;:::i;:::-;53910:10:::2;53924:9;53910:23;53902:71;;;;-1:-1:-1::0;;;53902:71:0::2;;;;;;;:::i;:::-;54002:19;;53992:6;:29;;53984:68;;;;-1:-1:-1::0;;;53984:68:0::2;;;;;;;:::i;:::-;54097:10;;54087:6;54071:13;28766:7:::0;28793:12;;28713:100;54071:13:::2;:22;;;;:::i;:::-;:36;;54063:74;;;;-1:-1:-1::0;;;54063:74:0::2;;;;;;;:::i;57470:101::-:0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57540:10:::1;:23:::0;57470:101::o;30892:221::-;30956:7;-1:-1:-1;;;;;30984:19:0;;30976:75;;;;-1:-1:-1;;;30976:75:0;;15407:2:1;30976:75:0;;;15389:21:1;15446:2;15426:18;;;15419:30;15485:34;15465:18;;;15458:62;-1:-1:-1;;;15536:18:1;;;15529:41;15587:19;;30976:75:0;15205:407:1;30976:75:0;-1:-1:-1;;;;;;31077:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31077:27:0;;30892:221::o;23590:103::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;23655:30:::1;23682:1;23655:18;:30::i;:::-;23590:103::o:0;57094:121::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57174:15:::1;:33:::0;57094:121::o;57863:119::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57940:16:::1;:34:::0;57863:119::o;56974:112::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57050:17:::1;:28:::0;;-1:-1:-1;;;;;;57050:28:0::1;-1:-1:-1::0;;;;;57050:28:0;;;::::1;::::0;;;::::1;::::0;;56974:112::o;52702:668::-;26058:1;26656:7;;:19;;26648:63;;;;-1:-1:-1;;;26648:63:0;;;;;;;:::i;:::-;26058:1;26789:7;:18;52804:14:::1;52821:33;52839:15:::0;52821;:33:::1;:::i;:::-;52804:50;;52899:10;;52889:6;52873:13;28766:7:::0;28793:12;;28713:100;52873:13:::1;:22;;;;:::i;:::-;:36;;52865:74;;;;-1:-1:-1::0;;;52865:74:0::1;;;;;;;:::i;:::-;52958:15;::::0;;;::::1;;;52950:50;;;::::0;-1:-1:-1;;;52950:50:0;;21469:2:1;52950:50:0::1;::::0;::::1;21451:21:1::0;21508:2;21488:18;;;21481:30;-1:-1:-1;;;21527:18:1;;;21520:52;21589:18;;52950:50:0::1;21267:346:1::0;52950:50:0::1;53037:1;53019:15;:19;:42;;;;53060:1;53042:15;:19;53019:42;53011:81;;;::::0;-1:-1:-1;;;53011:81:0;;11582:2:1;53011:81:0::1;::::0;::::1;11564:21:1::0;11621:2;11601:18;;;11594:30;11660:28;11640:18;;;11633:56;11706:18;;53011:81:0::1;11380:350:1::0;53011:81:0::1;53116:19:::0;;53113:98:::1;;53137:13;::::0;53176:17:::1;::::0;53137:74:::1;::::0;-1:-1:-1;;;53137:74:0;;53164:10:::1;53137:74;::::0;::::1;8927:34:1::0;-1:-1:-1;;;;;53176:17:0;;::::1;8977:18:1::0;;;8970:43;9029:18;;;9022:34;;;53137:13:0;::::1;::::0;:26:::1;::::0;8862:18:1;;53137:74:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53113:98;53225:19:::0;;53222:98:::1;;53246:13;::::0;53285:17:::1;::::0;53246:74:::1;::::0;-1:-1:-1;;;53246:74:0;;53273:10:::1;53246:74;::::0;::::1;8927:34:1::0;-1:-1:-1;;;;;53285:17:0;;::::1;8977:18:1::0;;;8970:43;9029:18;;;9022:34;;;53246:13:0;::::1;::::0;:26:::1;::::0;8862:18:1;;53246:74:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53222:98;53333:29;53343:10;53355:6;53333:9;:29::i;:::-;-1:-1:-1::0;;26014:1:0;26968:7;:22;-1:-1:-1;52702:668:0:o;58132:142::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;58222:21:::1;:44:::0;;-1:-1:-1;;;;;58222:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;58222:44:0;;::::1;::::0;;;::::1;::::0;;58132:142::o;57990:134::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;58076:19:::1;:40:::0;57990:134::o;57721:::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57807:19:::1;:40:::0;57721:134::o;54767:226::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;54852:1:::1;54828:21;:25;54820:58;;;::::0;-1:-1:-1;;;54820:58:0;;14273:2:1;54820:58:0::1;::::0;::::1;14255:21:1::0;14312:2;14292:18;;;14285:30;-1:-1:-1;;;14331:18:1;;;14324:50;14391:18;;54820:58:0::1;14071:344:1::0;54820:58:0::1;54915:21;54947:38;54957:10;54915:21:::0;54947:9:::1;:38::i;:::-;54809:184;54767:226::o:0;32511:104::-;32567:13;32600:7;32593:14;;;;;:::i;56178:119::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56257:14:::1;:32:::0;;-1:-1:-1;;56257:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56178:119::o;34190:288::-;-1:-1:-1;;;;;34285:24:0;;19039:10;34285:24;;34277:63;;;;-1:-1:-1;;;34277:63:0;;18416:2:1;34277:63:0;;;18398:21:1;18455:2;18435:18;;;18428:30;18494:28;18474:18;;;18467:56;18540:18;;34277:63:0;18214:350:1;34277:63:0;19039:10;34353:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34353:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34353:53:0;;;;;;;;;;34422:48;;9700:41:1;;;34353:42:0;;19039:10;34422:48;;9673:18:1;34422:48:0;;;;;;;34190:288;;:::o;55001:71::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;55049:8:::1;:15:::0;;-1:-1:-1;;;;55049:15:0::1;-1:-1:-1::0;;;55049:15:0::1;::::0;;55001:71::o;59165:280::-;59363:5;45877:42;47017:43;:47;47013:699;;-1:-1:-1;;;;;47296:18:0;;47304:10;47296:18;47292:85;;;59386:51:::1;59409:5;59416:3;59421:8;59431:5;59386:22;:51::i;:::-;47355:7:::0;;47292:85;47437:67;;-1:-1:-1;;;47437:67:0;;47486:4;47437:67;;;8590:34:1;47493:10:0;8640:18:1;;;8633:43;45877:42:0;;47437:40;;8525:18:1;;47437:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;47533:61:0;;-1:-1:-1;;;47533:61:0;;47582:4;47533:61;;;8590:34:1;-1:-1:-1;;;;;8660:15:1;;8640:18;;;8633:43;45877:42:0;;47533:40;;8525:18:1;;47533:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47391:310;;47655:30;;-1:-1:-1;;;47655:30:0;;47674:10;47655:30;;;8316:51:1;8289:18;;47655:30:0;8170:203:1;47391:310:0;59386:51:::1;59409:5;59416:3;59421:8;59431:5;59386:22;:51::i;:::-;59165:280:::0;;;;;:::o;55878:142::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;55970:19:::1;:42:::0;55878:142::o;55764:106::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;55841:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55764:106:::0;:::o;57353:109::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57427:12:::1;:27:::0;57353:109::o;55205:432::-;55278:13;55312:16;55320:7;35952:4;35986:12;-1:-1:-1;35976:22:0;35895:111;55312:16;55304:76;;;;-1:-1:-1;;;55304:76:0;;18000:2:1;55304:76:0;;;17982:21:1;18039:2;18019:18;;;18012:30;18078:34;18058:18;;;18051:62;-1:-1:-1;;;18129:18:1;;;18122:45;18184:19;;55304:76:0;17798:411:1;55304:76:0;55396:8;;-1:-1:-1;;;55396:8:0;;;;55393:70;;55437:14;55430:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55205:432;;;:::o;55393:70::-;55475:21;55499:10;:8;:10::i;:::-;55475:34;;55533:7;55527:21;55552:1;55527:26;;:102;;;;;;;;;;;;;;;;;55580:7;55589:24;55590:11;:7;55600:1;55590:11;:::i;:::-;55589:22;:24::i;:::-;55563:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55527:102;55520:109;55205:432;-1:-1:-1;;;55205:432:0:o;54195:376::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;54327:10:::1;;54317:6;54301:13;28766:7:::0;28793:12;;28713:100;54301:13:::1;:22;;;;:::i;:::-;:36;;54293:74;;;;-1:-1:-1::0;;;54293:74:0::1;;;;;;;:::i;:::-;54386:18;54395:9:::0;54386:6;:18:::1;:::i;:::-;:23:::0;54378:73:::1;;;::::0;-1:-1:-1;;;54378:73:0;;22229:2:1;54378:73:0::1;::::0;::::1;22211:21:1::0;22268:2;22248:18;;;22241:30;22307:34;22287:18;;;22280:62;-1:-1:-1;;;22358:18:1;;;22351:35;22403:19;;54378:73:0::1;22027:401:1::0;54378:73:0::1;54469:9;54464:100;54488:18;54497:9:::0;54488:6;:18:::1;:::i;:::-;54484:1;:22;54464:100;;;54528:24;54538:2;54542:9;54528;:24::i;:::-;54508:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54464:100;;58415:95:::0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;58482:8:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;58482:20:0::1;-1:-1:-1::0;;;;58482:20:0;;::::1;::::0;;;::::1;::::0;;58415:95::o;53378:427::-;26058:1;26656:7;;:19;;26648:63;;;;-1:-1:-1;;;26648:63:0;;;;;;;:::i;:::-;26058:1;26789:7;:18;53495:10:::1;::::0;53485:6;53469:13:::1;28766:7:::0;28793:12;;28713:100;53469:13:::1;:22;;;;:::i;:::-;:36;;53461:74;;;;-1:-1:-1::0;;;53461:74:0::1;;;;;;;:::i;:::-;53564:17;;53554:6;:27;;53546:66;;;;-1:-1:-1::0;;;53546:66:0::1;;;;;;;:::i;:::-;53631:16;::::0;;;::::1;;;53623:52;;;::::0;-1:-1:-1;;;53623:52:0;;19593:2:1;53623:52:0::1;::::0;::::1;19575:21:1::0;19632:2;19612:18;;;19605:30;19671:25;19651:18;;;19644:53;19714:18;;53623:52:0::1;19391:347:1::0;53623:52:0::1;53694:21;::::0;;;::::1;-1:-1:-1::0;;;;;53694:21:0::1;53719:10;53694:35;53686:76;;;::::0;-1:-1:-1;;;53686:76:0;;24240:2:1;53686:76:0::1;::::0;::::1;24222:21:1::0;24279:2;24259:18;;;24252:30;24318;24298:18;;;24291:58;24366:18;;53686:76:0::1;24038:352:1::0;53686:76:0::1;53775:22;53785:3;53790:6;53775:9;:22::i;:::-;-1:-1:-1::0;;26014:1:0;26968:7;:22;53378:427::o;56834:132::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56912:13:::1;:46:::0;;-1:-1:-1;;;;;;56912:46:0::1;-1:-1:-1::0;;;;;56912:46:0;;;::::1;::::0;;;::::1;::::0;;56834:132::o;23848:201::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23937:22:0;::::1;23929:73;;;::::0;-1:-1:-1;;;23929:73:0;;11937:2:1;23929:73:0::1;::::0;::::1;11919:21:1::0;11976:2;11956:18;;;11949:30;12015:34;11995:18;;;11988:62;-1:-1:-1;;;12066:18:1;;;12059:36;12112:19;;23929:73:0::1;11735:402:1::0;23929:73:0::1;24013:28;24032:8;24013:18;:28::i;57224:121::-:0;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57304:15:::1;:33:::0;57224:121::o;56563:123::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56644:15:::1;:34:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;56644:34:0;;::::1;::::0;;;::::1;::::0;;56563:123::o;56028:142::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;56120:19:::1;:42:::0;56028:142::o;57579:134::-;23012:6;;-1:-1:-1;;;;;23012:6:0;19039:10;23159:23;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;57665:19:::1;:40:::0;57579:134::o;40815:196::-;40930:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40930:29:0;-1:-1:-1;;;;;40930:29:0;;;;;;;;;40975:28;;40930:24;;40975:28;;;;;;;40815:196;;;:::o;797:190::-;922:4;975;946:25;959:5;966:4;946:12;:25::i;:::-;:33;;797:190;-1:-1:-1;;;;797:190:0:o;36014:104::-;36083:27;36093:2;36097:8;36083:27;;;;;;;;;;;;:9;:27::i;34780:170::-;34914:28;34924:4;34930:2;34934:7;34914:9;:28::i;35021:185::-;35159:39;35176:4;35182:2;35186:7;35159:39;;;;;;;;;;;;:16;:39::i;31552:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;31655:16:0;31663:7;35952:4;35986:12;-1:-1:-1;35976:22:0;35895:111;31655:16;31647:71;;;;-1:-1:-1;;;31647:71:0;;12344:2:1;31647:71:0;;;12326:21:1;12383:2;12363:18;;;12356:30;12422:34;12402:18;;;12395:62;-1:-1:-1;;;12473:18:1;;;12466:40;12523:19;;31647:71:0;12142:406:1;31647:71:0;31776:7;31756:245;31823:31;31857:17;;;:11;:17;;;;;;;;;31823:51;;;;;;;;;-1:-1:-1;;;;;31823:51:0;;;;;-1:-1:-1;;;31823:51:0;;;;;;;;;;;;31897:28;31893:93;;31957:9;31552:537;-1:-1:-1;;;31552:537:0:o;31893:93::-;-1:-1:-1;;;31796:6:0;31756:245;;24209:191;24302:6;;;-1:-1:-1;;;;;24319:17:0;;;-1:-1:-1;;;;;;24319:17:0;;;;;;;24352:40;;24302:6;;;24319:17;24302:6;;24352:40;;24283:16;;24352:40;24272:128;24209:191;:::o;54579:180::-;54653:12;54671:8;-1:-1:-1;;;;;54671:13:0;54692:7;54671:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54652:52;;;54723:7;54715:36;;;;-1:-1:-1;;;54715:36:0;;19945:2:1;54715:36:0;;;19927:21:1;19984:2;19964:18;;;19957:30;-1:-1:-1;;;20003:18:1;;;19996:46;20059:18;;54715:36:0;19743:340:1;35277:363:0;35444:28;35454:4;35460:2;35464:7;35444:9;:28::i;:::-;35505:48;35528:4;35534:2;35538:7;35547:5;35505:22;:48::i;:::-;35483:149;;;;-1:-1:-1;;;35483:149:0;;;;;;;:::i;55080:117::-;55140:13;55173:16;55166:23;;;;;:::i;19399:723::-;19455:13;19676:10;19672:53;;-1:-1:-1;;19703:10:0;;;;;;;;;;;;-1:-1:-1;;;19703:10:0;;;;;19399:723::o;19672:53::-;19750:5;19735:12;19791:78;19798:9;;19791:78;;19824:8;;;;:::i;:::-;;-1:-1:-1;19847:10:0;;-1:-1:-1;19855:2:0;19847:10;;:::i;:::-;;;19791:78;;;19879:19;19911:6;19901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19901:17:0;;19879:39;;19929:154;19936:10;;19929:154;;19963:11;19973:1;19963:11;;:::i;:::-;;-1:-1:-1;20032:10:0;20040:2;20032:5;:10;:::i;:::-;20019:24;;:2;:24;:::i;:::-;20006:39;;19989:6;19996;19989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19989:56:0;;;;;;;;-1:-1:-1;20060:11:0;20069:2;20060:11;;:::i;:::-;;;19929:154;;;20107:6;19399:723;-1:-1:-1;;;;19399:723:0:o;1349:675::-;1432:7;1475:4;1432:7;1490:497;1514:5;:12;1510:1;:16;1490:497;;;1548:20;1571:5;1577:1;1571:8;;;;;;;;:::i;:::-;;;;;;;1548:31;;1614:12;1598;:28;1594:382;;2100:13;2150:15;;;2186:4;2179:15;;;2233:4;2217:21;;1726:57;;1594:382;;;2100:13;2150:15;;;2186:4;2179:15;;;2233:4;2217:21;;1903:57;;1594:382;-1:-1:-1;1528:3:0;;;;:::i;:::-;;;;1490:497;;;-1:-1:-1;2004:12:0;1349:675;-1:-1:-1;;;1349:675:0:o;36481:163::-;36604:32;36610:2;36614:8;36624:5;36631:4;36604:5;:32::i;38695:2002::-;38810:35;38848:20;38860:7;38848:11;:20::i;:::-;38923:18;;38810:58;;-1:-1:-1;38881:22:0;;-1:-1:-1;;;;;38907:34:0;19039:10;-1:-1:-1;;;;;38907:34:0;;:87;;;-1:-1:-1;19039:10:0;38958:20;38970:7;38958:11;:20::i;:::-;-1:-1:-1;;;;;38958:36:0;;38907:87;:154;;;-1:-1:-1;39028:18:0;;39011:50;;19039:10;34549:164;:::i;39011:50::-;38881:181;;39083:17;39075:80;;;;-1:-1:-1;;;39075:80:0;;18771:2:1;39075:80:0;;;18753:21:1;18810:2;18790:18;;;18783:30;18849:34;18829:18;;;18822:62;-1:-1:-1;;;18900:18:1;;;18893:48;18958:19;;39075:80:0;18569:414:1;39075:80:0;39198:4;-1:-1:-1;;;;;39176:26:0;:13;:18;;;-1:-1:-1;;;;;39176:26:0;;39168:77;;;;-1:-1:-1;;;39168:77:0;;16173:2:1;39168:77:0;;;16155:21:1;16212:2;16192:18;;;16185:30;16251:34;16231:18;;;16224:62;-1:-1:-1;;;16302:18:1;;;16295:36;16348:19;;39168:77:0;15971:402:1;39168:77:0;-1:-1:-1;;;;;39264:16:0;;39256:66;;;;-1:-1:-1;;;39256:66:0;;13514:2:1;39256:66:0;;;13496:21:1;13553:2;13533:18;;;13526:30;13592:34;13572:18;;;13565:62;-1:-1:-1;;;13643:18:1;;;13636:35;13688:19;;39256:66:0;13312:401:1;39256:66:0;39443:49;39460:1;39464:7;39473:13;:18;;;39443:8;:49::i;:::-;-1:-1:-1;;;;;39788:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39788:31:0;;;-1:-1:-1;;;;;39788:31:0;;;-1:-1:-1;;39788:31:0;;;;;;;39834:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39834:29:0;;;;;;;;;;;;;39880:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39925:61:0;;;;-1:-1:-1;;;39970:15:0;39925:61;;;;;;40260:11;;;40290:24;;;;;:29;40260:11;;40290:29;40286:295;;40358:20;40366:11;35952:4;35986:12;-1:-1:-1;35976:22:0;35895:111;40358:20;40354:212;;;40435:18;;;40403:24;;;:11;:24;;;;;;;;:50;;40518:28;;;;40476:70;;-1:-1:-1;;;40476:70:0;-1:-1:-1;;;;;;40476:70:0;;;-1:-1:-1;;;;;40403:50:0;;;40476:70;;;;;;;40354:212;39763:829;40628:7;40624:2;-1:-1:-1;;;;;40609:27:0;40618:4;-1:-1:-1;;;;;40609:27:0;;;;;;;;;;;40647:42;58666:237;41576:804;41731:4;-1:-1:-1;;;;;41752:13:0;;11444:19;:23;41748:625;;41788:72;;-1:-1:-1;;;41788:72:0;;-1:-1:-1;;;;;41788:36:0;;;;;:72;;19039:10;;41839:4;;41845:7;;41854:5;;41788:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41788:72:0;;;;;;;;-1:-1:-1;;41788:72:0;;;;;;;;;;;;:::i;:::-;;;41784:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42034:13:0;;42030:273;;42077:61;;-1:-1:-1;;;42077:61:0;;;;;;;:::i;42030:273::-;42253:6;42247:13;42238:6;42234:2;42230:15;42223:38;41784:534;-1:-1:-1;;;;;;41911:55:0;-1:-1:-1;;;41911:55:0;;-1:-1:-1;41904:62:0;;41748:625;-1:-1:-1;42357:4:0;41576:804;;;;;;:::o;36903:1538::-;37042:20;37065:12;-1:-1:-1;;;;;37096:16:0;;37088:62;;;;-1:-1:-1;;;37088:62:0;;21067:2:1;37088:62:0;;;21049:21:1;21106:2;21086:18;;;21079:30;21145:34;21125:18;;;21118:62;-1:-1:-1;;;21196:18:1;;;21189:31;21237:19;;37088:62:0;20865:397:1;37088:62:0;37169:13;37161:66;;;;-1:-1:-1;;;37161:66:0;;21820:2:1;37161:66:0;;;21802:21:1;21859:2;21839:18;;;21832:30;21898:34;21878:18;;;21871:62;-1:-1:-1;;;21949:18:1;;;21942:38;21997:19;;37161:66:0;21618:404:1;37161:66:0;-1:-1:-1;;;;;37579:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37579:45:0;;-1:-1:-1;;;;;37579:45:0;;;;;;;;;;37639:50;;;;;;;;;;;;;;37706:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37756:66:0;;;;-1:-1:-1;;;37806:15:0;37756:66;;;;;;;37706:25;;37891:415;37911:8;37907:1;:12;37891:415;;;37950:38;;37975:12;;-1:-1:-1;;;;;37950:38:0;;;37967:1;;37950:38;;37967:1;;37950:38;38011:4;38007:249;;;38074:59;38105:1;38109:2;38113:12;38127:5;38074:22;:59::i;:::-;38040:196;;;;-1:-1:-1;;;38040:196:0;;;;;;;:::i;:::-;38276:14;;;;;37921:3;37891:415;;;-1:-1:-1;38322:12:0;:27;38373:60;58666:237;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:689::-;2962:6;2970;2978;3031:2;3019:9;3010:7;3006:23;3002:32;2999:52;;;3047:1;3044;3037:12;2999:52;3087:9;3074:23;3116:18;3157:2;3149:6;3146:14;3143:34;;;3173:1;3170;3163:12;3143:34;3211:6;3200:9;3196:22;3186:32;;3256:7;3249:4;3245:2;3241:13;3237:27;3227:55;;3278:1;3275;3268:12;3227:55;3318:2;3305:16;3344:2;3336:6;3333:14;3330:34;;;3360:1;3357;3350:12;3330:34;3415:7;3408:4;3398:6;3395:1;3391:14;3387:2;3383:23;3379:34;3376:47;3373:67;;;3436:1;3433;3426:12;3373:67;3467:4;3459:13;;;;3491:6;;-1:-1:-1;3529:20:1;;;;3516:34;;2867:689;-1:-1:-1;;;;2867:689:1:o;3561:241::-;3617:6;3670:2;3658:9;3649:7;3645:23;3641:32;3638:52;;;3686:1;3683;3676:12;3638:52;3725:9;3712:23;3744:28;3766:5;3744:28;:::i;3807:245::-;3874:6;3927:2;3915:9;3906:7;3902:23;3898:32;3895:52;;;3943:1;3940;3933:12;3895:52;3975:9;3969:16;3994:28;4016:5;3994:28;:::i;4057:180::-;4116:6;4169:2;4157:9;4148:7;4144:23;4140:32;4137:52;;;4185:1;4182;4175:12;4137:52;-1:-1:-1;4208:23:1;;4057:180;-1:-1:-1;4057:180:1:o;4242:245::-;4300:6;4353:2;4341:9;4332:7;4328:23;4324:32;4321:52;;;4369:1;4366;4359:12;4321:52;4408:9;4395:23;4427:30;4451:5;4427:30;:::i;4492:249::-;4561:6;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4662:9;4656:16;4681:30;4705:5;4681:30;:::i;4746:592::-;4817:6;4825;4878:2;4866:9;4857:7;4853:23;4849:32;4846:52;;;4894:1;4891;4884:12;4846:52;4934:9;4921:23;4963:18;5004:2;4996:6;4993:14;4990:34;;;5020:1;5017;5010:12;4990:34;5058:6;5047:9;5043:22;5033:32;;5103:7;5096:4;5092:2;5088:13;5084:27;5074:55;;5125:1;5122;5115:12;5074:55;5165:2;5152:16;5191:2;5183:6;5180:14;5177:34;;;5207:1;5204;5197:12;5177:34;5252:7;5247:2;5238:6;5234:2;5230:15;5226:24;5223:37;5220:57;;;5273:1;5270;5263:12;5220:57;5304:2;5296:11;;;;;5326:6;;-1:-1:-1;4746:592:1;;-1:-1:-1;;;;4746:592:1:o;5343:450::-;5412:6;5465:2;5453:9;5444:7;5440:23;5436:32;5433:52;;;5481:1;5478;5471:12;5433:52;5521:9;5508:23;5554:18;5546:6;5543:30;5540:50;;;5586:1;5583;5576:12;5540:50;5609:22;;5662:4;5654:13;;5650:27;-1:-1:-1;5640:55:1;;5691:1;5688;5681:12;5640:55;5714:73;5779:7;5774:2;5761:16;5756:2;5752;5748:11;5714:73;:::i;5983:254::-;6051:6;6059;6112:2;6100:9;6091:7;6087:23;6083:32;6080:52;;;6128:1;6125;6118:12;6080:52;6164:9;6151:23;6141:33;;6193:38;6227:2;6216:9;6212:18;6193:38;:::i;6242:248::-;6310:6;6318;6371:2;6359:9;6350:7;6346:23;6342:32;6339:52;;;6387:1;6384;6377:12;6339:52;-1:-1:-1;;6410:23:1;;;6480:2;6465:18;;;6452:32;;-1:-1:-1;6242:248:1:o;6495:322::-;6572:6;6580;6588;6641:2;6629:9;6620:7;6616:23;6612:32;6609:52;;;6657:1;6654;6647:12;6609:52;6693:9;6680:23;6670:33;;6750:2;6739:9;6735:18;6722:32;6712:42;;6773:38;6807:2;6796:9;6792:18;6773:38;:::i;:::-;6763:48;;6495:322;;;;;:::o;6822:257::-;6863:3;6901:5;6895:12;6928:6;6923:3;6916:19;6944:63;7000:6;6993:4;6988:3;6984:14;6977:4;6970:5;6966:16;6944:63;:::i;:::-;7061:2;7040:15;-1:-1:-1;;7036:29:1;7027:39;;;;7068:4;7023:50;;6822:257;-1:-1:-1;;6822:257:1:o;7318:637::-;7598:3;7636:6;7630:13;7652:53;7698:6;7693:3;7686:4;7678:6;7674:17;7652:53;:::i;:::-;7768:13;;7727:16;;;;7790:57;7768:13;7727:16;7824:4;7812:17;;7790:57;:::i;:::-;-1:-1:-1;;;7869:20:1;;7898:22;;;7947:1;7936:13;;7318:637;-1:-1:-1;;;;7318:637:1:o;9067:488::-;-1:-1:-1;;;;;9336:15:1;;;9318:34;;9388:15;;9383:2;9368:18;;9361:43;9435:2;9420:18;;9413:34;;;9483:3;9478:2;9463:18;;9456:31;;;9261:4;;9504:45;;9529:19;;9521:6;9504:45;:::i;:::-;9496:53;9067:488;-1:-1:-1;;;;;;9067:488:1:o;10396:219::-;10545:2;10534:9;10527:21;10508:4;10565:44;10605:2;10594:9;10590:18;10582:6;10565:44;:::i;12553:350::-;12755:2;12737:21;;;12794:2;12774:18;;;12767:30;12833:28;12828:2;12813:18;;12806:56;12894:2;12879:18;;12553:350::o;13718:348::-;13920:2;13902:21;;;13959:2;13939:18;;;13932:30;13998:26;13993:2;13978:18;;13971:54;14057:2;14042:18;;13718:348::o;15617:349::-;15819:2;15801:21;;;15858:2;15838:18;;;15831:30;15897:27;15892:2;15877:18;;15870:55;15957:2;15942:18;;15617:349::o;16729:356::-;16931:2;16913:21;;;16950:18;;;16943:30;17009:34;17004:2;16989:18;;16982:62;17076:2;17061:18;;16729:356::o;20088:415::-;20290:2;20272:21;;;20329:2;20309:18;;;20302:30;20368:34;20363:2;20348:18;;20341:62;-1:-1:-1;;;20434:2:1;20419:18;;20412:49;20493:3;20478:19;;20088:415::o;22848:355::-;23050:2;23032:21;;;23089:2;23069:18;;;23062:30;23128:33;23123:2;23108:18;;23101:61;23194:2;23179:18;;22848:355::o;24395:399::-;24597:2;24579:21;;;24636:2;24616:18;;;24609:30;24675:34;24670:2;24655:18;;24648:62;-1:-1:-1;;;24741:2:1;24726:18;;24719:33;24784:3;24769:19;;24395:399::o;24981:128::-;25021:3;25052:1;25048:6;25045:1;25042:13;25039:39;;;25058:18;;:::i;:::-;-1:-1:-1;25094:9:1;;24981:128::o;25114:120::-;25154:1;25180;25170:35;;25185:18;;:::i;:::-;-1:-1:-1;25219:9:1;;25114:120::o;25239:168::-;25279:7;25345:1;25341;25337:6;25333:14;25330:1;25327:21;25322:1;25315:9;25308:17;25304:45;25301:71;;;25352:18;;:::i;:::-;-1:-1:-1;25392:9:1;;25239:168::o;25412:125::-;25452:4;25480:1;25477;25474:8;25471:34;;;25485:18;;:::i;:::-;-1:-1:-1;25522:9:1;;25412:125::o;25542:258::-;25614:1;25624:113;25638:6;25635:1;25632:13;25624:113;;;25714:11;;;25708:18;25695:11;;;25688:39;25660:2;25653:10;25624:113;;;25755:6;25752:1;25749:13;25746:48;;;-1:-1:-1;;25790:1:1;25772:16;;25765:27;25542:258::o;25805:380::-;25884:1;25880:12;;;;25927;;;25948:61;;26002:4;25994:6;25990:17;25980:27;;25948:61;26055:2;26047:6;26044:14;26024:18;26021:38;26018:161;;;26101:10;26096:3;26092:20;26089:1;26082:31;26136:4;26133:1;26126:15;26164:4;26161:1;26154:15;26018:161;;25805:380;;;:::o;26190:135::-;26229:3;-1:-1:-1;;26250:17:1;;26247:43;;;26270:18;;:::i;:::-;-1:-1:-1;26317:1:1;26306:13;;26190:135::o;26330:112::-;26362:1;26388;26378:35;;26393:18;;:::i;:::-;-1:-1:-1;26427:9:1;;26330:112::o;26447:127::-;26508:10;26503:3;26499:20;26496:1;26489:31;26539:4;26536:1;26529:15;26563:4;26560:1;26553:15;26579:127;26640:10;26635:3;26631:20;26628:1;26621:31;26671:4;26668:1;26661:15;26695:4;26692:1;26685:15;26711:127;26772:10;26767:3;26763:20;26760:1;26753:31;26803:4;26800:1;26793:15;26827:4;26824:1;26817:15;26843:127;26904:10;26899:3;26895:20;26892:1;26885:31;26935:4;26932:1;26925:15;26959:4;26956:1;26949:15;26975:118;27061:5;27054:13;27047:21;27040:5;27037:32;27027:60;;27083:1;27080;27073:12;27098:131;-1:-1:-1;;;;;;27172:32:1;;27162:43;;27152:71;;27219:1;27216;27209:12

Swarm Source

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