ETH Price: $3,080.40 (+3.68%)
Gas: 12 Gwei

Zombie Mob Secret Society (ZMSS)
 

Overview

TokenID

2849

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zombie Mob Secret Society is the industry’s first fully animated 3D NFT collection that features a protagonist that can walk, strut, run, flip, dance, and fly; following Zinu, the original Zombie, as he journeys across the Zombieverse. With a complex and compelling storyline f...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZombieMobSecretSociety

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-24
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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



pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: ZombieMobSecretSociety.sol


pragma solidity ^0.8.0;







/**
 *
 * Zombie Mob Secret Society
 *
 */
contract ZombieMobSecretSociety is
    Ownable,
    ERC721,
    ERC721Burnable,
    ERC721Pausable
{
    using SafeMath for uint256;
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIds;
    Counters.Counter private _totalSupply;

    // Base token uri
    string private baseTokenURI; // baseTokenURI can point to IPFS folder like ipfs://{cid}/
    string private uriSuffix = '.json';
    string private hiddenMetadata = 'hidden';

    // Wallet addresses
    address private marketingWallet = 0x10cdEe5761B6Ddf4cf9a51d965Dae5823bC95CC6;
    address private devWallet = 0x64BE935c04ad0b09155f0af5B9cd9bCfb3D9E59E;

    // Royalties address
    address private royaltyAddress;

    // Royalties basis points (percentage using 2 decimals - 10000 = 100, 0 = 0)
    uint256 private royaltyBasisPoints = 1000; // 10%

    // Token info
    string public constant TOKEN_NAME = "Zombie Mob Secret Society";
    string public constant TOKEN_SYMBOL = "ZMSS";
    uint256 public constant TOTAL_TOKENS = 10000;

    // Mint costs and max amounts 
    uint256 public earlyAccessMintCost = .5 ether;
    uint256 public startingDutchAuctionMintCost = .4 ether;
    uint256 public endingDutchAuctionMintCost = .1 ether;
    uint256 public maxWalletAmount = 10;

    // Early access/Dutch auction sales active
    bool public earlyAccessActive;
    bool public dutchAuctionActive;
    uint256 public dutchAuctionStartTime;
    uint256 public elapsedDutchAuctionTime;

    // Dutch auction durations
    uint256 public constant DUTCH_AUCTION_DURATION = 12 hours;
    uint256 public constant DUTCH_AUCTION_PRICE_CHANGE = 3 hours;

    // Is revealed boolean
    bool private isRevealed = false;

    //-- Events --//
    event RoyaltyBasisPoints(uint256 indexed _royaltyBasisPoints);

    //-- Modifiers --//

    // Early access active modifier
    modifier whenEarlyAccessActive() {
        require(earlyAccessActive, "Early access is not active");
        _;
    }

    // Early access not active modifier
    modifier whenEarlyAccessNotActive() {
        require(!earlyAccessActive, "Early access is already active");
        _;
    }

    // Dutch auction active modifier
    modifier whenDutchAuctionActive() {
        require(dutchAuctionActive, "Dutch auction is not active");
        _;
    }

    // Dutch auction not active modifier
    modifier whenDutchAuctionNotActive() {
        require(!dutchAuctionActive,"Dutch auction is already active");
        _;
    }

    // Owner or sale active modifier
    modifier whenOwnerOrSaleActive() {
        require(
            owner() == _msgSender() || earlyAccessActive || dutchAuctionActive,
            "Sale is not active"
        );
        _;
    }

    // -- Constructor --//

    constructor(string memory _baseTokenURI) ERC721(TOKEN_NAME, TOKEN_SYMBOL) {
        baseTokenURI = _baseTokenURI;

        royaltyAddress = _msgSender();
    }

    // -- External Functions -- //

    // Start early access 
    function startEarlyAccess() external onlyOwner whenEarlyAccessNotActive whenDutchAuctionNotActive {
        earlyAccessActive = true;
    }

    // End early access
    function endEarlyAccess() external onlyOwner whenEarlyAccessActive {
        earlyAccessActive = false;
    }

    // Start dutch auction
    function startDutchAuction() external onlyOwner whenEarlyAccessNotActive whenDutchAuctionNotActive {
        uint256 startTime = block.timestamp;
        if (elapsedDutchAuctionTime != 0) {
            startTime = startTime.sub(elapsedDutchAuctionTime);
        }

        dutchAuctionStartTime = startTime;
        dutchAuctionActive = true;
        elapsedDutchAuctionTime = 0;
    }

    // Set this value to the block.timestamp you'd like to reset to
    // Created as a way to fast foward in time for timing unit tests
    // Can also be used if needing to pause and restart dutch auction from original start time (returned in startDutchAuction() above)
    function setDutchAuctionStartTime(uint256 _dutchAuctionStartTime)
        external
        onlyOwner
    {
        dutchAuctionStartTime = _dutchAuctionStartTime;
    }

    // Pause dutch auction
    function pauseDutchAuction() external onlyOwner whenDutchAuctionActive {
        dutchAuctionActive = false;
        elapsedDutchAuctionTime = getElapsedDutchAuctionTime();
    }

    // End dutch auction
    function endDutchAuction() external onlyOwner whenDutchAuctionActive {
        dutchAuctionActive = false;
        elapsedDutchAuctionTime = 0;
    }

    // Support royalty info - See {EIP-2981}: https://eips.ethereum.org/EIPS/eip-2981
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (
            royaltyAddress,
            (_salePrice.mul(royaltyBasisPoints)).div(10000)
        );
    }

    //-- Public Functions --//

    // Get elapsed dutch auction time
    function getElapsedDutchAuctionTime() public view returns (uint256) {
        return
            dutchAuctionStartTime > 0
                ? block.timestamp.sub(dutchAuctionStartTime)
                : 0;
    }

    // Mint token - requires amount
    function mint(uint256 _amount) public payable whenOwnerOrSaleActive {
        // Must mint at least one
        require(_amount > 0, "Must mint at least one");
        
        // Check there enough mints left to mint
        require(
            getMintsLeft() >= _amount,
            "Minting would exceed max supply"
        );

        // Set cost to mint
        uint256 costToMint = getMintCost() * _amount;

        // Is owner
        bool isOwner = owner() == _msgSender();

        // If not owner
        if (!isOwner) {
            // Get current address total balance
            uint256 currentWalletAmount = super.balanceOf(_msgSender());

            // Check current token amount and mint amount is not more than max wallet amount
            require(
                currentWalletAmount.add(_amount) <= maxWalletAmount,
                "Requested amount exceeds maximum mint amount per wallet"
            );
        }

        // Check cost to mint, and if enough ETH is passed to mint
        require(costToMint <= msg.value, "ETH amount sent is not correct");

        for (uint256 i = 0; i < _amount; i++) {
            // Increment token id
            _tokenIds.increment();

            // Safe mint
            _safeMint(_msgSender(), _tokenIds.current());

            // Increment total supply
            _totalSupply.increment();
        }

        // Send half mint cost to marketing and dev wallets
        uint256 halfCostToMint = costToMint.div(2);
        Address.sendValue(payable(marketingWallet), halfCostToMint);
        Address.sendValue(payable(devWallet), halfCostToMint);

        // Return unused value
        if (msg.value > costToMint) {
            Address.sendValue(payable(_msgSender()), msg.value.sub(costToMint));
        }
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply.current();
    }

    // Get mints left
    function getMintsLeft() public view returns (uint256) {
        return TOTAL_TOKENS.sub(totalSupply());
    }

    // Get mint cost
    function getMintCost()
        public
        view
        whenOwnerOrSaleActive
        returns (uint256)
    {
        // Is owner
        bool isOwner = owner() == _msgSender();

        // If owner, cost is 0
        if (isOwner) {
            return 0;
        }

        // If early access, pass early access mint cost
        if (earlyAccessActive) {
            return earlyAccessMintCost;
        }

        uint256 elapsed = getElapsedDutchAuctionTime();

        // Setup starting and ending prices
        uint256 startingPrice = startingDutchAuctionMintCost;
        uint256 endingPrice = endingDutchAuctionMintCost;

        uint256 currentPrice = 0;

        // Time logic based on constants
        uint256 auctionStart = 0;
        uint256 auctionEnd = auctionStart.add(DUTCH_AUCTION_DURATION);

        // Dutch auction not active
        require(elapsed >= auctionStart, "Dutch auction not active");

        // Dutch Auction - price descreses dynamically for duration
        if ((elapsed >= auctionStart) && (elapsed < auctionEnd)) {
            uint256 elapsedSinceAuctionStart = elapsed.sub(auctionStart); // Elapsed time since auction start
            uint256 totalPriceDiff = startingPrice.sub(endingPrice); // Total price diff between starting and ending price
            uint256 numPriceChanges = DUTCH_AUCTION_DURATION.div(DUTCH_AUCTION_PRICE_CHANGE).sub(1); // Amount of price changes in the auction
            uint256 priceChangeAmount = totalPriceDiff.div(numPriceChanges); // Amount of price change per instance of price change
            uint256 elapsedRounded = elapsedSinceAuctionStart.div(
                DUTCH_AUCTION_PRICE_CHANGE
            ); // Elapsed time since auction start rounded to auction price change variable
            uint256 totalPriceChangeAmount = priceChangeAmount.mul(
                elapsedRounded
            ); // Total amount of price change based on time

            currentPrice = startingPrice.sub(totalPriceChangeAmount); // Starting price minus total price change

        // Post auction - ending price
        } else if (elapsed >= auctionEnd) {
            currentPrice = endingPrice;
        }

        // Double check current price is not lower than ending price
        return currentPrice < endingPrice ? endingPrice : currentPrice;
    }

    // Set early access mint cost
    function setEarlyAccessMintCost(uint256 _cost) public onlyOwner {
        earlyAccessMintCost = _cost;
    }

    // Set starting dutch auction mint cost
    function setStartingDutchAuctionMintCost(uint256 _cost) public onlyOwner {
        startingDutchAuctionMintCost = _cost;
    }

    // Set ending dutch auction mint cost
    function setEndingDutchAuctionMintCost(uint256 _cost) public onlyOwner {
        endingDutchAuctionMintCost = _cost;
    }

    // Set max wallet amount
    function setMaxWalletAmount(uint256 _amount) public onlyOwner {
        maxWalletAmount = _amount;
    }

    // Set royalty wallet address
    function setRoyaltyAddress(address _address) public onlyOwner {
        royaltyAddress = _address;
    }

    // Set royalty basis points
    function setRoyaltyBasisPoints(uint256 _basisPoints) public onlyOwner {
        royaltyBasisPoints = _basisPoints;
        emit RoyaltyBasisPoints(_basisPoints);
    }

    // Set base URI
    function setBaseURI(string memory _uri) public onlyOwner {
        baseTokenURI = _uri;
    }

    // Set revealed
    function setRevealed(bool _isRevealed) public onlyOwner {
        isRevealed = _isRevealed;
    }

    // Token URI (baseTokenURI + tokenId)
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Nonexistent token");

        if(isRevealed == false) {
            return string(abi.encodePacked(_baseURI(), hiddenMetadata, uriSuffix));
        }

        return string(abi.encodePacked(_baseURI(), _tokenId.toString(), uriSuffix));
    }

    // Contract metadata URI - Support for OpenSea: https://docs.opensea.io/docs/contract-level-metadata
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), "contract", uriSuffix));
    }

    // Override supportsInterface - See {IERC165-supportsInterface}
    function supportsInterface(bytes4 _interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return super.supportsInterface(_interfaceId);
    }

    // Pauses all token transfers - See {ERC721Pausable}
    function pause() public virtual onlyOwner {
        _pause();
    }

    // Unpauses all token transfers - See {ERC721Pausable}
    function unpause() public virtual onlyOwner {
        _unpause();
    }

    //-- Internal Functions --//

    // Get base URI
    function _baseURI() internal view override returns (string memory) {
        return baseTokenURI;
    }

    // Before all token transfer
    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal virtual override(ERC721, ERC721Pausable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_royaltyBasisPoints","type":"uint256"}],"name":"RoyaltyBasisPoints","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DUTCH_AUCTION_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DUTCH_AUCTION_PRICE_CHANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"elapsedDutchAuctionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endEarlyAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endingDutchAuctionMintCost","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":"getElapsedDutchAuctionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintsLeft","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":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dutchAuctionStartTime","type":"uint256"}],"name":"setDutchAuctionStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setEarlyAccessMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setEndingDutchAuctionMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_basisPoints","type":"uint256"}],"name":"setRoyaltyBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setStartingDutchAuctionMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startEarlyAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingDutchAuctionMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b919062000232565b50604080518082019091526006808252653434b23232b760d11b60209092019182526200005891600c9162000232565b50600d80546001600160a01b03199081167310cdee5761b6ddf4cf9a51d965dae5823bc95cc617909155600e80549091167364be935c04ad0b09155f0af5b9cd9bcfb3d9e59e1790556103e86010556706f05b59d3b2000060115567058d15e17628000060125567016345785d8a0000601355600a6014556018805460ff19169055348015620000e757600080fd5b506040516200326d3803806200326d8339810160408190526200010a91620002ee565b6040518060400160405280601981526020017f5a6f6d626965204d6f622053656372657420536f636965747900000000000000815250604051806040016040528060048152602001635a4d535360e01b8152506200017762000171620001de60201b60201c565b620001e2565b81516200018c90600190602085019062000232565b508051620001a290600290602084019062000232565b50506007805460ff19169055508051620001c490600a90602084019062000232565b5050600f80546001600160a01b0319163317905562000407565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200024090620003ca565b90600052602060002090601f016020900481019282620002645760008555620002af565b82601f106200027f57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002af57825182559160200191906001019062000292565b50620002bd929150620002c1565b5090565b5b80821115620002bd5760008155600101620002c2565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200030257600080fd5b82516001600160401b03808211156200031a57600080fd5b818501915085601f8301126200032f57600080fd5b815181811115620003445762000344620002d8565b604051601f8201601f19908116603f011681019083821181831017156200036f576200036f620002d8565b8160405282815288868487010111156200038857600080fd5b600093505b82841015620003ac57848401860151818501870152928501926200038d565b82841115620003be5760008684830101525b98975050505050505050565b600181811c90821680620003df57607f821691505b602082108114156200040157634e487b7160e01b600052602260045260246000fd5b50919050565b612e5680620004176000396000f3fe6080604052600436106103355760003560e01c80636f43531d116101ab578063aa4bde28116100f7578063c4bce71b11610095578063e0a808531161006f578063e0a808531461090a578063e8a3d4851461092a578063e985e9c51461093f578063f2fde38b1461098857600080fd5b8063c4bce71b146108bf578063c87b56dd146108d4578063d727c403146108f457600080fd5b8063b6b81940116100d1578063b6b8194014610854578063b88d4fde14610874578063b8b3791614610894578063c3fb29af146108a957600080fd5b8063aa4bde2814610814578063b45ba7181461082a578063b4bb74611461083f57600080fd5b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146107b657806397d594ee146107cb578063a0712d68146107e1578063a22cb465146107f457600080fd5b80638da5cb5b146107635780638fe676de146107815780639129ead7146107a157600080fd5b80636f43531d146106cf57806370a08231146106e4578063715018a6146107045780637c6c5e6c146107195780638456cb59146107385780638c8c25061461074d57600080fd5b806318160ddd1161028557806338bac9481161022357806342966c68116101fd57806342966c681461065757806355f804b3146106775780635c975abb146106975780636352211e146106af57600080fd5b806338bac9481461060c5780633f4ba83a1461062257806342842e0e1461063757600080fd5b8063244b71191161025f578063244b71191461056757806327a14fc21461057d5780632a55205a1461059d5780632a905318146105dc57600080fd5b806318160ddd146104e957806318821400146104fe57806323b872dd1461054757600080fd5b8063085e1d8c116102f25780630c3a92d3116102cc5780630c3a92d314610485578063128e886c1461049a57806313c738f0146104ba57806315ad0e21146104cf57600080fd5b8063085e1d8c1461042b578063095ea7b31461044f5780630b7abf771461046f57600080fd5b8063019cff851461033a57806301ffc9a71461035c578063057c5e581461039157806306d254da146103b157806306fdde03146103d1578063081812fc146103f3575b600080fd5b34801561034657600080fd5b5061035a610355366004612759565b6109a8565b005b34801561036857600080fd5b5061037c610377366004612788565b6109e0565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b5061035a6103ac366004612759565b6109f1565b3480156103bd57600080fd5b5061035a6103cc3660046127c1565b610a20565b3480156103dd57600080fd5b506103e6610a6c565b6040516103889190612834565b3480156103ff57600080fd5b5061041361040e366004612759565b610afe565b6040516001600160a01b039091168152602001610388565b34801561043757600080fd5b5061044160115481565b604051908152602001610388565b34801561045b57600080fd5b5061035a61046a366004612847565b610b93565b34801561047b57600080fd5b5061044161271081565b34801561049157600080fd5b50610441610ca9565b3480156104a657600080fd5b5061035a6104b5366004612759565b610cc4565b3480156104c657600080fd5b50610441610cf3565b3480156104db57600080fd5b5060155461037c9060ff1681565b3480156104f557600080fd5b50610441610ebd565b34801561050a57600080fd5b506103e66040518060400160405280601981526020017f5a6f6d626965204d6f622053656372657420536f63696574790000000000000081525081565b34801561055357600080fd5b5061035a610562366004612871565b610ec8565b34801561057357600080fd5b5061044160125481565b34801561058957600080fd5b5061035a610598366004612759565b610efa565b3480156105a957600080fd5b506105bd6105b83660046128ad565b610f29565b604080516001600160a01b039093168352602083019190915201610388565b3480156105e857600080fd5b506103e6604051806040016040528060048152602001635a4d535360e01b81525081565b34801561061857600080fd5b50610441612a3081565b34801561062e57600080fd5b5061035a610f64565b34801561064357600080fd5b5061035a610652366004612871565b610f98565b34801561066357600080fd5b5061035a610672366004612759565b610fb3565b34801561068357600080fd5b5061035a61069236600461295b565b61102d565b3480156106a357600080fd5b5060075460ff1661037c565b3480156106bb57600080fd5b506104136106ca366004612759565b61106e565b3480156106db57600080fd5b5061035a6110e5565b3480156106f057600080fd5b506104416106ff3660046127c1565b61116d565b34801561071057600080fd5b5061035a6111f4565b34801561072557600080fd5b5060155461037c90610100900460ff1681565b34801561074457600080fd5b5061035a611228565b34801561075957600080fd5b5061044161a8c081565b34801561076f57600080fd5b506000546001600160a01b0316610413565b34801561078d57600080fd5b5061035a61079c366004612759565b61125a565b3480156107ad57600080fd5b5061035a611289565b3480156107c257600080fd5b506103e6611322565b3480156107d757600080fd5b5061044160175481565b61035a6107ef366004612759565b611331565b34801561080057600080fd5b5061035a61080f3660046129b4565b611609565b34801561082057600080fd5b5061044160145481565b34801561083657600080fd5b5061035a6116ce565b34801561084b57600080fd5b5061035a6117d7565b34801561086057600080fd5b5061035a61086f366004612759565b6118bb565b34801561088057600080fd5b5061035a61088f3660046129e7565b611918565b3480156108a057600080fd5b5061035a61194a565b3480156108b557600080fd5b5061044160165481565b3480156108cb57600080fd5b506104416119dd565b3480156108e057600080fd5b506103e66108ef366004612759565b6119fc565b34801561090057600080fd5b5061044160135481565b34801561091657600080fd5b5061035a610925366004612a63565b611aba565b34801561093657600080fd5b506103e6611af7565b34801561094b57600080fd5b5061037c61095a366004612a7e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561099457600080fd5b5061035a6109a33660046127c1565b611b28565b6000546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612aa8565b60405180910390fd5b601155565b60006109eb82611bc0565b92915050565b6000546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016109d290612aa8565b601255565b6000546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016109d290612aa8565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610a7b90612add565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa790612add565b8015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b506000908152600560205260409020546001600160a01b031690565b6000610b9e8261106e565b9050806001600160a01b0316836001600160a01b03161415610c0c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d2565b336001600160a01b0382161480610c285750610c28813361095a565b610c9a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109d2565b610ca48383611c10565b505050565b6000610cbf610cb6610ebd565b61271090611c7e565b905090565b6000546001600160a01b03163314610cee5760405162461bcd60e51b81526004016109d290612aa8565b601655565b600080546001600160a01b0316331480610d0f575060155460ff165b80610d215750601554610100900460ff165b610d625760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109d2565b6000546001600160a01b031633148015610d7e57600091505090565b60155460ff1615610d9157505060115490565b6000610d9b6119dd565b6012546013549192509060008080610db58161a8c0611c91565b905081861015610e075760405162461bcd60e51b815260206004820152601860248201527f44757463682061756374696f6e206e6f7420616374697665000000000000000060448201526064016109d2565b818610158015610e1657508086105b15610e97576000610e278784611c7e565b90506000610e358787611c7e565b90506000610e526001610e4c61a8c0612a30611c9d565b90611c7e565b90506000610e608383611c9d565b90506000610e7085612a30611c9d565b90506000610e7e8383611ca9565b9050610e8a8b82611c7e565b9850505050505050610ea2565b808610610ea2578392505b838310610eaf5782610eb1565b835b97505050505050505090565b6000610cbf60095490565b610ed3335b82611cb5565b610eef5760405162461bcd60e51b81526004016109d290612b18565b610ca4838383611dac565b6000546001600160a01b03163314610f245760405162461bcd60e51b81526004016109d290612aa8565b601455565b600f5460105460009182916001600160a01b0390911690610f599061271090610f53908790611ca9565b90611c9d565b915091509250929050565b6000546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109d290612aa8565b610f96611f57565b565b610ca483838360405180602001604052806000815250611918565b610fbc33610ecd565b6110215760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109d2565b61102a81611fea565b50565b6000546001600160a01b031633146110575760405162461bcd60e51b81526004016109d290612aa8565b805161106a90600a9060208401906126c0565b5050565b6000818152600360205260408120546001600160a01b0316806109eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109d2565b6000546001600160a01b0316331461110f5760405162461bcd60e51b81526004016109d290612aa8565b60155460ff166111615760405162461bcd60e51b815260206004820152601a60248201527f4561726c7920616363657373206973206e6f742061637469766500000000000060448201526064016109d2565b6015805460ff19169055565b60006001600160a01b0382166111d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109d2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461121e5760405162461bcd60e51b81526004016109d290612aa8565b610f966000612091565b6000546001600160a01b031633146112525760405162461bcd60e51b81526004016109d290612aa8565b610f966120e1565b6000546001600160a01b031633146112845760405162461bcd60e51b81526004016109d290612aa8565b601355565b6000546001600160a01b031633146112b35760405162461bcd60e51b81526004016109d290612aa8565b601554610100900460ff1661130a5760405162461bcd60e51b815260206004820152601b60248201527f44757463682061756374696f6e206973206e6f7420616374697665000000000060448201526064016109d2565b6015805461ff001916905561131d6119dd565b601755565b606060028054610a7b90612add565b6000546001600160a01b031633148061134c575060155460ff165b8061135e5750601554610100900460ff165b61139f5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109d2565b600081116113e85760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b60448201526064016109d2565b806113f1610ca9565b101561143f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016109d2565b60008161144a610cf3565b6114549190612b7f565b90506000336001600160a01b03166114746000546001600160a01b031690565b6001600160a01b0316149050806115165760006114903361116d565b6014549091506114a08286611c91565b11156115145760405162461bcd60e51b815260206004820152603760248201527f52657175657374656420616d6f756e742065786365656473206d6178696d756d60448201527f206d696e7420616d6f756e74207065722077616c6c657400000000000000000060648201526084016109d2565b505b348211156115665760405162461bcd60e51b815260206004820152601e60248201527f45544820616d6f756e742073656e74206973206e6f7420636f7272656374000060448201526064016109d2565b60005b838110156115ab5761157f600880546001019055565b61158b3360085461215c565b611599600980546001019055565b806115a381612b9e565b915050611569565b5060006115b9836002611c9d565b600d549091506115d2906001600160a01b031682612176565b600e546115e8906001600160a01b031682612176565b8234111561160357611603336115fe3486611c7e565b612176565b50505050565b6001600160a01b0382163314156116625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146116f85760405162461bcd60e51b81526004016109d290612aa8565b60155460ff161561174b5760405162461bcd60e51b815260206004820152601e60248201527f4561726c792061636365737320697320616c726561647920616374697665000060448201526064016109d2565b601554610100900460ff16156117a35760405162461bcd60e51b815260206004820152601f60248201527f44757463682061756374696f6e20697320616c7265616479206163746976650060448201526064016109d2565b6017544290156117be576017546117bb908290611c7e565b90505b6016556015805461ff0019166101001790556000601755565b6000546001600160a01b031633146118015760405162461bcd60e51b81526004016109d290612aa8565b60155460ff16156118545760405162461bcd60e51b815260206004820152601e60248201527f4561726c792061636365737320697320616c726561647920616374697665000060448201526064016109d2565b601554610100900460ff16156118ac5760405162461bcd60e51b815260206004820152601f60248201527f44757463682061756374696f6e20697320616c7265616479206163746976650060448201526064016109d2565b6015805460ff19166001179055565b6000546001600160a01b031633146118e55760405162461bcd60e51b81526004016109d290612aa8565b601081905560405181907fce3498f3236889c7e9256b3643e0f7fae5a1b912f2ac0daa1d89236c70b522c690600090a250565b6119223383611cb5565b61193e5760405162461bcd60e51b81526004016109d290612b18565b6116038484848461228f565b6000546001600160a01b031633146119745760405162461bcd60e51b81526004016109d290612aa8565b601554610100900460ff166119cb5760405162461bcd60e51b815260206004820152601b60248201527f44757463682061756374696f6e206973206e6f7420616374697665000000000060448201526064016109d2565b6015805461ff00191690556000601755565b600080601654116119ee5750600090565b601654610cbf904290611c7e565b6000818152600360205260409020546060906001600160a01b0316611a575760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016109d2565b60185460ff16611a9557611a696122c2565b600c600b604051602001611a7f93929190612c53565b6040516020818303038152906040529050919050565b611a9d6122c2565b611aa6836122d1565b600b604051602001611a7f93929190612c84565b6000546001600160a01b03163314611ae45760405162461bcd60e51b81526004016109d290612aa8565b6018805460ff1916911515919091179055565b6060611b016122c2565b600b604051602001611b14929190612cc1565b604051602081830303815290604052905090565b6000546001600160a01b03163314611b525760405162461bcd60e51b81526004016109d290612aa8565b6001600160a01b038116611bb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b61102a81612091565b60006001600160e01b031982166380ac58cd60e01b1480611bf157506001600160e01b03198216635b5e139f60e01b145b806109eb57506301ffc9a760e01b6001600160e01b03198316146109eb565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c458261106e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8a8284612cfb565b9392505050565b6000611c8a8284612d12565b6000611c8a8284612d40565b6000611c8a8284612b7f565b6000818152600360205260408120546001600160a01b0316611d2e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b6000611d398361106e565b9050806001600160a01b0316846001600160a01b03161480611d745750836001600160a01b0316611d6984610afe565b6001600160a01b0316145b80611da457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dbf8261106e565b6001600160a01b031614611e275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109d2565b6001600160a01b038216611e895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b611e948383836123cf565b611e9f600082611c10565b6001600160a01b0383166000908152600460205260408120805460019290611ec8908490612cfb565b90915550506001600160a01b0382166000908152600460205260408120805460019290611ef6908490612d12565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60075460ff16611fa05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d2565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611ff58261106e565b9050612003816000846123cf565b61200e600083611c10565b6001600160a01b0381166000908152600460205260408120805460019290612037908490612cfb565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff16156121275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d2565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611fcd3390565b61106a8282604051806020016040528060008152506123da565b804710156121c65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5050905080610ca45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d2565b61229a848484611dac565b6122a68484848461240d565b6116035760405162461bcd60e51b81526004016109d290612d54565b6060600a8054610a7b90612add565b6060816122f55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231f578061230981612b9e565b91506123189050600a83612d40565b91506122f9565b60008167ffffffffffffffff81111561233a5761233a6128cf565b6040519080825280601f01601f191660200182016040528015612364576020820181803683370190505b5090505b8415611da457612379600183612cfb565b9150612386600a86612da6565b612391906030612d12565b60f81b8183815181106123a6576123a6612dba565b60200101906001600160f81b031916908160001a9053506123c8600a86612d40565b9450612368565b610ca483838361250b565b6123e48383612572565b6123f1600084848461240d565b610ca45760405162461bcd60e51b81526004016109d290612d54565b60006001600160a01b0384163b1561250057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612451903390899088908890600401612dd0565b6020604051808303816000875af192505050801561248c575060408051601f3d908101601f1916820190925261248991810190612e03565b60015b6124e6573d8080156124ba576040519150601f19603f3d011682016040523d82523d6000602084013e6124bf565b606091505b5080516124de5760405162461bcd60e51b81526004016109d290612d54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611da4565b506001949350505050565b60075460ff1615610ca45760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016109d2565b6001600160a01b0382166125c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d2565b6000818152600360205260409020546001600160a01b03161561262d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d2565b612639600083836123cf565b6001600160a01b0382166000908152600460205260408120805460019290612662908490612d12565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126cc90612add565b90600052602060002090601f0160209004810192826126ee5760008555612734565b82601f1061270757805160ff1916838001178555612734565b82800160010185558215612734579182015b82811115612734578251825591602001919060010190612719565b50612740929150612744565b5090565b5b808211156127405760008155600101612745565b60006020828403121561276b57600080fd5b5035919050565b6001600160e01b03198116811461102a57600080fd5b60006020828403121561279a57600080fd5b8135611c8a81612772565b80356001600160a01b03811681146127bc57600080fd5b919050565b6000602082840312156127d357600080fd5b611c8a826127a5565b60005b838110156127f75781810151838201526020016127df565b838111156116035750506000910152565b600081518084526128208160208601602086016127dc565b601f01601f19169290920160200192915050565b602081526000611c8a6020830184612808565b6000806040838503121561285a57600080fd5b612863836127a5565b946020939093013593505050565b60008060006060848603121561288657600080fd5b61288f846127a5565b925061289d602085016127a5565b9150604084013590509250925092565b600080604083850312156128c057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612900576129006128cf565b604051601f8501601f19908116603f01168101908282118183101715612928576129286128cf565b8160405280935085815286868601111561294157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561296d57600080fd5b813567ffffffffffffffff81111561298457600080fd5b8201601f8101841361299557600080fd5b611da4848235602084016128e5565b803580151581146127bc57600080fd5b600080604083850312156129c757600080fd5b6129d0836127a5565b91506129de602084016129a4565b90509250929050565b600080600080608085870312156129fd57600080fd5b612a06856127a5565b9350612a14602086016127a5565b925060408501359150606085013567ffffffffffffffff811115612a3757600080fd5b8501601f81018713612a4857600080fd5b612a57878235602084016128e5565b91505092959194509250565b600060208284031215612a7557600080fd5b611c8a826129a4565b60008060408385031215612a9157600080fd5b612a9a836127a5565b91506129de602084016127a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612af157607f821691505b60208210811415612b1257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b9957612b99612b69565b500290565b6000600019821415612bb257612bb2612b69565b5060010190565b8054600090600181811c9080831680612bd357607f831692505b6020808410821415612bf557634e487b7160e01b600052602260045260246000fd5b818015612c095760018114612c1a57612c47565b60ff19861689528489019650612c47565b60008881526020902060005b86811015612c3f5781548b820152908501908301612c26565b505084890196505b50505050505092915050565b60008451612c658184602089016127dc565b612c7a612c7482850187612bb9565b85612bb9565b9695505050505050565b60008451612c968184602089016127dc565b845190830190612caa8183602089016127dc565b612cb681830186612bb9565b979650505050505050565b60008351612cd38184602088016127dc565b6718dbdb9d1c9858dd60c21b908301908152612cf26008820185612bb9565b95945050505050565b600082821015612d0d57612d0d612b69565b500390565b60008219821115612d2557612d25612b69565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612d4f57612d4f612d2a565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612db557612db5612d2a565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7a90830184612808565b600060208284031215612e1557600080fd5b8151611c8a8161277256fea26469706673582212203a71d14da9a5041e340d2d3c1f3e4c585f142b23db178208c3ba9a408462beeb64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63584e6376504c4234564c70694d786a63774575446a31697961424a6e5578597669696f73506a5833747a322f00000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636f43531d116101ab578063aa4bde28116100f7578063c4bce71b11610095578063e0a808531161006f578063e0a808531461090a578063e8a3d4851461092a578063e985e9c51461093f578063f2fde38b1461098857600080fd5b8063c4bce71b146108bf578063c87b56dd146108d4578063d727c403146108f457600080fd5b8063b6b81940116100d1578063b6b8194014610854578063b88d4fde14610874578063b8b3791614610894578063c3fb29af146108a957600080fd5b8063aa4bde2814610814578063b45ba7181461082a578063b4bb74611461083f57600080fd5b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146107b657806397d594ee146107cb578063a0712d68146107e1578063a22cb465146107f457600080fd5b80638da5cb5b146107635780638fe676de146107815780639129ead7146107a157600080fd5b80636f43531d146106cf57806370a08231146106e4578063715018a6146107045780637c6c5e6c146107195780638456cb59146107385780638c8c25061461074d57600080fd5b806318160ddd1161028557806338bac9481161022357806342966c68116101fd57806342966c681461065757806355f804b3146106775780635c975abb146106975780636352211e146106af57600080fd5b806338bac9481461060c5780633f4ba83a1461062257806342842e0e1461063757600080fd5b8063244b71191161025f578063244b71191461056757806327a14fc21461057d5780632a55205a1461059d5780632a905318146105dc57600080fd5b806318160ddd146104e957806318821400146104fe57806323b872dd1461054757600080fd5b8063085e1d8c116102f25780630c3a92d3116102cc5780630c3a92d314610485578063128e886c1461049a57806313c738f0146104ba57806315ad0e21146104cf57600080fd5b8063085e1d8c1461042b578063095ea7b31461044f5780630b7abf771461046f57600080fd5b8063019cff851461033a57806301ffc9a71461035c578063057c5e581461039157806306d254da146103b157806306fdde03146103d1578063081812fc146103f3575b600080fd5b34801561034657600080fd5b5061035a610355366004612759565b6109a8565b005b34801561036857600080fd5b5061037c610377366004612788565b6109e0565b60405190151581526020015b60405180910390f35b34801561039d57600080fd5b5061035a6103ac366004612759565b6109f1565b3480156103bd57600080fd5b5061035a6103cc3660046127c1565b610a20565b3480156103dd57600080fd5b506103e6610a6c565b6040516103889190612834565b3480156103ff57600080fd5b5061041361040e366004612759565b610afe565b6040516001600160a01b039091168152602001610388565b34801561043757600080fd5b5061044160115481565b604051908152602001610388565b34801561045b57600080fd5b5061035a61046a366004612847565b610b93565b34801561047b57600080fd5b5061044161271081565b34801561049157600080fd5b50610441610ca9565b3480156104a657600080fd5b5061035a6104b5366004612759565b610cc4565b3480156104c657600080fd5b50610441610cf3565b3480156104db57600080fd5b5060155461037c9060ff1681565b3480156104f557600080fd5b50610441610ebd565b34801561050a57600080fd5b506103e66040518060400160405280601981526020017f5a6f6d626965204d6f622053656372657420536f63696574790000000000000081525081565b34801561055357600080fd5b5061035a610562366004612871565b610ec8565b34801561057357600080fd5b5061044160125481565b34801561058957600080fd5b5061035a610598366004612759565b610efa565b3480156105a957600080fd5b506105bd6105b83660046128ad565b610f29565b604080516001600160a01b039093168352602083019190915201610388565b3480156105e857600080fd5b506103e6604051806040016040528060048152602001635a4d535360e01b81525081565b34801561061857600080fd5b50610441612a3081565b34801561062e57600080fd5b5061035a610f64565b34801561064357600080fd5b5061035a610652366004612871565b610f98565b34801561066357600080fd5b5061035a610672366004612759565b610fb3565b34801561068357600080fd5b5061035a61069236600461295b565b61102d565b3480156106a357600080fd5b5060075460ff1661037c565b3480156106bb57600080fd5b506104136106ca366004612759565b61106e565b3480156106db57600080fd5b5061035a6110e5565b3480156106f057600080fd5b506104416106ff3660046127c1565b61116d565b34801561071057600080fd5b5061035a6111f4565b34801561072557600080fd5b5060155461037c90610100900460ff1681565b34801561074457600080fd5b5061035a611228565b34801561075957600080fd5b5061044161a8c081565b34801561076f57600080fd5b506000546001600160a01b0316610413565b34801561078d57600080fd5b5061035a61079c366004612759565b61125a565b3480156107ad57600080fd5b5061035a611289565b3480156107c257600080fd5b506103e6611322565b3480156107d757600080fd5b5061044160175481565b61035a6107ef366004612759565b611331565b34801561080057600080fd5b5061035a61080f3660046129b4565b611609565b34801561082057600080fd5b5061044160145481565b34801561083657600080fd5b5061035a6116ce565b34801561084b57600080fd5b5061035a6117d7565b34801561086057600080fd5b5061035a61086f366004612759565b6118bb565b34801561088057600080fd5b5061035a61088f3660046129e7565b611918565b3480156108a057600080fd5b5061035a61194a565b3480156108b557600080fd5b5061044160165481565b3480156108cb57600080fd5b506104416119dd565b3480156108e057600080fd5b506103e66108ef366004612759565b6119fc565b34801561090057600080fd5b5061044160135481565b34801561091657600080fd5b5061035a610925366004612a63565b611aba565b34801561093657600080fd5b506103e6611af7565b34801561094b57600080fd5b5061037c61095a366004612a7e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561099457600080fd5b5061035a6109a33660046127c1565b611b28565b6000546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612aa8565b60405180910390fd5b601155565b60006109eb82611bc0565b92915050565b6000546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016109d290612aa8565b601255565b6000546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016109d290612aa8565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610a7b90612add565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa790612add565b8015610af45780601f10610ac957610100808354040283529160200191610af4565b820191906000526020600020905b815481529060010190602001808311610ad757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b506000908152600560205260409020546001600160a01b031690565b6000610b9e8261106e565b9050806001600160a01b0316836001600160a01b03161415610c0c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d2565b336001600160a01b0382161480610c285750610c28813361095a565b610c9a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109d2565b610ca48383611c10565b505050565b6000610cbf610cb6610ebd565b61271090611c7e565b905090565b6000546001600160a01b03163314610cee5760405162461bcd60e51b81526004016109d290612aa8565b601655565b600080546001600160a01b0316331480610d0f575060155460ff165b80610d215750601554610100900460ff165b610d625760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109d2565b6000546001600160a01b031633148015610d7e57600091505090565b60155460ff1615610d9157505060115490565b6000610d9b6119dd565b6012546013549192509060008080610db58161a8c0611c91565b905081861015610e075760405162461bcd60e51b815260206004820152601860248201527f44757463682061756374696f6e206e6f7420616374697665000000000000000060448201526064016109d2565b818610158015610e1657508086105b15610e97576000610e278784611c7e565b90506000610e358787611c7e565b90506000610e526001610e4c61a8c0612a30611c9d565b90611c7e565b90506000610e608383611c9d565b90506000610e7085612a30611c9d565b90506000610e7e8383611ca9565b9050610e8a8b82611c7e565b9850505050505050610ea2565b808610610ea2578392505b838310610eaf5782610eb1565b835b97505050505050505090565b6000610cbf60095490565b610ed3335b82611cb5565b610eef5760405162461bcd60e51b81526004016109d290612b18565b610ca4838383611dac565b6000546001600160a01b03163314610f245760405162461bcd60e51b81526004016109d290612aa8565b601455565b600f5460105460009182916001600160a01b0390911690610f599061271090610f53908790611ca9565b90611c9d565b915091509250929050565b6000546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109d290612aa8565b610f96611f57565b565b610ca483838360405180602001604052806000815250611918565b610fbc33610ecd565b6110215760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109d2565b61102a81611fea565b50565b6000546001600160a01b031633146110575760405162461bcd60e51b81526004016109d290612aa8565b805161106a90600a9060208401906126c0565b5050565b6000818152600360205260408120546001600160a01b0316806109eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109d2565b6000546001600160a01b0316331461110f5760405162461bcd60e51b81526004016109d290612aa8565b60155460ff166111615760405162461bcd60e51b815260206004820152601a60248201527f4561726c7920616363657373206973206e6f742061637469766500000000000060448201526064016109d2565b6015805460ff19169055565b60006001600160a01b0382166111d85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109d2565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461121e5760405162461bcd60e51b81526004016109d290612aa8565b610f966000612091565b6000546001600160a01b031633146112525760405162461bcd60e51b81526004016109d290612aa8565b610f966120e1565b6000546001600160a01b031633146112845760405162461bcd60e51b81526004016109d290612aa8565b601355565b6000546001600160a01b031633146112b35760405162461bcd60e51b81526004016109d290612aa8565b601554610100900460ff1661130a5760405162461bcd60e51b815260206004820152601b60248201527f44757463682061756374696f6e206973206e6f7420616374697665000000000060448201526064016109d2565b6015805461ff001916905561131d6119dd565b601755565b606060028054610a7b90612add565b6000546001600160a01b031633148061134c575060155460ff165b8061135e5750601554610100900460ff165b61139f5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016109d2565b600081116113e85760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b60448201526064016109d2565b806113f1610ca9565b101561143f5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016109d2565b60008161144a610cf3565b6114549190612b7f565b90506000336001600160a01b03166114746000546001600160a01b031690565b6001600160a01b0316149050806115165760006114903361116d565b6014549091506114a08286611c91565b11156115145760405162461bcd60e51b815260206004820152603760248201527f52657175657374656420616d6f756e742065786365656473206d6178696d756d60448201527f206d696e7420616d6f756e74207065722077616c6c657400000000000000000060648201526084016109d2565b505b348211156115665760405162461bcd60e51b815260206004820152601e60248201527f45544820616d6f756e742073656e74206973206e6f7420636f7272656374000060448201526064016109d2565b60005b838110156115ab5761157f600880546001019055565b61158b3360085461215c565b611599600980546001019055565b806115a381612b9e565b915050611569565b5060006115b9836002611c9d565b600d549091506115d2906001600160a01b031682612176565b600e546115e8906001600160a01b031682612176565b8234111561160357611603336115fe3486611c7e565b612176565b50505050565b6001600160a01b0382163314156116625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146116f85760405162461bcd60e51b81526004016109d290612aa8565b60155460ff161561174b5760405162461bcd60e51b815260206004820152601e60248201527f4561726c792061636365737320697320616c726561647920616374697665000060448201526064016109d2565b601554610100900460ff16156117a35760405162461bcd60e51b815260206004820152601f60248201527f44757463682061756374696f6e20697320616c7265616479206163746976650060448201526064016109d2565b6017544290156117be576017546117bb908290611c7e565b90505b6016556015805461ff0019166101001790556000601755565b6000546001600160a01b031633146118015760405162461bcd60e51b81526004016109d290612aa8565b60155460ff16156118545760405162461bcd60e51b815260206004820152601e60248201527f4561726c792061636365737320697320616c726561647920616374697665000060448201526064016109d2565b601554610100900460ff16156118ac5760405162461bcd60e51b815260206004820152601f60248201527f44757463682061756374696f6e20697320616c7265616479206163746976650060448201526064016109d2565b6015805460ff19166001179055565b6000546001600160a01b031633146118e55760405162461bcd60e51b81526004016109d290612aa8565b601081905560405181907fce3498f3236889c7e9256b3643e0f7fae5a1b912f2ac0daa1d89236c70b522c690600090a250565b6119223383611cb5565b61193e5760405162461bcd60e51b81526004016109d290612b18565b6116038484848461228f565b6000546001600160a01b031633146119745760405162461bcd60e51b81526004016109d290612aa8565b601554610100900460ff166119cb5760405162461bcd60e51b815260206004820152601b60248201527f44757463682061756374696f6e206973206e6f7420616374697665000000000060448201526064016109d2565b6015805461ff00191690556000601755565b600080601654116119ee5750600090565b601654610cbf904290611c7e565b6000818152600360205260409020546060906001600160a01b0316611a575760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016109d2565b60185460ff16611a9557611a696122c2565b600c600b604051602001611a7f93929190612c53565b6040516020818303038152906040529050919050565b611a9d6122c2565b611aa6836122d1565b600b604051602001611a7f93929190612c84565b6000546001600160a01b03163314611ae45760405162461bcd60e51b81526004016109d290612aa8565b6018805460ff1916911515919091179055565b6060611b016122c2565b600b604051602001611b14929190612cc1565b604051602081830303815290604052905090565b6000546001600160a01b03163314611b525760405162461bcd60e51b81526004016109d290612aa8565b6001600160a01b038116611bb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b61102a81612091565b60006001600160e01b031982166380ac58cd60e01b1480611bf157506001600160e01b03198216635b5e139f60e01b145b806109eb57506301ffc9a760e01b6001600160e01b03198316146109eb565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c458261106e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c8a8284612cfb565b9392505050565b6000611c8a8284612d12565b6000611c8a8284612d40565b6000611c8a8284612b7f565b6000818152600360205260408120546001600160a01b0316611d2e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b6000611d398361106e565b9050806001600160a01b0316846001600160a01b03161480611d745750836001600160a01b0316611d6984610afe565b6001600160a01b0316145b80611da457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611dbf8261106e565b6001600160a01b031614611e275760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109d2565b6001600160a01b038216611e895760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b611e948383836123cf565b611e9f600082611c10565b6001600160a01b0383166000908152600460205260408120805460019290611ec8908490612cfb565b90915550506001600160a01b0382166000908152600460205260408120805460019290611ef6908490612d12565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60075460ff16611fa05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d2565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611ff58261106e565b9050612003816000846123cf565b61200e600083611c10565b6001600160a01b0381166000908152600460205260408120805460019290612037908490612cfb565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff16156121275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d2565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611fcd3390565b61106a8282604051806020016040528060008152506123da565b804710156121c65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109d2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5050905080610ca45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109d2565b61229a848484611dac565b6122a68484848461240d565b6116035760405162461bcd60e51b81526004016109d290612d54565b6060600a8054610a7b90612add565b6060816122f55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561231f578061230981612b9e565b91506123189050600a83612d40565b91506122f9565b60008167ffffffffffffffff81111561233a5761233a6128cf565b6040519080825280601f01601f191660200182016040528015612364576020820181803683370190505b5090505b8415611da457612379600183612cfb565b9150612386600a86612da6565b612391906030612d12565b60f81b8183815181106123a6576123a6612dba565b60200101906001600160f81b031916908160001a9053506123c8600a86612d40565b9450612368565b610ca483838361250b565b6123e48383612572565b6123f1600084848461240d565b610ca45760405162461bcd60e51b81526004016109d290612d54565b60006001600160a01b0384163b1561250057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612451903390899088908890600401612dd0565b6020604051808303816000875af192505050801561248c575060408051601f3d908101601f1916820190925261248991810190612e03565b60015b6124e6573d8080156124ba576040519150601f19603f3d011682016040523d82523d6000602084013e6124bf565b606091505b5080516124de5760405162461bcd60e51b81526004016109d290612d54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611da4565b506001949350505050565b60075460ff1615610ca45760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016109d2565b6001600160a01b0382166125c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d2565b6000818152600360205260409020546001600160a01b03161561262d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d2565b612639600083836123cf565b6001600160a01b0382166000908152600460205260408120805460019290612662908490612d12565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126cc90612add565b90600052602060002090601f0160209004810192826126ee5760008555612734565b82601f1061270757805160ff1916838001178555612734565b82800160010185558215612734579182015b82811115612734578251825591602001919060010190612719565b50612740929150612744565b5090565b5b808211156127405760008155600101612745565b60006020828403121561276b57600080fd5b5035919050565b6001600160e01b03198116811461102a57600080fd5b60006020828403121561279a57600080fd5b8135611c8a81612772565b80356001600160a01b03811681146127bc57600080fd5b919050565b6000602082840312156127d357600080fd5b611c8a826127a5565b60005b838110156127f75781810151838201526020016127df565b838111156116035750506000910152565b600081518084526128208160208601602086016127dc565b601f01601f19169290920160200192915050565b602081526000611c8a6020830184612808565b6000806040838503121561285a57600080fd5b612863836127a5565b946020939093013593505050565b60008060006060848603121561288657600080fd5b61288f846127a5565b925061289d602085016127a5565b9150604084013590509250925092565b600080604083850312156128c057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612900576129006128cf565b604051601f8501601f19908116603f01168101908282118183101715612928576129286128cf565b8160405280935085815286868601111561294157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561296d57600080fd5b813567ffffffffffffffff81111561298457600080fd5b8201601f8101841361299557600080fd5b611da4848235602084016128e5565b803580151581146127bc57600080fd5b600080604083850312156129c757600080fd5b6129d0836127a5565b91506129de602084016129a4565b90509250929050565b600080600080608085870312156129fd57600080fd5b612a06856127a5565b9350612a14602086016127a5565b925060408501359150606085013567ffffffffffffffff811115612a3757600080fd5b8501601f81018713612a4857600080fd5b612a57878235602084016128e5565b91505092959194509250565b600060208284031215612a7557600080fd5b611c8a826129a4565b60008060408385031215612a9157600080fd5b612a9a836127a5565b91506129de602084016127a5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612af157607f821691505b60208210811415612b1257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b9957612b99612b69565b500290565b6000600019821415612bb257612bb2612b69565b5060010190565b8054600090600181811c9080831680612bd357607f831692505b6020808410821415612bf557634e487b7160e01b600052602260045260246000fd5b818015612c095760018114612c1a57612c47565b60ff19861689528489019650612c47565b60008881526020902060005b86811015612c3f5781548b820152908501908301612c26565b505084890196505b50505050505092915050565b60008451612c658184602089016127dc565b612c7a612c7482850187612bb9565b85612bb9565b9695505050505050565b60008451612c968184602089016127dc565b845190830190612caa8183602089016127dc565b612cb681830186612bb9565b979650505050505050565b60008351612cd38184602088016127dc565b6718dbdb9d1c9858dd60c21b908301908152612cf26008820185612bb9565b95945050505050565b600082821015612d0d57612d0d612b69565b500390565b60008219821115612d2557612d25612b69565b500190565b634e487b7160e01b600052601260045260246000fd5b600082612d4f57612d4f612d2a565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612db557612db5612d2a565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7a90830184612808565b600060208284031215612e1557600080fd5b8151611c8a8161277256fea26469706673582212203a71d14da9a5041e340d2d3c1f3e4c585f142b23db178208c3ba9a408462beeb64736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63584e6376504c4234564c70694d786a63774575446a31697961424a6e5578597669696f73506a5833747a322f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmcXNcvPLB4VLpiMxjcwEuDj1iyaBJnUxYviiosPjX3tz2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d63584e6376504c4234564c70694d786a63774575446a31
Arg [3] : 697961424a6e5578597669696f73506a5833747a322f00000000000000000000


Deployed Bytecode Sourcemap

47391:12896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57322:110;;;;;;;;;;-1:-1:-1;57322:110:0;;;;;:::i;:::-;;:::i;:::-;;59356:213;;;;;;;;;;-1:-1:-1;59356:213:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;59356:213:0;;;;;;;;57485:128;;;;;;;;;;-1:-1:-1;57485:128:0;;;;;:::i;:::-;;:::i;57975:106::-;;;;;;;;;;-1:-1:-1;57975:106:0;;;;;:::i;:::-;;:::i;34495:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36054:221::-;;;;;;;;;;-1:-1:-1;36054:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;36054:221:0;1897:203:1;48525:45:0;;;;;;;;;;;;;;;;;;;2251:25:1;;;2239:2;2224:18;48525:45:0;2105:177:1;35577:411:0;;;;;;;;;;-1:-1:-1;35577:411:0;;;;;:::i;:::-;;:::i;48436:44::-;;;;;;;;;;;;48475:5;48436:44;;54762:111;;;;;;;;;;;;;:::i;51504:173::-;;;;;;;;;;-1:-1:-1;51504:173:0;;;;;:::i;:::-;;:::i;54903:2376::-;;;;;;;;;;;;;:::i;48789:29::-;;;;;;;;;;-1:-1:-1;48789:29:0;;;;;;;;54630:101;;;;;;;;;;;;;:::i;48315:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36944:339;;;;;;;;;;-1:-1:-1;36944:339:0;;;;;:::i;:::-;;:::i;48577:54::-;;;;;;;;;;;;;;;;57826:106;;;;;;;;;;-1:-1:-1;57826:106:0;;;;;:::i;:::-;;:::i;52175:274::-;;;;;;;;;;-1:-1:-1;52175:274:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3324:32:1;;;3306:51;;3388:2;3373:18;;3366:34;;;;3279:18;52175:274:0;3132::1;48385:44:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48385:44:0;;;;;49048:60;;;;;;;;;;;;49101:7;49048:60;;59772:73;;;;;;;;;;;;;:::i;37354:185::-;;;;;;;;;;-1:-1:-1;37354:185:0;;;;;:::i;:::-;;:::i;47011:245::-;;;;;;;;;;-1:-1:-1;47011:245:0;;;;;:::i;:::-;;:::i;58321:95::-;;;;;;;;;;-1:-1:-1;58321:95:0;;;;;:::i;:::-;;:::i;14628:86::-;;;;;;;;;;-1:-1:-1;14699:7:0;;;;14628:86;;34189:239;;;;;;;;;;-1:-1:-1;34189:239:0;;;;;:::i;:::-;;:::i;50680:111::-;;;;;;;;;;;;;:::i;33919:208::-;;;;;;;;;;-1:-1:-1;33919:208:0;;;;;:::i;:::-;;:::i;12925:94::-;;;;;;;;;;;;;:::i;48825:30::-;;;;;;;;;;-1:-1:-1;48825:30:0;;;;;;;;;;;59635:69;;;;;;;;;;;;;:::i;48984:57::-;;;;;;;;;;;;49033:8;48984:57;;12274:87;;;;;;;;;;-1:-1:-1;12320:7:0;12347:6;-1:-1:-1;;;;;12347:6:0;12274:87;;57664:124;;;;;;;;;;-1:-1:-1;57664:124:0;;;;;:::i;:::-;;:::i;51713:181::-;;;;;;;;;;;;;:::i;34664:104::-;;;;;;;;;;;;;:::i;48905:38::-;;;;;;;;;;;;;;;;52790:1832;;;;;;:::i;:::-;;:::i;36347:295::-;;;;;;;;;;-1:-1:-1;36347:295:0;;;;;:::i;:::-;;:::i;48697:35::-;;;;;;;;;;;;;;;;50827:394;;;;;;;;;;;;;:::i;50506:141::-;;;;;;;;;;;;;:::i;58122:170::-;;;;;;;;;;-1:-1:-1;58122:170:0;;;;;:::i;:::-;;:::i;37610:328::-;;;;;;;;;;-1:-1:-1;37610:328:0;;;;;:::i;:::-;;:::i;51928:152::-;;;;;;;;;;;;;:::i;48862:36::-;;;;;;;;;;;;;;;;52530:215;;;;;;;;;;;;;:::i;58595:426::-;;;;;;;;;;-1:-1:-1;58595:426:0;;;;;:::i;:::-;;:::i;48638:52::-;;;;;;;;;;;;;;;;58445:99;;;;;;;;;;-1:-1:-1;58445:99:0;;;;;:::i;:::-;;:::i;59135:144::-;;;;;;;;;;;;;:::i;36713:164::-;;;;;;;;;;-1:-1:-1;36713:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36834:25:0;;;36810:4;36834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36713:164;13174:192;;;;;;;;;;-1:-1:-1;13174:192:0;;;;;:::i;:::-;;:::i;57322:110::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;;;;;;;;;57397:19:::1;:27:::0;57322:110::o;59356:213::-;59495:4;59524:37;59548:12;59524:23;:37::i;:::-;59517:44;59356:213;-1:-1:-1;;59356:213:0:o;57485:128::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;57569:28:::1;:36:::0;57485:128::o;57975:106::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;58048:14:::1;:25:::0;;-1:-1:-1;;;;;;58048:25:0::1;-1:-1:-1::0;;;;;58048:25:0;;;::::1;::::0;;;::::1;::::0;;57975:106::o;34495:100::-;34549:13;34582:5;34575:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34495:100;:::o;36054:221::-;36130:7;39537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39537:16:0;36150:73;;;;-1:-1:-1;;;36150:73:0;;7130:2:1;36150:73:0;;;7112:21:1;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:42;7311:19;;36150:73:0;6928:408:1;36150:73:0;-1:-1:-1;36243:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36243:24:0;;36054:221::o;35577:411::-;35658:13;35674:23;35689:7;35674:14;:23::i;:::-;35658:39;;35722:5;-1:-1:-1;;;;;35716:11:0;:2;-1:-1:-1;;;;;35716:11:0;;;35708:57;;;;-1:-1:-1;;;35708:57:0;;7543:2:1;35708:57:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;-1:-1:-1;;;7672:18:1;;;7665:31;7713:19;;35708:57:0;7341:397:1;35708:57:0;11142:10;-1:-1:-1;;;;;35800:21:0;;;;:62;;-1:-1:-1;35825:37:0;35842:5;11142:10;36713:164;:::i;35825:37::-;35778:168;;;;-1:-1:-1;;;35778:168:0;;7945:2:1;35778:168:0;;;7927:21:1;7984:2;7964:18;;;7957:30;8023:34;8003:18;;;7996:62;8094:26;8074:18;;;8067:54;8138:19;;35778:168:0;7743:420:1;35778:168:0;35959:21;35968:2;35972:7;35959:8;:21::i;:::-;35647:341;35577:411;;:::o;54762:111::-;54807:7;54834:31;54851:13;:11;:13::i;:::-;48475:5;;54834:16;:31::i;:::-;54827:38;;54762:111;:::o;51504:173::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;51623:21:::1;:46:::0;51504:173::o;54903:2376::-;55005:7;12347:6;;-1:-1:-1;;;;;12347:6:0;11142:10;50099:23;;:44;;-1:-1:-1;50126:17:0;;;;50099:44;:66;;;-1:-1:-1;50147:18:0;;;;;;;50099:66;50077:134;;;;-1:-1:-1;;;50077:134:0;;8370:2:1;50077:134:0;;;8352:21:1;8409:2;8389:18;;;8382:30;-1:-1:-1;;;8428:18:1;;;8421:48;8486:18;;50077:134:0;8168:342:1;50077:134:0;55051:12:::1;12347:6:::0;-1:-1:-1;;;;;12347:6:0;11142:10;55066:23:::1;55134:48:::0;::::1;;;55169:1;55162:8;;;54903:2376:::0;:::o;55134:48::-:1;55255:17;::::0;::::1;;55251:76;;;-1:-1:-1::0;;55296:19:0::1;::::0;54903:2376;:::o;55251:76::-:1;55339:15;55357:28;:26;:28::i;:::-;55467;::::0;55528:26:::1;::::0;55339:46;;-1:-1:-1;55467:28:0;55443:21:::1;::::0;;55702:40:::1;55443:21:::0;49033:8:::1;55702:16;:40::i;:::-;55681:61;;55811:12;55800:7;:23;;55792:60;;;::::0;-1:-1:-1;;;55792:60:0;;8717:2:1;55792:60:0::1;::::0;::::1;8699:21:1::0;8756:2;8736:18;;;8729:30;8795:26;8775:18;;;8768:54;8839:18;;55792:60:0::1;8515:348:1::0;55792:60:0::1;55950:12;55939:7;:23;;55938:51;;;;;55978:10;55968:7;:20;55938:51;55934:1193;;;56006:32;56041:25;:7:::0;56053:12;56041:11:::1;:25::i;:::-;56006:60:::0;-1:-1:-1;56117:22:0::1;56142:30;:13:::0;56160:11;56142:17:::1;:30::i;:::-;56117:55:::0;-1:-1:-1;56241:23:0::1;56267:61;56326:1;56267:54;49033:8;49101:7;56267:26;:54::i;:::-;:58:::0;::::1;:61::i;:::-;56241:87:::0;-1:-1:-1;56385:25:0::1;56413:35;:14:::0;56241:87;56413:18:::1;:35::i;:::-;56385:63:::0;-1:-1:-1;56518:22:0::1;56543:88;:24:::0;49101:7:::1;56543:28;:88::i;:::-;56518:113:::0;-1:-1:-1;56723:30:0::1;56756:69;:17:::0;56518:113;56756:21:::1;:69::i;:::-;56723:102:::0;-1:-1:-1;56903:41:0::1;:13:::0;56723:102;56903:17:::1;:41::i;:::-;56888:56;;55991:1050;;;;;;55934:1193;;;57062:10;57051:7;:21;57047:80;;57104:11;57089:26;;57047:80;57231:11;57216:12;:26;:55;;57259:12;57216:55;;;57245:11;57216:55;57209:62;;;;;;;;;54903:2376:::0;:::o;54630:101::-;54674:7;54701:22;:12;7866:14;;7774:114;36944:339;37139:41;11142:10;37158:12;37172:7;37139:18;:41::i;:::-;37131:103;;;;-1:-1:-1;;;37131:103:0;;;;;;;:::i;:::-;37247:28;37257:4;37263:2;37267:7;37247:9;:28::i;57826:106::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;57899:15:::1;:25:::0;57826:106::o;52175:274::-;52354:14;;52399:18;;52275:16;;;;-1:-1:-1;;;;;52354:14:0;;;;52383:47;;52424:5;;52384:34;;:10;;:14;:34::i;:::-;52383:40;;:47::i;:::-;52332:109;;;;52175:274;;;;;:::o;59772:73::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;59827:10:::1;:8;:10::i;:::-;59772:73::o:0;37354:185::-;37492:39;37509:4;37515:2;37519:7;37492:39;;;;;;;;;;;;:16;:39::i;47011:245::-;47129:41;11142:10;47148:12;11062:98;47129:41;47121:102;;;;-1:-1:-1;;;47121:102:0;;9488:2:1;47121:102:0;;;9470:21:1;9527:2;9507:18;;;9500:30;9566:34;9546:18;;;9539:62;-1:-1:-1;;;9617:18:1;;;9610:46;9673:19;;47121:102:0;9286:412:1;47121:102:0;47234:14;47240:7;47234:5;:14::i;:::-;47011:245;:::o;58321:95::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;58389:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58321:95:::0;:::o;34189:239::-;34261:7;34297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34297:16:0;34332:19;34324:73;;;;-1:-1:-1;;;34324:73:0;;9905:2:1;34324:73:0;;;9887:21:1;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:1;;;10027:39;10083:19;;34324:73:0;9703:405:1;50680:111:0;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;49393:17:::1;::::0;::::1;;49385:56;;;::::0;-1:-1:-1;;;49385:56:0;;10315:2:1;49385:56:0::1;::::0;::::1;10297:21:1::0;10354:2;10334:18;;;10327:30;10393:28;10373:18;;;10366:56;10439:18;;49385:56:0::1;10113:350:1::0;49385:56:0::1;50758:17:::2;:25:::0;;-1:-1:-1;;50758:25:0::2;::::0;;50680:111::o;33919:208::-;33991:7;-1:-1:-1;;;;;34019:19:0;;34011:74;;;;-1:-1:-1;;;34011:74:0;;10670:2:1;34011:74:0;;;10652:21:1;10709:2;10689:18;;;10682:30;10748:34;10728:18;;;10721:62;-1:-1:-1;;;10799:18:1;;;10792:40;10849:19;;34011:74:0;10468:406:1;34011:74:0;-1:-1:-1;;;;;;34103:16:0;;;;;:9;:16;;;;;;;33919:208::o;12925:94::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;12990:21:::1;13008:1;12990:9;:21::i;59635:69::-:0;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;59688:8:::1;:6;:8::i;57664:124::-:0;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;57746:26:::1;:34:::0;57664:124::o;51713:181::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;49737:18:::1;::::0;::::1;::::0;::::1;;;49729:58;;;::::0;-1:-1:-1;;;49729:58:0;;11081:2:1;49729:58:0::1;::::0;::::1;11063:21:1::0;11120:2;11100:18;;;11093:30;11159:29;11139:18;;;11132:57;11206:18;;49729:58:0::1;10879:351:1::0;49729:58:0::1;51795:18:::2;:26:::0;;-1:-1:-1;;51795:26:0::2;::::0;;51858:28:::2;:26;:28::i;:::-;51832:23;:54:::0;51713:181::o;34664:104::-;34720:13;34753:7;34746:14;;;;;:::i;52790:1832::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;50099:23;;:44;;-1:-1:-1;50126:17:0;;;;50099:44;:66;;;-1:-1:-1;50147:18:0;;;;;;;50099:66;50077:134;;;;-1:-1:-1;;;50077:134:0;;8370:2:1;50077:134:0;;;8352:21:1;8409:2;8389:18;;;8382:30;-1:-1:-1;;;8428:18:1;;;8421:48;8486:18;;50077:134:0;8168:342:1;50077:134:0;52922:1:::1;52912:7;:11;52904:46;;;::::0;-1:-1:-1;;;52904:46:0;;11437:2:1;52904:46:0::1;::::0;::::1;11419:21:1::0;11476:2;11456:18;;;11449:30;-1:-1:-1;;;11495:18:1;;;11488:52;11557:18;;52904:46:0::1;11235:346:1::0;52904:46:0::1;53061:7;53043:14;:12;:14::i;:::-;:25;;53021:106;;;::::0;-1:-1:-1;;;53021:106:0;;11788:2:1;53021:106:0::1;::::0;::::1;11770:21:1::0;11827:2;11807:18;;;11800:30;11866:33;11846:18;;;11839:61;11917:18;;53021:106:0::1;11586:355:1::0;53021:106:0::1;53169:18;53206:7;53190:13;:11;:13::i;:::-;:23;;;;:::i;:::-;53169:44:::0;-1:-1:-1;53247:12:0::1;11142:10:::0;-1:-1:-1;;;;;53262:23:0::1;:7;12320::::0;12347:6;-1:-1:-1;;;;;12347:6:0;;12274:87;53262:7:::1;-1:-1:-1::0;;;;;53262:23:0::1;;53247:38;;53328:7;53323:429;;53402:27;53432:29;11142:10:::0;33919:208;:::i;53432:29::-:1;53634:15;::::0;53402:59;;-1:-1:-1;53598:32:0::1;53402:59:::0;53622:7;53598:23:::1;:32::i;:::-;:51;;53572:168;;;::::0;-1:-1:-1;;;53572:168:0;;12453:2:1;53572:168:0::1;::::0;::::1;12435:21:1::0;12492:2;12472:18;;;12465:30;12531:34;12511:18;;;12504:62;12602:25;12582:18;;;12575:53;12645:19;;53572:168:0::1;12251:419:1::0;53572:168:0::1;53337:415;53323:429;53854:9;53840:10;:23;;53832:66;;;::::0;-1:-1:-1;;;53832:66:0;;12877:2:1;53832:66:0::1;::::0;::::1;12859:21:1::0;12916:2;12896:18;;;12889:30;12955:32;12935:18;;;12928:60;13005:18;;53832:66:0::1;12675:354:1::0;53832:66:0::1;53916:9;53911:288;53935:7;53931:1;:11;53911:288;;;53999:21;:9;7985:19:::0;;8003:1;7985:19;;;7896:127;53999:21:::1;54063:44;11142:10:::0;54087:9:::1;7866:14:::0;54063:9:::1;:44::i;:::-;54163:24;:12;7985:19:::0;;8003:1;7985:19;;;7896:127;54163:24:::1;53944:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53911:288;;;-1:-1:-1::0;54272:22:0::1;54297:17;:10:::0;54312:1:::1;54297:14;:17::i;:::-;54351:15;::::0;54272:42;;-1:-1:-1;54325:59:0::1;::::0;-1:-1:-1;;;;;54351:15:0::1;54272:42:::0;54325:17:::1;:59::i;:::-;54421:9;::::0;54395:53:::1;::::0;-1:-1:-1;;;;;54421:9:0::1;54433:14:::0;54395:17:::1;:53::i;:::-;54509:10;54497:9;:22;54493:122;;;54536:67;11142:10:::0;54577:25:::1;:9;54591:10:::0;54577:13:::1;:25::i;:::-;54536:17;:67::i;:::-;52858:1764;;;52790:1832:::0;:::o;36347:295::-;-1:-1:-1;;;;;36450:24:0;;11142:10;36450:24;;36442:62;;;;-1:-1:-1;;;36442:62:0;;13376:2:1;36442:62:0;;;13358:21:1;13415:2;13395:18;;;13388:30;13454:27;13434:18;;;13427:55;13499:18;;36442:62:0;13174:349:1;36442:62:0;11142:10;36517:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36517:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36517:53:0;;;;;;;;;;36586:48;;725:41:1;;;36517:42:0;;11142:10;36586:48;;698:18:1;36586:48:0;;;;;;;36347:295;;:::o;50827:394::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;49566:17:::1;::::0;::::1;;49565:18;49557:61;;;::::0;-1:-1:-1;;;49557:61:0;;13730:2:1;49557:61:0::1;::::0;::::1;13712:21:1::0;13769:2;13749:18;;;13742:30;13808:32;13788:18;;;13781:60;13858:18;;49557:61:0::1;13528:354:1::0;49557:61:0::1;49914:18:::2;::::0;::::2;::::0;::::2;;;49913:19;49905:62;;;::::0;-1:-1:-1;;;49905:62:0;;14089:2:1;49905:62:0::2;::::0;::::2;14071:21:1::0;14128:2;14108:18;;;14101:30;14167:33;14147:18;;;14140:61;14218:18;;49905:62:0::2;13887:355:1::0;49905:62:0::2;50987:23:::3;::::0;50957:15:::3;::::0;50987:28;50983:111:::3;;51058:23;::::0;51044:38:::3;::::0;:9;;:13:::3;:38::i;:::-;51032:50;;50983:111;51106:21;:33:::0;51150:18:::3;:25:::0;;-1:-1:-1;;51150:25:0::3;;;::::0;;;51186:23:::3;:27:::0;50827:394::o;50506:141::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;49566:17:::1;::::0;::::1;;49565:18;49557:61;;;::::0;-1:-1:-1;;;49557:61:0;;13730:2:1;49557:61:0::1;::::0;::::1;13712:21:1::0;13769:2;13749:18;;;13742:30;13808:32;13788:18;;;13781:60;13858:18;;49557:61:0::1;13528:354:1::0;49557:61:0::1;49914:18:::2;::::0;::::2;::::0;::::2;;;49913:19;49905:62;;;::::0;-1:-1:-1;;;49905:62:0;;14089:2:1;49905:62:0::2;::::0;::::2;14071:21:1::0;14128:2;14108:18;;;14101:30;14167:33;14147:18;;;14140:61;14218:18;;49905:62:0::2;13887:355:1::0;49905:62:0::2;50615:17:::3;:24:::0;;-1:-1:-1;;50615:24:0::3;50635:4;50615:24;::::0;;50506:141::o;58122:170::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;58203:18:::1;:33:::0;;;58252:32:::1;::::0;58224:12;;58252:32:::1;::::0;;;::::1;58122:170:::0;:::o;37610:328::-;37785:41;11142:10;37818:7;37785:18;:41::i;:::-;37777:103;;;;-1:-1:-1;;;37777:103:0;;;;;;;:::i;:::-;37891:39;37905:4;37911:2;37915:7;37924:5;37891:13;:39::i;51928:152::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;49737:18:::1;::::0;::::1;::::0;::::1;;;49729:58;;;::::0;-1:-1:-1;;;49729:58:0;;11081:2:1;49729:58:0::1;::::0;::::1;11063:21:1::0;11120:2;11100:18;;;11093:30;11159:29;11139:18;;;11132:57;11206:18;;49729:58:0::1;10879:351:1::0;49729:58:0::1;52008:18:::2;:26:::0;;-1:-1:-1;;52008:26:0::2;::::0;;52029:5:::2;52045:23;:27:::0;51928:152::o;52530:215::-;52589:7;52653:1;52629:21;;:25;:108;;-1:-1:-1;52736:1:0;;54762:111::o;52629:108::-;52694:21;;52674:42;;:15;;:19;:42::i;58595:426::-;39513:4;39537:16;;;:7;:16;;;;;;58714:13;;-1:-1:-1;;;;;39537:16:0;58745:47;;;;-1:-1:-1;;;58745:47:0;;14449:2:1;58745:47:0;;;14431:21:1;14488:2;14468:18;;;14461:30;-1:-1:-1;;;14507:18:1;;;14500:47;14564:18;;58745:47:0;14247:341:1;58745:47:0;58808:10;;;;58805:121;;58875:10;:8;:10::i;:::-;58887:14;58903:9;58858:55;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58844:70;;58595:426;;;:::o;58805:121::-;58969:10;:8;:10::i;:::-;58981:19;:8;:17;:19::i;:::-;59002:9;58952:60;;;;;;;;;;:::i;58445:99::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;58512:10:::1;:24:::0;;-1:-1:-1;;58512:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58445:99::o;59135:144::-;59179:13;59236:10;:8;:10::i;:::-;59260:9;59219:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59205:66;;59135:144;:::o;13174:192::-;12320:7;12347:6;-1:-1:-1;;;;;12347:6:0;11142:10;12494:23;12486:68;;;;-1:-1:-1;;;12486:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13263:22:0;::::1;13255:73;;;::::0;-1:-1:-1;;;13255:73:0;;17426:2:1;13255:73:0::1;::::0;::::1;17408:21:1::0;17465:2;17445:18;;;17438:30;17504:34;17484:18;;;17477:62;-1:-1:-1;;;17555:18:1;;;17548:36;17601:19;;13255:73:0::1;17224:402:1::0;13255:73:0::1;13339:19;13349:8;13339:9;:19::i;33550:305::-:0;33652:4;-1:-1:-1;;;;;;33689:40:0;;-1:-1:-1;;;33689:40:0;;:105;;-1:-1:-1;;;;;;;33746:48:0;;-1:-1:-1;;;33746:48:0;33689:105;:158;;;-1:-1:-1;;;;;;;;;;26629:40:0;;;33811:36;26520:157;43430:174;43505:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43505:29:0;-1:-1:-1;;;;;43505:29:0;;;;;;;;:24;;43559:23;43505:24;43559:14;:23::i;:::-;-1:-1:-1;;;;;43550:46:0;;;;;;;;;;;43430:174;;:::o;3173:98::-;3231:7;3258:5;3262:1;3258;:5;:::i;:::-;3251:12;3173:98;-1:-1:-1;;;3173:98:0:o;2792:::-;2850:7;2877:5;2881:1;2877;:5;:::i;3929:98::-;3987:7;4014:5;4018:1;4014;:5;:::i;3530:98::-;3588:7;3615:5;3619:1;3615;:5;:::i;39742:348::-;39835:4;39537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39537:16:0;39852:73;;;;-1:-1:-1;;;39852:73:0;;18353:2:1;39852:73:0;;;18335:21:1;18392:2;18372:18;;;18365:30;18431:34;18411:18;;;18404:62;-1:-1:-1;;;18482:18:1;;;18475:42;18534:19;;39852:73:0;18151:408:1;39852:73:0;39936:13;39952:23;39967:7;39952:14;:23::i;:::-;39936:39;;40005:5;-1:-1:-1;;;;;39994:16:0;:7;-1:-1:-1;;;;;39994:16:0;;:51;;;;40038:7;-1:-1:-1;;;;;40014:31:0;:20;40026:7;40014:11;:20::i;:::-;-1:-1:-1;;;;;40014:31:0;;39994:51;:87;;;-1:-1:-1;;;;;;36834:25:0;;;36810:4;36834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40049:32;39986:96;39742:348;-1:-1:-1;;;;39742:348:0:o;42734:578::-;42893:4;-1:-1:-1;;;;;42866:31:0;:23;42881:7;42866:14;:23::i;:::-;-1:-1:-1;;;;;42866:31:0;;42858:85;;;;-1:-1:-1;;;42858:85:0;;18766:2:1;42858:85:0;;;18748:21:1;18805:2;18785:18;;;18778:30;18844:34;18824:18;;;18817:62;-1:-1:-1;;;18895:18:1;;;18888:39;18944:19;;42858:85:0;18564:405:1;42858:85:0;-1:-1:-1;;;;;42962:16:0;;42954:65;;;;-1:-1:-1;;;42954:65:0;;19176:2:1;42954:65:0;;;19158:21:1;19215:2;19195:18;;;19188:30;19254:34;19234:18;;;19227:62;-1:-1:-1;;;19305:18:1;;;19298:34;19349:19;;42954:65:0;18974:400:1;42954:65:0;43032:39;43053:4;43059:2;43063:7;43032:20;:39::i;:::-;43136:29;43153:1;43157:7;43136:8;:29::i;:::-;-1:-1:-1;;;;;43178:15:0;;;;;;:9;:15;;;;;:20;;43197:1;;43178:15;:20;;43197:1;;43178:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43209:13:0;;;;;;:9;:13;;;;;:18;;43226:1;;43209:13;:18;;43226:1;;43209:18;:::i;:::-;;;;-1:-1:-1;;43238:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43238:21:0;-1:-1:-1;;;;;43238:21:0;;;;;;;;;43277:27;;43238:16;;43277:27;;;;;;;42734:578;;;:::o;15687:120::-;14699:7;;;;15223:41;;;;-1:-1:-1;;;15223:41:0;;19581:2:1;15223:41:0;;;19563:21:1;19620:2;19600:18;;;19593:30;-1:-1:-1;;;19639:18:1;;;19632:50;19699:18;;15223:41:0;19379:344:1;15223:41:0;15746:7:::1;:15:::0;;-1:-1:-1;;15746:15:0::1;::::0;;15777:22:::1;11142:10:::0;15786:12:::1;15777:22;::::0;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;15777:22:0::1;;;;;;;15687:120::o:0;42037:360::-;42097:13;42113:23;42128:7;42113:14;:23::i;:::-;42097:39;;42149:48;42170:5;42185:1;42189:7;42149:20;:48::i;:::-;42238:29;42255:1;42259:7;42238:8;:29::i;:::-;-1:-1:-1;;;;;42280:16:0;;;;;;:9;:16;;;;;:21;;42300:1;;42280:16;:21;;42300:1;;42280:21;:::i;:::-;;;;-1:-1:-1;;42319:16:0;;;;:7;:16;;;;;;42312:23;;-1:-1:-1;;;;;;42312:23:0;;;42353:36;42327:7;;42319:16;-1:-1:-1;;;;;42353:36:0;;;;;42319:16;;42353:36;42086:311;42037:360;:::o;13374:173::-;13430:16;13449:6;;-1:-1:-1;;;;;13466:17:0;;;-1:-1:-1;;;;;;13466:17:0;;;;;;13499:40;;13449:6;;;;;;;13499:40;;13430:16;13499:40;13419:128;13374:173;:::o;15428:118::-;14699:7;;;;14953:9;14945:38;;;;-1:-1:-1;;;14945:38:0;;19930:2:1;14945:38:0;;;19912:21:1;19969:2;19949:18;;;19942:30;-1:-1:-1;;;19988:18:1;;;19981:46;20044:18;;14945:38:0;19728:340:1;14945:38:0;15488:7:::1;:14:::0;;-1:-1:-1;;15488:14:0::1;15498:4;15488:14;::::0;;15518:20:::1;15525:12;11142:10:::0;;11062:98;40432:110;40508:26;40518:2;40522:7;40508:26;;;;;;;;;;;;:9;:26::i;17902:317::-;18017:6;17992:21;:31;;17984:73;;;;-1:-1:-1;;;17984:73:0;;20275:2:1;17984:73:0;;;20257:21:1;20314:2;20294:18;;;20287:30;20353:31;20333:18;;;20326:59;20402:18;;17984:73:0;20073:353:1;17984:73:0;18071:12;18089:9;-1:-1:-1;;;;;18089:14:0;18111:6;18089:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18070:52;;;18141:7;18133:78;;;;-1:-1:-1;;;18133:78:0;;20843:2:1;18133:78:0;;;20825:21:1;20882:2;20862:18;;;20855:30;20921:34;20901:18;;;20894:62;20992:28;20972:18;;;20965:56;21038:19;;18133:78:0;20641:422:1;38820:315:0;38977:28;38987:4;38993:2;38997:7;38977:9;:28::i;:::-;39024:48;39047:4;39053:2;39057:7;39066:5;39024:22;:48::i;:::-;39016:111;;;;-1:-1:-1;;;39016:111:0;;;;;;;:::i;59910:105::-;59962:13;59995:12;59988:19;;;;;:::i;8678:723::-;8734:13;8955:10;8951:53;;-1:-1:-1;;8982:10:0;;;;;;;;;;;;-1:-1:-1;;;8982:10:0;;;;;8678:723::o;8951:53::-;9029:5;9014:12;9070:78;9077:9;;9070:78;;9103:8;;;;:::i;:::-;;-1:-1:-1;9126:10:0;;-1:-1:-1;9134:2:0;9126:10;;:::i;:::-;;;9070:78;;;9158:19;9190:6;9180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9180:17:0;;9158:39;;9208:154;9215:10;;9208:154;;9242:11;9252:1;9242:11;;:::i;:::-;;-1:-1:-1;9311:10:0;9319:2;9311:5;:10;:::i;:::-;9298:24;;:2;:24;:::i;:::-;9285:39;;9268:6;9275;9268:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9268:56:0;;;;;;;;-1:-1:-1;9339:11:0;9348:2;9339:11;;:::i;:::-;;;9208:154;;60057:227;60228:48;60255:5;60262:3;60267:8;60228:26;:48::i;40769:321::-;40899:18;40905:2;40909:7;40899:5;:18::i;:::-;40950:54;40981:1;40985:2;40989:7;40998:5;40950:22;:54::i;:::-;40928:154;;;;-1:-1:-1;;;40928:154:0;;;;;;;:::i;44169:799::-;44324:4;-1:-1:-1;;;;;44345:13:0;;16903:20;16951:8;44341:620;;44381:72;;-1:-1:-1;;;44381:72:0;;-1:-1:-1;;;;;44381:36:0;;;;;:72;;11142:10;;44432:4;;44438:7;;44447:5;;44381:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44381:72:0;;;;;;;;-1:-1:-1;;44381:72:0;;;;;;;;;;;;:::i;:::-;;;44377:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44623:13:0;;44619:272;;44666:60;;-1:-1:-1;;;44666:60:0;;;;;;;:::i;44619:272::-;44841:6;44835:13;44826:6;44822:2;44818:15;44811:38;44377:529;-1:-1:-1;;;;;;44504:51:0;-1:-1:-1;;;44504:51:0;;-1:-1:-1;44497:58:0;;44341:620;-1:-1:-1;44945:4:0;44169:799;;;;;;:::o;46272:275::-;14699:7;;;;46482:9;46474:65;;;;-1:-1:-1;;;46474:65:0;;22686:2:1;46474:65:0;;;22668:21:1;22725:2;22705:18;;;22698:30;22764:34;22744:18;;;22737:62;-1:-1:-1;;;22815:18:1;;;22808:41;22866:19;;46474:65:0;22484:407:1;41426:382:0;-1:-1:-1;;;;;41506:16:0;;41498:61;;;;-1:-1:-1;;;41498:61:0;;23098:2:1;41498:61:0;;;23080:21:1;;;23117:18;;;23110:30;23176:34;23156:18;;;23149:62;23228:18;;41498:61:0;22896:356:1;41498:61:0;39513:4;39537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39537:16:0;:30;41570:58;;;;-1:-1:-1;;;41570:58:0;;23459:2:1;41570:58:0;;;23441:21:1;23498:2;23478:18;;;23471:30;23537;23517:18;;;23510:58;23585:18;;41570:58:0;23257:352:1;41570:58:0;41641:45;41670:1;41674:2;41678:7;41641:20;:45::i;:::-;-1:-1:-1;;;;;41699:13:0;;;;;;:9;:13;;;;;:18;;41716:1;;41699:13;:18;;41716:1;;41699:18;:::i;:::-;;;;-1:-1:-1;;41728:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41728:21:0;-1:-1:-1;;;;;41728:21:0;;;;;;;;41767:33;;41728:16;;;41767:33;;41728:16;;41767:33;41426:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:173::-;845:20;;-1:-1:-1;;;;;894:31:1;;884:42;;874:70;;940:1;937;930:12;874:70;777:173;;;:::o;955:186::-;1014:6;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1106:29;1125:9;1106:29;:::i;1146:258::-;1218:1;1228:113;1242:6;1239:1;1236:13;1228:113;;;1318:11;;;1312:18;1299:11;;;1292:39;1264:2;1257:10;1228:113;;;1359:6;1356:1;1353:13;1350:48;;;-1:-1:-1;;1394:1:1;1376:16;;1369:27;1146:258::o;1409:::-;1451:3;1489:5;1483:12;1516:6;1511:3;1504:19;1532:63;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1532:63;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:1;1615:39;;;;1656:4;1611:50;;1409:258;-1:-1:-1;;1409:258:1:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:248::-;2947:6;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;-1:-1:-1;;3047:23:1;;;3117:2;3102:18;;;3089:32;;-1:-1:-1;2879:248:1:o;3411:127::-;3472:10;3467:3;3463:20;3460:1;3453:31;3503:4;3500:1;3493:15;3527:4;3524:1;3517:15;3543:632;3608:5;3638:18;3679:2;3671:6;3668:14;3665:40;;;3685:18;;:::i;:::-;3760:2;3754:9;3728:2;3814:15;;-1:-1:-1;;3810:24:1;;;3836:2;3806:33;3802:42;3790:55;;;3860:18;;;3880:22;;;3857:46;3854:72;;;3906:18;;:::i;:::-;3946:10;3942:2;3935:22;3975:6;3966:15;;4005:6;3997;3990:22;4045:3;4036:6;4031:3;4027:16;4024:25;4021:45;;;4062:1;4059;4052:12;4021:45;4112:6;4107:3;4100:4;4092:6;4088:17;4075:44;4167:1;4160:4;4151:6;4143;4139:19;4135:30;4128:41;;;;3543:632;;;;;:::o;4180:451::-;4249:6;4302:2;4290:9;4281:7;4277:23;4273:32;4270:52;;;4318:1;4315;4308:12;4270:52;4358:9;4345:23;4391:18;4383:6;4380:30;4377:50;;;4423:1;4420;4413:12;4377:50;4446:22;;4499:4;4491:13;;4487:27;-1:-1:-1;4477:55:1;;4528:1;4525;4518:12;4477:55;4551:74;4617:7;4612:2;4599:16;4594:2;4590;4586:11;4551:74;:::i;4636:160::-;4701:20;;4757:13;;4750:21;4740:32;;4730:60;;4786:1;4783;4776:12;4801:254;4866:6;4874;4927:2;4915:9;4906:7;4902:23;4898:32;4895:52;;;4943:1;4940;4933:12;4895:52;4966:29;4985:9;4966:29;:::i;:::-;4956:39;;5014:35;5045:2;5034:9;5030:18;5014:35;:::i;:::-;5004:45;;4801:254;;;;;:::o;5060:667::-;5155:6;5163;5171;5179;5232:3;5220:9;5211:7;5207:23;5203:33;5200:53;;;5249:1;5246;5239:12;5200:53;5272:29;5291:9;5272:29;:::i;:::-;5262:39;;5320:38;5354:2;5343:9;5339:18;5320:38;:::i;:::-;5310:48;;5405:2;5394:9;5390:18;5377:32;5367:42;;5460:2;5449:9;5445:18;5432:32;5487:18;5479:6;5476:30;5473:50;;;5519:1;5516;5509:12;5473:50;5542:22;;5595:4;5587:13;;5583:27;-1:-1:-1;5573:55:1;;5624:1;5621;5614:12;5573:55;5647:74;5713:7;5708:2;5695:16;5690:2;5686;5682:11;5647:74;:::i;:::-;5637:84;;;5060:667;;;;;;;:::o;5732:180::-;5788:6;5841:2;5829:9;5820:7;5816:23;5812:32;5809:52;;;5857:1;5854;5847:12;5809:52;5880:26;5896:9;5880:26;:::i;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:356::-;6384:2;6366:21;;;6403:18;;;6396:30;6462:34;6457:2;6442:18;;6435:62;6529:2;6514:18;;6182:356::o;6543:380::-;6622:1;6618:12;;;;6665;;;6686:61;;6740:4;6732:6;6728:17;6718:27;;6686:61;6793:2;6785:6;6782:14;6762:18;6759:38;6756:161;;;6839:10;6834:3;6830:20;6827:1;6820:31;6874:4;6871:1;6864:15;6902:4;6899:1;6892:15;6756:161;;6543:380;;;:::o;8868:413::-;9070:2;9052:21;;;9109:2;9089:18;;;9082:30;9148:34;9143:2;9128:18;;9121:62;-1:-1:-1;;;9214:2:1;9199:18;;9192:47;9271:3;9256:19;;8868:413::o;11946:127::-;12007:10;12002:3;11998:20;11995:1;11988:31;12038:4;12035:1;12028:15;12062:4;12059:1;12052:15;12078:168;12118:7;12184:1;12180;12176:6;12172:14;12169:1;12166:21;12161:1;12154:9;12147:17;12143:45;12140:71;;;12191:18;;:::i;:::-;-1:-1:-1;12231:9:1;;12078:168::o;13034:135::-;13073:3;-1:-1:-1;;13094:17:1;;13091:43;;;13114:18;;:::i;:::-;-1:-1:-1;13161:1:1;13150:13;;13034:135::o;14719:973::-;14804:12;;14769:3;;14859:1;14879:18;;;;14932;;;;14959:61;;15013:4;15005:6;15001:17;14991:27;;14959:61;15039:2;15087;15079:6;15076:14;15056:18;15053:38;15050:161;;;15133:10;15128:3;15124:20;15121:1;15114:31;15168:4;15165:1;15158:15;15196:4;15193:1;15186:15;15050:161;15227:18;15254:104;;;;15372:1;15367:319;;;;15220:466;;15254:104;-1:-1:-1;;15287:24:1;;15275:37;;15332:16;;;;-1:-1:-1;15254:104:1;;15367:319;14666:1;14659:14;;;14703:4;14690:18;;15461:1;15475:165;15489:6;15486:1;15483:13;15475:165;;;15567:14;;15554:11;;;15547:35;15610:16;;;;15504:10;;15475:165;;;15479:3;;15669:6;15664:3;15660:16;15653:23;;15220:466;;;;;;;14719:973;;;;:::o;15697:436::-;15918:3;15956:6;15950:13;15972:53;16018:6;16013:3;16006:4;15998:6;15994:17;15972:53;:::i;:::-;16041:86;16075:51;16118:6;16113:3;16109:16;16101:6;16075:51;:::i;:::-;16067:6;16041:86;:::i;:::-;16034:93;15697:436;-1:-1:-1;;;;;;15697:436:1:o;16138:550::-;16362:3;16400:6;16394:13;16416:53;16462:6;16457:3;16450:4;16442:6;16438:17;16416:53;:::i;:::-;16532:13;;16491:16;;;;16554:57;16532:13;16491:16;16588:4;16576:17;;16554:57;:::i;:::-;16627:55;16672:8;16665:5;16661:20;16653:6;16627:55;:::i;:::-;16620:62;16138:550;-1:-1:-1;;;;;;;16138:550:1:o;16693:526::-;16970:3;17008:6;17002:13;17024:53;17070:6;17065:3;17058:4;17050:6;17046:17;17024:53;:::i;:::-;-1:-1:-1;;;17099:16:1;;;17124:25;;;17165:48;17210:1;17199:13;;17191:6;17165:48;:::i;:::-;17158:55;16693:526;-1:-1:-1;;;;;16693:526:1:o;17631:125::-;17671:4;17699:1;17696;17693:8;17690:34;;;17704:18;;:::i;:::-;-1:-1:-1;17741:9:1;;17631:125::o;17761:128::-;17801:3;17832:1;17828:6;17825:1;17822:13;17819:39;;;17838:18;;:::i;:::-;-1:-1:-1;17874:9:1;;17761:128::o;17894:127::-;17955:10;17950:3;17946:20;17943:1;17936:31;17986:4;17983:1;17976:15;18010:4;18007:1;18000:15;18026:120;18066:1;18092;18082:35;;18097:18;;:::i;:::-;-1:-1:-1;18131:9:1;;18026:120::o;21068:414::-;21270:2;21252:21;;;21309:2;21289:18;;;21282:30;21348:34;21343:2;21328:18;;21321:62;-1:-1:-1;;;21414:2:1;21399:18;;21392:48;21472:3;21457:19;;21068:414::o;21487:112::-;21519:1;21545;21535:35;;21550:18;;:::i;:::-;-1:-1:-1;21584:9:1;;21487:112::o;21604:127::-;21665:10;21660:3;21656:20;21653:1;21646:31;21696:4;21693:1;21686:15;21720:4;21717:1;21710:15;21736:489;-1:-1:-1;;;;;22005:15:1;;;21987:34;;22057:15;;22052:2;22037:18;;22030:43;22104:2;22089:18;;22082:34;;;22152:3;22147:2;22132:18;;22125:31;;;21930:4;;22173:46;;22199:19;;22191:6;22173:46;:::i;22230:249::-;22299:6;22352:2;22340:9;22331:7;22327:23;22323:32;22320:52;;;22368:1;22365;22358:12;22320:52;22400:9;22394:16;22419:30;22443:5;22419:30;:::i

Swarm Source

ipfs://3a71d14da9a5041e340d2d3c1f3e4c585f142b23db178208c3ba9a408462beeb
Loading...
Loading
Loading...
Loading
[ 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.