ETH Price: $3,481.47 (-1.00%)
Gas: 5 Gwei

Token

Steady Stack Titans (SSTITN)
 

Overview

Max Total Supply

2,125 SSTITN

Holders

100

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
870329.eth
Balance
0 SSTITN
0xbf3633ed017339328a7c00a54daef8eb306c103e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Steady Stack NFT aims to be the ultimate hub for investors by raising the bar in NFTs for a more sustainable future.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SteadyStackTitans

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 *
 * @dev original library functions truncated to only needed functions reducing
 * deployed bytecode.
 */
library SafeMath {

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }
}

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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


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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

contract SteadyStackTitans is Ownable, ERC721A, ReentrancyGuard {
  using SafeMath for uint256;
  using Strings for uint256;

  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  uint256 public immutable amountForSaleAndDev;

  uint256 public maxWhitelistMints;
  uint256 public maxPublicMintsPerTxn;

  address payoutWallet1;

  uint256 public saleStartTime;
  uint256 public whitelistStartTime;
  uint256 public whitelistGroupWindow;
  uint256 public minimumWhitelistAllocation;

  uint256 public publicSaleCost;
  uint256 public whitelistSaleCost;

  SteadyStackTitans tokenURILogic;
  SteadyStackTitans upgradeLogic;

  //Using an array of mappings to track whitelist mints for wallets
  mapping(address => uint256) public whitelistMints;

  //Mapping to track NFTs that have gone through an upgrade
  mapping(uint256 => bool) public upgradedNFTs;
  
  bytes32[] _whitelistRootHash;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_
  ) ERC721A("Steady Stack Titans", "SSTITN", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForSaleAndDev = amountForAuctionAndDev_;
    amountForDevs = amountForDevs_;
    require(
      amountForAuctionAndDev_ <= collectionSize_,
      "larger collection size needed"
    );
    publicSaleCost = 0.1 ether;
    whitelistSaleCost = 0.08 ether;
    maxPublicMintsPerTxn = 4;
    whitelistGroupWindow = 3 hours;
  }

  function addToWhitelistRootHash(bytes32 _hash) public onlyOwner{
        _whitelistRootHash.push(_hash);
  }

  function clearWhitelist() external onlyOwner{
    delete _whitelistRootHash;
  }

  function updatePayoutWallet(address newPayoutWallet) external onlyOwner{
    payoutWallet1 = newPayoutWallet;
  }

  function setWhitelistStartTime(uint256 _time) external onlyOwner {
    whitelistStartTime = _time;
  }

  function setSaleStartTime(uint256 _time) external onlyOwner {
    saleStartTime = _time;
  }

  function setWhitelistSaleCost(uint256 _cost) public onlyOwner{
    whitelistSaleCost = _cost;
  }

  function setPublicSaleCost(uint256 _cost) external onlyOwner {
    publicSaleCost = _cost;
  }

   // Merkle leaf validator function for storing whitelists off chain saving massive gas
  function whitelistValidated(address wallet, uint256 index, uint256 amount, bytes32[] memory proof) internal view returns (bool) {

        // Compute the merkle root
        bytes32 node = keccak256(abi.encodePacked(index, wallet, amount));
        uint256 path = index;
        for (uint16 i = 0; i < proof.length; i++) {
            if ((path & 0x01) == 1) {
                node = keccak256(abi.encodePacked(proof[i], node));
            } else {
                node = keccak256(abi.encodePacked(node, proof[i]));
            }
            path /= 2;
        }

        // Check the merkle proof against the root hash array
        for(uint i = 0; i < _whitelistRootHash.length; i++)
        {
            if (node == _whitelistRootHash[i])
            {
                return true;
            }
        }

        return false;
    }

  function publicMint(uint256 quantity) external payable {
    require(saleStartTime != 0 && block.timestamp >= saleStartTime, "sale has not started yet");
    require(totalSupply() + quantity <= amountForSaleAndDev, "not enough remaining reserved for auction to support desired mint amount");
    require(quantity <= maxPublicMintsPerTxn, "Can't mint that many in a single transaction");

    uint256 totalCost = publicSaleCost * quantity;
    _safeMint(_msgSender(), quantity);
    refundIfOver(totalCost);
  }

  function whitelistMint(uint256 quantity, uint256 spotInWhitelist, uint256 maxMints, bytes32[] memory proof) external payable {
    require(whitelistValidated(_msgSender(), spotInWhitelist, maxMints, proof), "You're not on the whitelist");
    require(whitelistStartTime != 0 && block.timestamp >= whitelistStartTime, "The sale has not started yet");
    require(totalSupply() + quantity <= amountForSaleAndDev, "not enough remaining reserved for auction to support desired mint amount");
    require(whitelistMints[_msgSender()] + quantity <= maxMints, "Not enough whitelist mints available");

    whitelistMints[_msgSender()] += quantity;

    _safeMint(_msgSender(), quantity);
    refundIfOver(whitelistSaleCost * quantity);
  }

  //Contract calls upgrade logic to setup an preconfiguration needed before setting the mapping to true
  function upgradeNFT(uint256 tokenId) public {
    require(upgradedNFTs[tokenId] == false, "Token already upgraded");
    upgradeLogic.upgradeNFT(tokenId);
  }

  function setMaxPublicMints(uint256 _max) onlyOwner external {
    maxPublicMintsPerTxn = _max;
  }

  //After the upgrade logic sets any necessary preconfiguration it sets the value to true for the input tokenId
  function setNFTUpgraded(uint256 tokenId) external {
    require(msg.sender == address(upgradeLogic), "Only the upgrade logic can set an upgrade");
    upgradedNFTs[tokenId] = true;
  }

  function setTokenURILogic(address newContract) onlyOwner external{
    tokenURILogic = SteadyStackTitans(newContract);
  }

  function setUpgradeLogic(address newContract) onlyOwner external{
    upgradeLogic = SteadyStackTitans(newContract);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(_msgSender()).transfer(msg.value - price);
    }
  }

  function getCurrentCost() public view returns (uint256) {
    if(saleStartTime != 0 && block.timestamp >= saleStartTime) {
      return publicSaleCost;
    }
    else {
      return whitelistSaleCost;
    }
  }

  // For marketing etc.
  function devMint(uint256 quantity, address _To) external onlyOwner {
    require(totalSupply() + quantity <= amountForDevs, "too many already minted before dev mint");
    require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(_To, maxBatchSize);
    }
  }

  // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  //New logic created for token upgrades. Until that point standard tokenURI logic works.
  function tokenURI(uint256 tokenId) override public view returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if(tokenURILogic != SteadyStackTitans(address(0)))
    {
      return tokenURILogic.tokenURI(tokenId);
    }
    else
    {
      string memory baseURI = _baseURI();
      return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }
  }

  // Standard withdraw function that only executes when both wallets are set
  function withdraw() external onlyOwner {
        require(payoutWallet1 != address(0), "wallet 1 not set");
        uint256 balance = address(this).balance;
        payable(payoutWallet1).transfer(balance);
  }

  function ERC20Withdraw(address tokenAddress) external onlyOwner {
        IERC20 targetToken = IERC20(tokenAddress);
        uint256 balance = targetToken.balanceOf(address(this));
        require(balance > 0, "Nothing to withdraw");
        require(payoutWallet1 != address(0), "Wallet not set");

        targetToken.transferFrom(address(this), payoutWallet1, balance);
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForAuctionAndDev_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"ERC20Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"addToWhitelistRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForSaleAndDev","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":[],"name":"clearWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_To","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumWhitelistAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPublicMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setNFTUpgraded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newContract","type":"address"}],"name":"setTokenURILogic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newContract","type":"address"}],"name":"setUpgradeLogic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWhitelistStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPayoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"upgradeNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradedNFTs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistGroupWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"uint256","name":"maxMints","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052600060015560006008553480156200001c57600080fd5b5060405162003b9a38038062003b9a8339810160408190526200003f9162000344565b6040518060400160405280601381526020017f53746561647920537461636b20546974616e73000000000000000000000000008152506040518060400160405280600681526020016529a9aa24aa2760d11b8152508585620000b0620000aa6200024a60201b60201c565b6200024e565b600081116200011d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000114565b8351620001949060029060208701906200029e565b508251620001aa9060039060208601906200029e565b5060a0919091526080525050600160095560c084905261010082905260e0819052828211156200021d5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000114565b505067016345785d8a0000601155505067011c37937e0800006012556004600b55612a30600f55620003b8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002ac906200037b565b90600052602060002090601f016020900481019282620002d057600085556200031b565b82601f10620002eb57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031b578251825591602001919060010190620002fe565b50620003299291506200032d565b5090565b5b808211156200032957600081556001016200032e565b600080600080608085870312156200035b57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200039057607f821691505b60208210811415620003b257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161375e6200043c600039600081816108a00152818161103b0152611ab5015260008181610a320152610daf01526000610716015260008181610e4501528181610ed301528181610f0b015281816125e10152818161260b0152612c650152600081816123600152612392015261375e6000f3fe60806040526004361061034f5760003560e01c806380533084116101c6578063ba313ca7116100f7578063e49fc17c11610095578063f062780f1161006f578063f062780f146109e0578063f2fde38b14610a00578063fbe1aa5114610a20578063ff6e36ed14610a5457600080fd5b8063e49fc17c14610957578063e4f56a6214610977578063e985e9c51461099757600080fd5b8063d7224ba0116100d1578063d7224ba0146108f8578063dc33e6811461090e578063df7253961461092e578063e0f8abae1461094157600080fd5b8063ba313ca71461088e578063c288245b146108c2578063c87b56dd146108d857600080fd5b80639231ab2a11610164578063a22cb4651161013e578063a22cb4651461080e578063a4c1291c1461082e578063a93fef3b1461084e578063b88d4fde1461086e57600080fd5b80639231ab2a146107965780639292caaf146107e357806395d89b41146107f957600080fd5b80638bc35c2f116101a05780638bc35c2f146107045780638da5cb5b146107385780638dbb7c061461075657806390690c9a1461077657600080fd5b806380533084146106af578063831e60de146106cf578063843d86a4146106e457600080fd5b80632f745c59116102a057806355f804b31161023e5780636352211e116102185780636352211e1461062a578063680056d21461064a57806370a082311461067a578063715018a61461069a57600080fd5b806355f804b3146105d45780635c3d25ca146105f457806361e232511461061457600080fd5b806342842e0e1161027a57806342842e0e1461055e578063453afb0f1461057e5780634f6ccce714610594578063525f8a5c146105b457600080fd5b80632f745c5914610513578063394b1462146105335780633ccfd60b1461054957600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104a05780632d1a12f6146104c05780632d20fb60146104e05780632db115441461050057600080fd5b806318160ddd146104555780631c0ce3d31461046a5780631cbaee2d1461048a57600080fd5b80628af2e61461035457806301ffc9a71461039457806306fdde03146103c4578063081812fc146103e6578063095ea7b31461041e5780631187b29314610440575b600080fd5b34801561036057600080fd5b5061038161036f366004612f48565b60156020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156103a057600080fd5b506103b46103af366004613113565b610a6a565b604051901515815260200161038b565b3480156103d057600080fd5b506103d9610ad7565b60405161038b91906133d1565b3480156103f257600080fd5b506104066104013660046130fa565b610b69565b6040516001600160a01b03909116815260200161038b565b34801561042a57600080fd5b5061043e6104393660046130b3565b610bf9565b005b34801561044c57600080fd5b5061043e610d11565b34801561046157600080fd5b50600154610381565b34801561047657600080fd5b5061043e6104853660046130fa565b610d49565b34801561049657600080fd5b50610381600d5481565b3480156104ac57600080fd5b5061043e6104bb366004612f96565b610d78565b3480156104cc57600080fd5b5061043e6104db36600461324d565b610d83565b3480156104ec57600080fd5b5061043e6104fb3660046130fa565b610f47565b61043e61050e3660046130fa565b610fda565b34801561051f57600080fd5b5061038161052e3660046130b3565b61111c565b34801561053f57600080fd5b50610381600f5481565b34801561055557600080fd5b5061043e611294565b34801561056a57600080fd5b5061043e610579366004612f96565b611343565b34801561058a57600080fd5b5061038160115481565b3480156105a057600080fd5b506103816105af3660046130fa565b61135e565b3480156105c057600080fd5b5061043e6105cf3660046130fa565b6113c7565b3480156105e057600080fd5b5061043e6105ef36600461314d565b6113f6565b34801561060057600080fd5b5061043e61060f366004612f48565b61142c565b34801561062057600080fd5b5061038160105481565b34801561063657600080fd5b506104066106453660046130fa565b611478565b34801561065657600080fd5b506103b46106653660046130fa565b60166020526000908152604090205460ff1681565b34801561068657600080fd5b50610381610695366004612f48565b61148a565b3480156106a657600080fd5b5061043e61151b565b3480156106bb57600080fd5b5061043e6106ca366004612f48565b61154f565b3480156106db57600080fd5b5061038161159b565b3480156106f057600080fd5b5061043e6106ff3660046130fa565b6115c5565b34801561071057600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000000081565b34801561074457600080fd5b506000546001600160a01b0316610406565b34801561076257600080fd5b5061043e6107713660046130fa565b6115f4565b34801561078257600080fd5b5061043e6107913660046130fa565b611623565b3480156107a257600080fd5b506107b66107b13660046130fa565b6116dc565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161038b565b3480156107ef57600080fd5b50610381600e5481565b34801561080557600080fd5b506103d96116f9565b34801561081a57600080fd5b5061043e61082936600461307c565b611708565b34801561083a57600080fd5b5061043e6108493660046130fa565b6117cd565b34801561085a57600080fd5b5061043e6108693660046130fa565b61182c565b34801561087a57600080fd5b5061043e610889366004612fd2565b61185b565b34801561089a57600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000000081565b3480156108ce57600080fd5b5061038160125481565b3480156108e457600080fd5b506103d96108f33660046130fa565b61188e565b34801561090457600080fd5b5061038160085481565b34801561091a57600080fd5b50610381610929366004612f48565b6119f1565b61043e61093c366004613270565b6119fc565b34801561094d57600080fd5b50610381600b5481565b34801561096357600080fd5b5061043e6109723660046130fa565b611bc2565b34801561098357600080fd5b5061043e610992366004612f48565b611c49565b3480156109a357600080fd5b506103b46109b2366004612f63565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ec57600080fd5b5061043e6109fb366004612f48565b611e0c565b348015610a0c57600080fd5b5061043e610a1b366004612f48565b611e58565b348015610a2c57600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000000081565b348015610a6057600080fd5b50610381600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610a9b57506001600160e01b03198216635b5e139f60e01b145b80610ab657506001600160e01b0319821663780e9d6360e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae690613620565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613620565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b76826001541190565b610bdd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c0482611478565b9050806001600160a01b0316836001600160a01b03161415610c735760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bd4565b336001600160a01b0382161480610c8f5750610c8f81336109b2565b610d015760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bd4565b610d0c838383611ef3565b505050565b6000546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610bd4906133e4565b610d4760176000612e82565b565b6000546001600160a01b03163314610d735760405162461bcd60e51b8152600401610bd4906133e4565b600e55565b610d0c838383611f4f565b6000546001600160a01b03163314610dad5760405162461bcd60e51b8152600401610bd4906133e4565b7f000000000000000000000000000000000000000000000000000000000000000082610dd860015490565b610de29190613553565b1115610e405760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610bd4565b610e6a7f000000000000000000000000000000000000000000000000000000000000000083613698565b15610ecc5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610bd4565b6000610ef87f00000000000000000000000000000000000000000000000000000000000000008461356b565b905060005b81811015610f4157610f2f837f00000000000000000000000000000000000000000000000000000000000000006122d5565b80610f398161367d565b915050610efd565b50505050565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610bd4906133e4565b60026009541415610fc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd4565b6002600955610fd2816122ef565b506001600955565b600d5415801590610fed5750600d544210155b6110395760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610bd4565b7f00000000000000000000000000000000000000000000000000000000000000008161106460015490565b61106e9190613553565b111561108c5760405162461bcd60e51b8152600401610bd49061346c565b600b548111156110f35760405162461bcd60e51b815260206004820152602c60248201527f43616e2774206d696e742074686174206d616e7920696e20612073696e676c6560448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610bd4565b600081601154611103919061357f565b905061110f33836122d5565b611118816124d8565b5050565b60006111278361148a565b82106111805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bd4565b600061118b60015490565b905060008060005b83811015611234576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156111e557805192505b876001600160a01b0316836001600160a01b03161415611221578684141561121357509350610ad192505050565b8361121d8161367d565b9450505b508061122c8161367d565b915050611193565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bd4565b6000546001600160a01b031633146112be5760405162461bcd60e51b8152600401610bd4906133e4565b600c546001600160a01b03166113095760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610bd4565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611118573d6000803e3d6000fd5b610d0c8383836040518060200160405280600081525061185b565b600061136960015490565b82106113c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bd4565b5090565b6000546001600160a01b031633146113f15760405162461bcd60e51b8152600401610bd4906133e4565b600d55565b6000546001600160a01b031633146114205760405162461bcd60e51b8152600401610bd4906133e4565b610d0c60188383612ea0565b6000546001600160a01b031633146114565760405162461bcd60e51b8152600401610bd4906133e4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006114838261255f565b5192915050565b60006001600160a01b0382166114f65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bd4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115455760405162461bcd60e51b8152600401610bd4906133e4565b610d476000612708565b6000546001600160a01b031633146115795760405162461bcd60e51b8152600401610bd4906133e4565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000600d546000141580156115b25750600d544210155b156115be575060115490565b5060125490565b6000546001600160a01b031633146115ef5760405162461bcd60e51b8152600401610bd4906133e4565b601255565b6000546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bd4906133e4565b601155565b60008181526016602052604090205460ff161561167b5760405162461bcd60e51b8152602060048201526016602482015275151bdad95b88185b1c9958591e481d5c19dc9859195960521b6044820152606401610bd4565b601454604051634834864d60e11b8152600481018390526001600160a01b03909116906390690c9a90602401600060405180830381600087803b1580156116c157600080fd5b505af11580156116d5573d6000803e3d6000fd5b5050505050565b6040805180820190915260008082526020820152610ad18261255f565b606060038054610ae690613620565b6001600160a01b0382163314156117615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bd4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146117f75760405162461bcd60e51b8152600401610bd4906133e4565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150155565b6000546001600160a01b031633146118565760405162461bcd60e51b8152600401610bd4906133e4565b600b55565b611866848484611f4f565b61187284848484612758565b610f415760405162461bcd60e51b8152600401610bd490613419565b606061189b826001541190565b6118ff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd4565b6013546001600160a01b0316156119905760135460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561195457600080fd5b505afa158015611968573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ad191908101906131be565b600061199a612866565b905060008151116119ba57604051806020016040528060008152506119e5565b806119c484612875565b6040516020016119d5929190613365565b6040516020818303038152906040525b9392505050565b919050565b6000610ad182612972565b611a0833848484612a10565b611a545760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610bd4565b600e5415801590611a675750600e544210155b611ab35760405162461bcd60e51b815260206004820152601c60248201527f5468652073616c6520686173206e6f74207374617274656420796574000000006044820152606401610bd4565b7f000000000000000000000000000000000000000000000000000000000000000084611ade60015490565b611ae89190613553565b1115611b065760405162461bcd60e51b8152600401610bd49061346c565b336000908152601560205260409020548290611b23908690613553565b1115611b7d5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682077686974656c697374206d696e747320617661696c60448201526361626c6560e01b6064820152608401610bd4565b3360009081526015602052604081208054869290611b9c908490613553565b90915550611bac905033856122d5565b610f4184601254611bbd919061357f565b6124d8565b6014546001600160a01b03163314611c2e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79207468652075706772616465206c6f6769632063616e2073657420616044820152686e207570677261646560b81b6064820152608401610bd4565b6000908152601660205260409020805460ff19166001179055565b6000546001600160a01b03163314611c735760405162461bcd60e51b8152600401610bd4906133e4565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611cb757600080fd5b505afa158015611ccb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cef9190613234565b905060008111611d375760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610bd4565b600c546001600160a01b0316611d805760405162461bcd60e51b815260206004820152600e60248201526d15d85b1b195d081b9bdd081cd95d60921b6044820152606401610bd4565b600c546040516323b872dd60e01b81523060048201526001600160a01b03918216602482015260448101839052908316906323b872dd90606401602060405180830381600087803b158015611dd457600080fd5b505af1158015611de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4191906130dd565b6000546001600160a01b03163314611e365760405162461bcd60e51b8152600401610bd4906133e4565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611e825760405162461bcd60e51b8152600401610bd4906133e4565b6001600160a01b038116611ee75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd4565b611ef081612708565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f5a8261255f565b80519091506000906001600160a01b0316336001600160a01b03161480611f91575033611f8684610b69565b6001600160a01b0316145b80611fa357508151611fa390336109b2565b90508061200d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bd4565b846001600160a01b031682600001516001600160a01b0316146120815760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bd4565b6001600160a01b0384166120e55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bd4565b6120f56000848460000151611ef3565b6001600160a01b03851660009081526005602052604081208054600192906121279084906001600160801b031661359e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261217391859116613531565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121fa846001613553565b6000818152600460205260409020549091506001600160a01b031661228b57612224816001541190565b1561228b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b611118828260405180602001604052806000815250612ba8565b6008548161233f5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bd4565b6000600161234d8484613553565b61235791906135c6565b905061238460017f00000000000000000000000000000000000000000000000000000000000000006135c6565b8111156123b9576123b660017f00000000000000000000000000000000000000000000000000000000000000006135c6565b90505b6123c4816001541190565b61241f5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bd4565b815b8181116124c4576000818152600460205260409020546001600160a01b03166124b257600061244f8261255f565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124bc8161367d565b915050612421565b506124d0816001613553565b600855505050565b803410156125215760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bd4565b80341115611ef057336108fc61253783346135c6565b6040518115909202916000818181858888f19350505050158015611118573d6000803e3d6000fd5b604080518082019091526000808252602082015261257e826001541190565b6125dd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bd4565b60007f0000000000000000000000000000000000000000000000000000000000000000831061263e576126307f0000000000000000000000000000000000000000000000000000000000000000846135c6565b61263b906001613553565b90505b825b8181106126a7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561269457949350505050565b508061269f81613609565b915050612640565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bd4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561285a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061279c903390899088908890600401613394565b602060405180830381600087803b1580156127b657600080fd5b505af19250505080156127e6575060408051601f3d908101601f191682019092526127e391810190613130565b60015b612840573d808015612814576040519150601f19603f3d011682016040523d82523d6000602084013e612819565b606091505b5080516128385760405162461bcd60e51b8152600401610bd490613419565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061285e565b5060015b949350505050565b606060188054610ae690613620565b6060816128995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c357806128ad8161367d565b91506128bc9050600a8361356b565b915061289d565b6000816001600160401b038111156128dd576128dd6136ee565b6040519080825280601f01601f191660200182016040528015612907576020820181803683370190505b5090505b841561285e5761291c6001836135c6565b9150612929600a86613698565b612934906030613553565b60f81b818381518110612949576129496136d8565b60200101906001600160f81b031916908160001a90535061296b600a8661356b565b945061290b565b60006001600160a01b0382166129e45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bd4565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600080848685604051602001612a4b9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60408051601f19818403018152919052805160209091012090508460005b84518161ffff161015612b49578160011660011415612ad857848161ffff1681518110612a9857612a986136d8565b602002602001015183604051602001612abb929190918252602082015260400190565b604051602081830303815290604052805190602001209250612b2a565b82858261ffff1681518110612aef57612aef6136d8565b6020026020010151604051602001612b11929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612b3560028361356b565b915080612b418161365b565b915050612a69565b5060005b601754811015612b9a5760178181548110612b6a57612b6a6136d8565b9060005260206000200154831415612b88576001935050505061285e565b80612b928161367d565b915050612b4d565b506000979650505050505050565b6001546001600160a01b038416612c0b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bd4565b612c16816001541190565b15612c635760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bd4565b7f0000000000000000000000000000000000000000000000000000000000000000831115612cde5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bd4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d3a908790613531565b6001600160801b03168152602001858360200151612d589190613531565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e775760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e3b6000888488612758565b612e575760405162461bcd60e51b8152600401610bd490613419565b81612e618161367d565b9250508080612e6f9061367d565b915050612dee565b5060018190556122cd565b5080546000825590600052602060002090810190611ef09190612f1c565b828054612eac90613620565b90600052602060002090601f016020900481019282612ece5760008555612f14565b82601f10612ee75782800160ff19823516178555612f14565b82800160010185558215612f14579182015b82811115612f14578235825591602001919060010190612ef9565b506113c39291505b5b808211156113c35760008155600101612f1d565b80356001600160a01b03811681146119ec57600080fd5b600060208284031215612f5a57600080fd5b6119e582612f31565b60008060408385031215612f7657600080fd5b612f7f83612f31565b9150612f8d60208401612f31565b90509250929050565b600080600060608486031215612fab57600080fd5b612fb484612f31565b9250612fc260208501612f31565b9150604084013590509250925092565b60008060008060808587031215612fe857600080fd5b612ff185612f31565b9350612fff60208601612f31565b92506040850135915060608501356001600160401b0381111561302157600080fd5b8501601f8101871361303257600080fd5b80356130456130408261350a565b6134da565b81815288602083850101111561305a57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561308f57600080fd5b61309883612f31565b915060208301356130a881613704565b809150509250929050565b600080604083850312156130c657600080fd5b6130cf83612f31565b946020939093013593505050565b6000602082840312156130ef57600080fd5b81516119e581613704565b60006020828403121561310c57600080fd5b5035919050565b60006020828403121561312557600080fd5b81356119e581613712565b60006020828403121561314257600080fd5b81516119e581613712565b6000806020838503121561316057600080fd5b82356001600160401b038082111561317757600080fd5b818501915085601f83011261318b57600080fd5b81358181111561319a57600080fd5b8660208285010111156131ac57600080fd5b60209290920196919550909350505050565b6000602082840312156131d057600080fd5b81516001600160401b038111156131e657600080fd5b8201601f810184136131f757600080fd5b80516132056130408261350a565b81815285602083850101111561321a57600080fd5b61322b8260208301602086016135dd565b95945050505050565b60006020828403121561324657600080fd5b5051919050565b6000806040838503121561326057600080fd5b82359150612f8d60208401612f31565b6000806000806080858703121561328657600080fd5b8435935060208086013593506040860135925060608601356001600160401b03808211156132b357600080fd5b818801915088601f8301126132c757600080fd5b8135818111156132d9576132d96136ee565b8060051b91506132ea8483016134da565b8181528481019084860184860187018d101561330557600080fd5b600095505b8386101561332857803583526001959095019491860191860161330a565b50989b979a50959850505050505050565b600081518084526133518160208601602086016135dd565b601f01601f19169290920160200192915050565b600083516133778184602088016135dd565b83519083019061338b8183602088016135dd565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133c790830184613339565b9695505050505050565b6020815260006119e56020830184613339565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526048908201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b604051601f8201601f191681016001600160401b0381118282101715613502576135026136ee565b604052919050565b60006001600160401b03821115613523576135236136ee565b50601f01601f191660200190565b60006001600160801b0380831681851680830382111561338b5761338b6136ac565b60008219821115613566576135666136ac565b500190565b60008261357a5761357a6136c2565b500490565b6000816000190483118215151615613599576135996136ac565b500290565b60006001600160801b03838116908316818110156135be576135be6136ac565b039392505050565b6000828210156135d8576135d86136ac565b500390565b60005b838110156135f85781810151838201526020016135e0565b83811115610f415750506000910152565b600081613618576136186136ac565b506000190190565b600181811c9082168061363457607f821691505b6020821081141561365557634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613673576136736136ac565b6001019392505050565b6000600019821415613691576136916136ac565b5060010190565b6000826136a7576136a76136c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611ef057600080fd5b6001600160e01b031981168114611ef057600080fdfea264697066735822122080c65d18953e462a5f8caa51e72eed6f20fb2502d78fdb4a811675108a87ed9864736f6c63430008060033000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000084d000000000000000000000000000000000000000000000000000000000000084d000000000000000000000000000000000000000000000000000000000000007d

Deployed Bytecode

0x60806040526004361061034f5760003560e01c806380533084116101c6578063ba313ca7116100f7578063e49fc17c11610095578063f062780f1161006f578063f062780f146109e0578063f2fde38b14610a00578063fbe1aa5114610a20578063ff6e36ed14610a5457600080fd5b8063e49fc17c14610957578063e4f56a6214610977578063e985e9c51461099757600080fd5b8063d7224ba0116100d1578063d7224ba0146108f8578063dc33e6811461090e578063df7253961461092e578063e0f8abae1461094157600080fd5b8063ba313ca71461088e578063c288245b146108c2578063c87b56dd146108d857600080fd5b80639231ab2a11610164578063a22cb4651161013e578063a22cb4651461080e578063a4c1291c1461082e578063a93fef3b1461084e578063b88d4fde1461086e57600080fd5b80639231ab2a146107965780639292caaf146107e357806395d89b41146107f957600080fd5b80638bc35c2f116101a05780638bc35c2f146107045780638da5cb5b146107385780638dbb7c061461075657806390690c9a1461077657600080fd5b806380533084146106af578063831e60de146106cf578063843d86a4146106e457600080fd5b80632f745c59116102a057806355f804b31161023e5780636352211e116102185780636352211e1461062a578063680056d21461064a57806370a082311461067a578063715018a61461069a57600080fd5b806355f804b3146105d45780635c3d25ca146105f457806361e232511461061457600080fd5b806342842e0e1161027a57806342842e0e1461055e578063453afb0f1461057e5780634f6ccce714610594578063525f8a5c146105b457600080fd5b80632f745c5914610513578063394b1462146105335780633ccfd60b1461054957600080fd5b806318160ddd1161030d57806323b872dd116102e757806323b872dd146104a05780632d1a12f6146104c05780632d20fb60146104e05780632db115441461050057600080fd5b806318160ddd146104555780631c0ce3d31461046a5780631cbaee2d1461048a57600080fd5b80628af2e61461035457806301ffc9a71461039457806306fdde03146103c4578063081812fc146103e6578063095ea7b31461041e5780631187b29314610440575b600080fd5b34801561036057600080fd5b5061038161036f366004612f48565b60156020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156103a057600080fd5b506103b46103af366004613113565b610a6a565b604051901515815260200161038b565b3480156103d057600080fd5b506103d9610ad7565b60405161038b91906133d1565b3480156103f257600080fd5b506104066104013660046130fa565b610b69565b6040516001600160a01b03909116815260200161038b565b34801561042a57600080fd5b5061043e6104393660046130b3565b610bf9565b005b34801561044c57600080fd5b5061043e610d11565b34801561046157600080fd5b50600154610381565b34801561047657600080fd5b5061043e6104853660046130fa565b610d49565b34801561049657600080fd5b50610381600d5481565b3480156104ac57600080fd5b5061043e6104bb366004612f96565b610d78565b3480156104cc57600080fd5b5061043e6104db36600461324d565b610d83565b3480156104ec57600080fd5b5061043e6104fb3660046130fa565b610f47565b61043e61050e3660046130fa565b610fda565b34801561051f57600080fd5b5061038161052e3660046130b3565b61111c565b34801561053f57600080fd5b50610381600f5481565b34801561055557600080fd5b5061043e611294565b34801561056a57600080fd5b5061043e610579366004612f96565b611343565b34801561058a57600080fd5b5061038160115481565b3480156105a057600080fd5b506103816105af3660046130fa565b61135e565b3480156105c057600080fd5b5061043e6105cf3660046130fa565b6113c7565b3480156105e057600080fd5b5061043e6105ef36600461314d565b6113f6565b34801561060057600080fd5b5061043e61060f366004612f48565b61142c565b34801561062057600080fd5b5061038160105481565b34801561063657600080fd5b506104066106453660046130fa565b611478565b34801561065657600080fd5b506103b46106653660046130fa565b60166020526000908152604090205460ff1681565b34801561068657600080fd5b50610381610695366004612f48565b61148a565b3480156106a657600080fd5b5061043e61151b565b3480156106bb57600080fd5b5061043e6106ca366004612f48565b61154f565b3480156106db57600080fd5b5061038161159b565b3480156106f057600080fd5b5061043e6106ff3660046130fa565b6115c5565b34801561071057600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000007d81565b34801561074457600080fd5b506000546001600160a01b0316610406565b34801561076257600080fd5b5061043e6107713660046130fa565b6115f4565b34801561078257600080fd5b5061043e6107913660046130fa565b611623565b3480156107a257600080fd5b506107b66107b13660046130fa565b6116dc565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161038b565b3480156107ef57600080fd5b50610381600e5481565b34801561080557600080fd5b506103d96116f9565b34801561081a57600080fd5b5061043e61082936600461307c565b611708565b34801561083a57600080fd5b5061043e6108493660046130fa565b6117cd565b34801561085a57600080fd5b5061043e6108693660046130fa565b61182c565b34801561087a57600080fd5b5061043e610889366004612fd2565b61185b565b34801561089a57600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000084d81565b3480156108ce57600080fd5b5061038160125481565b3480156108e457600080fd5b506103d96108f33660046130fa565b61188e565b34801561090457600080fd5b5061038160085481565b34801561091a57600080fd5b50610381610929366004612f48565b6119f1565b61043e61093c366004613270565b6119fc565b34801561094d57600080fd5b50610381600b5481565b34801561096357600080fd5b5061043e6109723660046130fa565b611bc2565b34801561098357600080fd5b5061043e610992366004612f48565b611c49565b3480156109a357600080fd5b506103b46109b2366004612f63565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ec57600080fd5b5061043e6109fb366004612f48565b611e0c565b348015610a0c57600080fd5b5061043e610a1b366004612f48565b611e58565b348015610a2c57600080fd5b506103817f000000000000000000000000000000000000000000000000000000000000007d81565b348015610a6057600080fd5b50610381600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610a9b57506001600160e01b03198216635b5e139f60e01b145b80610ab657506001600160e01b0319821663780e9d6360e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae690613620565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1290613620565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b76826001541190565b610bdd5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c0482611478565b9050806001600160a01b0316836001600160a01b03161415610c735760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bd4565b336001600160a01b0382161480610c8f5750610c8f81336109b2565b610d015760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bd4565b610d0c838383611ef3565b505050565b6000546001600160a01b03163314610d3b5760405162461bcd60e51b8152600401610bd4906133e4565b610d4760176000612e82565b565b6000546001600160a01b03163314610d735760405162461bcd60e51b8152600401610bd4906133e4565b600e55565b610d0c838383611f4f565b6000546001600160a01b03163314610dad5760405162461bcd60e51b8152600401610bd4906133e4565b7f000000000000000000000000000000000000000000000000000000000000007d82610dd860015490565b610de29190613553565b1115610e405760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610bd4565b610e6a7f000000000000000000000000000000000000000000000000000000000000007d83613698565b15610ecc5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610bd4565b6000610ef87f000000000000000000000000000000000000000000000000000000000000007d8461356b565b905060005b81811015610f4157610f2f837f000000000000000000000000000000000000000000000000000000000000007d6122d5565b80610f398161367d565b915050610efd565b50505050565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610bd4906133e4565b60026009541415610fc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bd4565b6002600955610fd2816122ef565b506001600955565b600d5415801590610fed5750600d544210155b6110395760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610bd4565b7f000000000000000000000000000000000000000000000000000000000000084d8161106460015490565b61106e9190613553565b111561108c5760405162461bcd60e51b8152600401610bd49061346c565b600b548111156110f35760405162461bcd60e51b815260206004820152602c60248201527f43616e2774206d696e742074686174206d616e7920696e20612073696e676c6560448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610bd4565b600081601154611103919061357f565b905061110f33836122d5565b611118816124d8565b5050565b60006111278361148a565b82106111805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bd4565b600061118b60015490565b905060008060005b83811015611234576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156111e557805192505b876001600160a01b0316836001600160a01b03161415611221578684141561121357509350610ad192505050565b8361121d8161367d565b9450505b508061122c8161367d565b915050611193565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bd4565b6000546001600160a01b031633146112be5760405162461bcd60e51b8152600401610bd4906133e4565b600c546001600160a01b03166113095760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610bd4565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611118573d6000803e3d6000fd5b610d0c8383836040518060200160405280600081525061185b565b600061136960015490565b82106113c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bd4565b5090565b6000546001600160a01b031633146113f15760405162461bcd60e51b8152600401610bd4906133e4565b600d55565b6000546001600160a01b031633146114205760405162461bcd60e51b8152600401610bd4906133e4565b610d0c60188383612ea0565b6000546001600160a01b031633146114565760405162461bcd60e51b8152600401610bd4906133e4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006114838261255f565b5192915050565b60006001600160a01b0382166114f65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bd4565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115455760405162461bcd60e51b8152600401610bd4906133e4565b610d476000612708565b6000546001600160a01b031633146115795760405162461bcd60e51b8152600401610bd4906133e4565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000600d546000141580156115b25750600d544210155b156115be575060115490565b5060125490565b6000546001600160a01b031633146115ef5760405162461bcd60e51b8152600401610bd4906133e4565b601255565b6000546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bd4906133e4565b601155565b60008181526016602052604090205460ff161561167b5760405162461bcd60e51b8152602060048201526016602482015275151bdad95b88185b1c9958591e481d5c19dc9859195960521b6044820152606401610bd4565b601454604051634834864d60e11b8152600481018390526001600160a01b03909116906390690c9a90602401600060405180830381600087803b1580156116c157600080fd5b505af11580156116d5573d6000803e3d6000fd5b5050505050565b6040805180820190915260008082526020820152610ad18261255f565b606060038054610ae690613620565b6001600160a01b0382163314156117615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bd4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146117f75760405162461bcd60e51b8152600401610bd4906133e4565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150155565b6000546001600160a01b031633146118565760405162461bcd60e51b8152600401610bd4906133e4565b600b55565b611866848484611f4f565b61187284848484612758565b610f415760405162461bcd60e51b8152600401610bd490613419565b606061189b826001541190565b6118ff5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bd4565b6013546001600160a01b0316156119905760135460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b15801561195457600080fd5b505afa158015611968573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ad191908101906131be565b600061199a612866565b905060008151116119ba57604051806020016040528060008152506119e5565b806119c484612875565b6040516020016119d5929190613365565b6040516020818303038152906040525b9392505050565b919050565b6000610ad182612972565b611a0833848484612a10565b611a545760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610bd4565b600e5415801590611a675750600e544210155b611ab35760405162461bcd60e51b815260206004820152601c60248201527f5468652073616c6520686173206e6f74207374617274656420796574000000006044820152606401610bd4565b7f000000000000000000000000000000000000000000000000000000000000084d84611ade60015490565b611ae89190613553565b1115611b065760405162461bcd60e51b8152600401610bd49061346c565b336000908152601560205260409020548290611b23908690613553565b1115611b7d5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682077686974656c697374206d696e747320617661696c60448201526361626c6560e01b6064820152608401610bd4565b3360009081526015602052604081208054869290611b9c908490613553565b90915550611bac905033856122d5565b610f4184601254611bbd919061357f565b6124d8565b6014546001600160a01b03163314611c2e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79207468652075706772616465206c6f6769632063616e2073657420616044820152686e207570677261646560b81b6064820152608401610bd4565b6000908152601660205260409020805460ff19166001179055565b6000546001600160a01b03163314611c735760405162461bcd60e51b8152600401610bd4906133e4565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611cb757600080fd5b505afa158015611ccb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cef9190613234565b905060008111611d375760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610bd4565b600c546001600160a01b0316611d805760405162461bcd60e51b815260206004820152600e60248201526d15d85b1b195d081b9bdd081cd95d60921b6044820152606401610bd4565b600c546040516323b872dd60e01b81523060048201526001600160a01b03918216602482015260448101839052908316906323b872dd90606401602060405180830381600087803b158015611dd457600080fd5b505af1158015611de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4191906130dd565b6000546001600160a01b03163314611e365760405162461bcd60e51b8152600401610bd4906133e4565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611e825760405162461bcd60e51b8152600401610bd4906133e4565b6001600160a01b038116611ee75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bd4565b611ef081612708565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f5a8261255f565b80519091506000906001600160a01b0316336001600160a01b03161480611f91575033611f8684610b69565b6001600160a01b0316145b80611fa357508151611fa390336109b2565b90508061200d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bd4565b846001600160a01b031682600001516001600160a01b0316146120815760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bd4565b6001600160a01b0384166120e55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bd4565b6120f56000848460000151611ef3565b6001600160a01b03851660009081526005602052604081208054600192906121279084906001600160801b031661359e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261217391859116613531565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121fa846001613553565b6000818152600460205260409020549091506001600160a01b031661228b57612224816001541190565b1561228b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b611118828260405180602001604052806000815250612ba8565b6008548161233f5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bd4565b6000600161234d8484613553565b61235791906135c6565b905061238460017f000000000000000000000000000000000000000000000000000000000000084d6135c6565b8111156123b9576123b660017f000000000000000000000000000000000000000000000000000000000000084d6135c6565b90505b6123c4816001541190565b61241f5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bd4565b815b8181116124c4576000818152600460205260409020546001600160a01b03166124b257600061244f8261255f565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124bc8161367d565b915050612421565b506124d0816001613553565b600855505050565b803410156125215760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bd4565b80341115611ef057336108fc61253783346135c6565b6040518115909202916000818181858888f19350505050158015611118573d6000803e3d6000fd5b604080518082019091526000808252602082015261257e826001541190565b6125dd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bd4565b60007f000000000000000000000000000000000000000000000000000000000000007d831061263e576126307f000000000000000000000000000000000000000000000000000000000000007d846135c6565b61263b906001613553565b90505b825b8181106126a7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561269457949350505050565b508061269f81613609565b915050612640565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bd4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561285a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061279c903390899088908890600401613394565b602060405180830381600087803b1580156127b657600080fd5b505af19250505080156127e6575060408051601f3d908101601f191682019092526127e391810190613130565b60015b612840573d808015612814576040519150601f19603f3d011682016040523d82523d6000602084013e612819565b606091505b5080516128385760405162461bcd60e51b8152600401610bd490613419565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061285e565b5060015b949350505050565b606060188054610ae690613620565b6060816128995750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c357806128ad8161367d565b91506128bc9050600a8361356b565b915061289d565b6000816001600160401b038111156128dd576128dd6136ee565b6040519080825280601f01601f191660200182016040528015612907576020820181803683370190505b5090505b841561285e5761291c6001836135c6565b9150612929600a86613698565b612934906030613553565b60f81b818381518110612949576129496136d8565b60200101906001600160f81b031916908160001a90535061296b600a8661356b565b945061290b565b60006001600160a01b0382166129e45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bd4565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600080848685604051602001612a4b9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60408051601f19818403018152919052805160209091012090508460005b84518161ffff161015612b49578160011660011415612ad857848161ffff1681518110612a9857612a986136d8565b602002602001015183604051602001612abb929190918252602082015260400190565b604051602081830303815290604052805190602001209250612b2a565b82858261ffff1681518110612aef57612aef6136d8565b6020026020010151604051602001612b11929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612b3560028361356b565b915080612b418161365b565b915050612a69565b5060005b601754811015612b9a5760178181548110612b6a57612b6a6136d8565b9060005260206000200154831415612b88576001935050505061285e565b80612b928161367d565b915050612b4d565b506000979650505050505050565b6001546001600160a01b038416612c0b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bd4565b612c16816001541190565b15612c635760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bd4565b7f000000000000000000000000000000000000000000000000000000000000007d831115612cde5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bd4565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d3a908790613531565b6001600160801b03168152602001858360200151612d589190613531565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612e775760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e3b6000888488612758565b612e575760405162461bcd60e51b8152600401610bd490613419565b81612e618161367d565b9250508080612e6f9061367d565b915050612dee565b5060018190556122cd565b5080546000825590600052602060002090810190611ef09190612f1c565b828054612eac90613620565b90600052602060002090601f016020900481019282612ece5760008555612f14565b82601f10612ee75782800160ff19823516178555612f14565b82800160010185558215612f14579182015b82811115612f14578235825591602001919060010190612ef9565b506113c39291505b5b808211156113c35760008155600101612f1d565b80356001600160a01b03811681146119ec57600080fd5b600060208284031215612f5a57600080fd5b6119e582612f31565b60008060408385031215612f7657600080fd5b612f7f83612f31565b9150612f8d60208401612f31565b90509250929050565b600080600060608486031215612fab57600080fd5b612fb484612f31565b9250612fc260208501612f31565b9150604084013590509250925092565b60008060008060808587031215612fe857600080fd5b612ff185612f31565b9350612fff60208601612f31565b92506040850135915060608501356001600160401b0381111561302157600080fd5b8501601f8101871361303257600080fd5b80356130456130408261350a565b6134da565b81815288602083850101111561305a57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b6000806040838503121561308f57600080fd5b61309883612f31565b915060208301356130a881613704565b809150509250929050565b600080604083850312156130c657600080fd5b6130cf83612f31565b946020939093013593505050565b6000602082840312156130ef57600080fd5b81516119e581613704565b60006020828403121561310c57600080fd5b5035919050565b60006020828403121561312557600080fd5b81356119e581613712565b60006020828403121561314257600080fd5b81516119e581613712565b6000806020838503121561316057600080fd5b82356001600160401b038082111561317757600080fd5b818501915085601f83011261318b57600080fd5b81358181111561319a57600080fd5b8660208285010111156131ac57600080fd5b60209290920196919550909350505050565b6000602082840312156131d057600080fd5b81516001600160401b038111156131e657600080fd5b8201601f810184136131f757600080fd5b80516132056130408261350a565b81815285602083850101111561321a57600080fd5b61322b8260208301602086016135dd565b95945050505050565b60006020828403121561324657600080fd5b5051919050565b6000806040838503121561326057600080fd5b82359150612f8d60208401612f31565b6000806000806080858703121561328657600080fd5b8435935060208086013593506040860135925060608601356001600160401b03808211156132b357600080fd5b818801915088601f8301126132c757600080fd5b8135818111156132d9576132d96136ee565b8060051b91506132ea8483016134da565b8181528481019084860184860187018d101561330557600080fd5b600095505b8386101561332857803583526001959095019491860191860161330a565b50989b979a50959850505050505050565b600081518084526133518160208601602086016135dd565b601f01601f19169290920160200192915050565b600083516133778184602088016135dd565b83519083019061338b8183602088016135dd565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133c790830184613339565b9695505050505050565b6020815260006119e56020830184613339565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526048908201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b604051601f8201601f191681016001600160401b0381118282101715613502576135026136ee565b604052919050565b60006001600160401b03821115613523576135236136ee565b50601f01601f191660200190565b60006001600160801b0380831681851680830382111561338b5761338b6136ac565b60008219821115613566576135666136ac565b500190565b60008261357a5761357a6136c2565b500490565b6000816000190483118215151615613599576135996136ac565b500290565b60006001600160801b03838116908316818110156135be576135be6136ac565b039392505050565b6000828210156135d8576135d86136ac565b500390565b60005b838110156135f85781810151838201526020016135e0565b83811115610f415750506000910152565b600081613618576136186136ac565b506000190190565b600181811c9082168061363457607f821691505b6020821081141561365557634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613673576136736136ac565b6001019392505050565b6000600019821415613691576136916136ac565b5060010190565b6000826136a7576136a76136c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611ef057600080fd5b6001600160e01b031981168114611ef057600080fdfea264697066735822122080c65d18953e462a5f8caa51e72eed6f20fb2502d78fdb4a811675108a87ed9864736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000084d000000000000000000000000000000000000000000000000000000000000084d000000000000000000000000000000000000000000000000000000000000007d

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 125
Arg [1] : collectionSize_ (uint256): 2125
Arg [2] : amountForAuctionAndDev_ (uint256): 2125
Arg [3] : amountForDevs_ (uint256): 125

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000007d
Arg [1] : 000000000000000000000000000000000000000000000000000000000000084d
Arg [2] : 000000000000000000000000000000000000000000000000000000000000084d
Arg [3] : 000000000000000000000000000000000000000000000000000000000000007d


Deployed Bytecode Sourcemap

45027:8287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45787:49;;;;;;;;;;-1:-1:-1;45787:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;24722:25:1;;;24710:2;24695:18;45787:49:0;;;;;;;;32723:370;;;;;;;;;;-1:-1:-1;32723:370:0;;;;;:::i;:::-;;:::i;:::-;;;9028:14:1;;9021:22;9003:41;;8991:2;8976:18;32723:370:0;8958:92:1;34449:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35974:204::-;;;;;;;;;;-1:-1:-1;35974:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7946:32:1;;;7928:51;;7916:2;7901:18;35974:204:0;7883:102:1;35537:379:0;;;;;;;;;;-1:-1:-1;35537:379:0;;;;;:::i;:::-;;:::i;:::-;;46720:82;;;;;;;;;;;;;:::i;31284:94::-;;;;;;;;;;-1:-1:-1;31360:12:0;;31284:94;;46929:104;;;;;;;;;;-1:-1:-1;46929:104:0;;;;;:::i;:::-;;:::i;45413:28::-;;;;;;;;;;;;;;;;36824:142;;;;;;;;;;-1:-1:-1;36824:142:0;;;;;:::i;:::-;;:::i;50980:406::-;;;;;;;;;;-1:-1:-1;50980:406:0;;;;;:::i;:::-;;:::i;52927:118::-;;;;;;;;;;-1:-1:-1;52927:118:0;;;;;:::i;:::-;;:::i;48306:518::-;;;;;;:::i;:::-;;:::i;31915:744::-;;;;;;;;;;-1:-1:-1;31915:744:0;;;;;:::i;:::-;;:::i;45484:35::-;;;;;;;;;;;;;;;;52320:213;;;;;;;;;;;;;:::i;37029:157::-;;;;;;;;;;-1:-1:-1;37029:157:0;;;;;:::i;:::-;;:::i;45572:29::-;;;;;;;;;;;;;;;;31447:177;;;;;;;;;;-1:-1:-1;31447:177:0;;;;;:::i;:::-;;:::i;47039:94::-;;;;;;;;;;-1:-1:-1;47039:94:0;;;;;:::i;:::-;;:::i;51560:100::-;;;;;;;;;;-1:-1:-1;51560:100:0;;;;;:::i;:::-;;:::i;46808:115::-;;;;;;;;;;-1:-1:-1;46808:115:0;;;;;:::i;:::-;;:::i;45524:41::-;;;;;;;;;;;;;;;;34272:118;;;;;;;;;;-1:-1:-1;34272:118:0;;;;;:::i;:::-;;:::i;45904:44::-;;;;;;;;;;-1:-1:-1;45904:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33149:211;;;;;;;;;;-1:-1:-1;33149:211:0;;;;;:::i;:::-;;:::i;2376:94::-;;;;;;;;;;;;;:::i;50392:122::-;;;;;;;;;;-1:-1:-1;50392:122:0;;;;;:::i;:::-;;:::i;50732:217::-;;;;;;;;;;;;;:::i;47139:99::-;;;;;;;;;;-1:-1:-1;47139:99:0;;;;;:::i;:::-;;:::i;45159:48::-;;;;;;;;;;;;;;;1725:87;;;;;;;;;;-1:-1:-1;1771:7:0;1798:6;-1:-1:-1;;;;;1798:6:0;1725:87;;47244:96;;;;;;;;;;-1:-1:-1;47244:96:0;;;;;:::i;:::-;;:::i;49683:161::-;;;;;;;;;;-1:-1:-1;49683:161:0;;;;;:::i;:::-;;:::i;53164:147::-;;;;;;;;;;-1:-1:-1;53164:147:0;;;;;:::i;:::-;;:::i;:::-;;;;24441:13:1;;-1:-1:-1;;;;;24437:39:1;24419:58;;24537:4;24525:17;;;24519:24;-1:-1:-1;;;;;24515:49:1;24493:20;;;24486:79;;;;24392:18;53164:147:0;24374:197:1;45446:33:0;;;;;;;;;;;;;;;;34604:98;;;;;;;;;;;;;:::i;36242:274::-;;;;;;;;;;-1:-1:-1;36242:274:0;;;;;:::i;:::-;;:::i;46604:110::-;;;;;;;;;;-1:-1:-1;46604:110:0;;;;;:::i;:::-;;:::i;49850:100::-;;;;;;;;;;-1:-1:-1;49850:100:0;;;;;:::i;:::-;;:::i;37249:311::-;;;;;;;;;;-1:-1:-1;37249:311:0;;;;;:::i;:::-;;:::i;45255:44::-;;;;;;;;;;;;;;;45606:32;;;;;;;;;;;;;;;;51757:479;;;;;;;;;;-1:-1:-1;51757:479:0;;;;;:::i;:::-;;:::i;41664:43::-;;;;;;;;;;;;;;;;53051:107;;;;;;;;;;-1:-1:-1;53051:107:0;;;;;:::i;:::-;;:::i;48830:742::-;;;;;;:::i;:::-;;:::i;45343:35::-;;;;;;;;;;;;;;;;50069:187;;;;;;;;;;-1:-1:-1;50069:187:0;;;;;:::i;:::-;;:::i;52539:382::-;;;;;;;;;;-1:-1:-1;52539:382:0;;;;;:::i;:::-;;:::i;36579:186::-;;;;;;;;;;-1:-1:-1;36579:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;36724:25:0;;;36701:4;36724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36579:186;50262:124;;;;;;;;;;-1:-1:-1;50262:124:0;;;;;:::i;:::-;;:::i;2625:192::-;;;;;;;;;;-1:-1:-1;2625:192:0;;;;;:::i;:::-;;:::i;45212:38::-;;;;;;;;;;;;;;;45306:32;;;;;;;;;;;;;;;;32723:370;32850:4;-1:-1:-1;;;;;;32880:40:0;;-1:-1:-1;;;32880:40:0;;:99;;-1:-1:-1;;;;;;;32931:48:0;;-1:-1:-1;;;32931:48:0;32880:99;:160;;;-1:-1:-1;;;;;;;32990:50:0;;-1:-1:-1;;;32990:50:0;32880:160;:207;;;-1:-1:-1;;;;;;;;;;19206:40:0;;;33051:36;32866:221;32723:370;-1:-1:-1;;32723:370:0:o;34449:94::-;34503:13;34532:5;34525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34449:94;:::o;35974:204::-;36042:7;36066:16;36074:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;36066:16;36058:74;;;;-1:-1:-1;;;36058:74:0;;23184:2:1;36058:74:0;;;23166:21:1;23223:2;23203:18;;;23196:30;23262:34;23242:18;;;23235:62;-1:-1:-1;;;23313:18:1;;;23306:43;23366:19;;36058:74:0;;;;;;;;;-1:-1:-1;36148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36148:24:0;;35974:204::o;35537:379::-;35606:13;35622:24;35638:7;35622:15;:24::i;:::-;35606:40;;35667:5;-1:-1:-1;;;;;35661:11:0;:2;-1:-1:-1;;;;;35661:11:0;;;35653:58;;;;-1:-1:-1;;;35653:58:0;;18067:2:1;35653:58:0;;;18049:21:1;18106:2;18086:18;;;18079:30;18145:34;18125:18;;;18118:62;-1:-1:-1;;;18196:18:1;;;18189:32;18238:19;;35653:58:0;18039:224:1;35653:58:0;681:10;-1:-1:-1;;;;;35736:21:0;;;;:62;;-1:-1:-1;35761:37:0;35778:5;681:10;36579:186;:::i;35761:37::-;35720:153;;;;-1:-1:-1;;;35720:153:0;;13400:2:1;35720:153:0;;;13382:21:1;13439:2;13419:18;;;13412:30;13478:34;13458:18;;;13451:62;13549:27;13529:18;;;13522:55;13594:19;;35720:153:0;13372:247:1;35720:153:0;35882:28;35891:2;35895:7;35904:5;35882:8;:28::i;:::-;35599:317;35537:379;;:::o;46720:82::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46771:25:::1;46778:18;;46771:25;:::i;:::-;46720:82::o:0;46929:104::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;47001:18:::1;:26:::0;46929:104::o;36824:142::-;36932:28;36942:4;36948:2;36952:7;36932:9;:28::i;50980:406::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;51090:13:::1;51078:8;51062:13;31360:12:::0;;;31284:94;51062:13:::1;:24;;;;:::i;:::-;:41;;51054:93;;;::::0;-1:-1:-1;;;51054:93:0;;20697:2:1;51054:93:0::1;::::0;::::1;20679:21:1::0;20736:2;20716:18;;;20709:30;20775:34;20755:18;;;20748:62;-1:-1:-1;;;20826:18:1;;;20819:37;20873:19;;51054:93:0::1;20669:229:1::0;51054:93:0::1;51162:23;51173:12;51162:8:::0;:23:::1;:::i;:::-;:28:::0;51154:85:::1;;;::::0;-1:-1:-1;;;51154:85:0;;11406:2:1;51154:85:0::1;::::0;::::1;11388:21:1::0;11445:2;11425:18;;;11418:30;11484:34;11464:18;;;11457:62;-1:-1:-1;;;11535:18:1;;;11528:42;11587:19;;51154:85:0::1;11378:234:1::0;51154:85:0::1;51246:17;51266:23;51277:12;51266:8:::0;:23:::1;:::i;:::-;51246:43;;51301:9;51296:85;51320:9;51316:1;:13;51296:85;;;51345:28;51355:3;51360:12;51345:9;:28::i;:::-;51331:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51296:85;;;;51047:339;50980:406:::0;;:::o;52927:118::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;16700:1:::1;17296:7;;:19;;17288:63;;;::::0;-1:-1:-1;;;17288:63:0;;22408:2:1;17288:63:0::1;::::0;::::1;22390:21:1::0;22447:2;22427:18;;;22420:30;22486:33;22466:18;;;22459:61;22537:18;;17288:63:0::1;22380:181:1::0;17288:63:0::1;16700:1;17429:7;:18:::0;53011:28:::2;53030:8:::0;53011:18:::2;:28::i;:::-;-1:-1:-1::0;16656:1:0::1;17608:7;:22:::0;52927:118::o;48306:518::-;48376:13;;:18;;;;:54;;;48417:13;;48398:15;:32;;48376:54;48368:91;;;;-1:-1:-1;;;48368:91:0;;12629:2:1;48368:91:0;;;12611:21:1;12668:2;12648:18;;;12641:30;12707:26;12687:18;;;12680:54;12751:18;;48368:91:0;12601:174:1;48368:91:0;48502:19;48490:8;48474:13;31360:12;;;31284:94;48474:13;:24;;;;:::i;:::-;:47;;48466:132;;;;-1:-1:-1;;;48466:132:0;;;;;;;:::i;:::-;48625:20;;48613:8;:32;;48605:89;;;;-1:-1:-1;;;48605:89:0;;14591:2:1;48605:89:0;;;14573:21:1;14630:2;14610:18;;;14603:30;14669:34;14649:18;;;14642:62;-1:-1:-1;;;14720:18:1;;;14713:42;14772:19;;48605:89:0;14563:234:1;48605:89:0;48703:17;48740:8;48723:14;;:25;;;;:::i;:::-;48703:45;-1:-1:-1;48755:33:0;681:10;48779:8;48755:9;:33::i;:::-;48795:23;48808:9;48795:12;:23::i;:::-;48361:463;48306:518;:::o;31915:744::-;32024:7;32059:16;32069:5;32059:9;:16::i;:::-;32051:5;:24;32043:71;;;;-1:-1:-1;;;32043:71:0;;9481:2:1;32043:71:0;;;9463:21:1;9520:2;9500:18;;;9493:30;9559:34;9539:18;;;9532:62;-1:-1:-1;;;9610:18:1;;;9603:32;9652:19;;32043:71:0;9453:224:1;32043:71:0;32121:22;32146:13;31360:12;;;31284:94;32146:13;32121:38;;32166:19;32196:25;32246:9;32241:350;32265:14;32261:1;:18;32241:350;;;32295:31;32329:14;;;:11;:14;;;;;;;;;32295:48;;;;;;;;;-1:-1:-1;;;;;32295:48:0;;;;;-1:-1:-1;;;32295:48:0;;;-1:-1:-1;;;;;32295:48:0;;;;;;;;32356:28;32352:89;;32417:14;;;-1:-1:-1;32352:89:0;32474:5;-1:-1:-1;;;;;32453:26:0;:17;-1:-1:-1;;;;;32453:26:0;;32449:135;;;32511:5;32496:11;:20;32492:59;;;-1:-1:-1;32538:1:0;-1:-1:-1;32531:8:0;;-1:-1:-1;;;32531:8:0;32492:59;32561:13;;;;:::i;:::-;;;;32449:135;-1:-1:-1;32281:3:0;;;;:::i;:::-;;;;32241:350;;;-1:-1:-1;32597:56:0;;-1:-1:-1;;;32597:56:0;;21586:2:1;32597:56:0;;;21568:21:1;21625:2;21605:18;;;21598:30;21664:34;21644:18;;;21637:62;-1:-1:-1;;;21715:18:1;;;21708:44;21769:19;;32597:56:0;21558:236:1;52320:213:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;52378:13:::1;::::0;-1:-1:-1;;;;;52378:13:0::1;52370:56;;;::::0;-1:-1:-1;;;52370:56:0;;19950:2:1;52370:56:0::1;::::0;::::1;19932:21:1::0;19989:2;19969:18;;;19962:30;-1:-1:-1;;;20008:18:1;;;20001:46;20064:18;;52370:56:0::1;19922:166:1::0;52370:56:0::1;52495:13;::::0;52487:40:::1;::::0;52455:21:::1;::::0;-1:-1:-1;;;;;52495:13:0::1;::::0;52487:40;::::1;;;::::0;52455:21;;52437:15:::1;52487:40:::0;52437:15;52487:40;52455:21;52495:13;52487:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;37029:157:::0;37141:39;37158:4;37164:2;37168:7;37141:39;;;;;;;;;;;;:16;:39::i;31447:177::-;31514:7;31546:13;31360:12;;;31284:94;31546:13;31538:5;:21;31530:69;;;;-1:-1:-1;;;31530:69:0;;11819:2:1;31530:69:0;;;11801:21:1;11858:2;11838:18;;;11831:30;11897:34;11877:18;;;11870:62;-1:-1:-1;;;11948:18:1;;;11941:33;11991:19;;31530:69:0;11791:225:1;31530:69:0;-1:-1:-1;31613:5:0;31447:177::o;47039:94::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;47106:13:::1;:21:::0;47039:94::o;51560:100::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;51631:23:::1;:13;51647:7:::0;;51631:23:::1;:::i;46808:115::-:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46886:13:::1;:31:::0;;-1:-1:-1;;;;;;46886:31:0::1;-1:-1:-1::0;;;;;46886:31:0;;;::::1;::::0;;;::::1;::::0;;46808:115::o;34272:118::-;34336:7;34359:20;34371:7;34359:11;:20::i;:::-;:25;;34272:118;-1:-1:-1;;34272:118:0:o;33149:211::-;33213:7;-1:-1:-1;;;;;33237:19:0;;33229:75;;;;-1:-1:-1;;;33229:75:0;;14179:2:1;33229:75:0;;;14161:21:1;14218:2;14198:18;;;14191:30;14257:34;14237:18;;;14230:62;-1:-1:-1;;;14308:18:1;;;14301:41;14359:19;;33229:75:0;14151:233:1;33229:75:0;-1:-1:-1;;;;;;33326:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33326:27:0;;33149:211::o;2376:94::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;50392:122::-:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;50463:12:::1;:45:::0;;-1:-1:-1;;;;;;50463:45:0::1;-1:-1:-1::0;;;;;50463:45:0;;;::::1;::::0;;;::::1;::::0;;50392:122::o;50732:217::-;50779:7;50798:13;;50815:1;50798:18;;:54;;;;;50839:13;;50820:15;:32;;50798:54;50795:149;;;-1:-1:-1;50870:14:0;;;50732:217::o;50795:149::-;-1:-1:-1;50919:17:0;;;50732:217::o;47139:99::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;47207:17:::1;:25:::0;47139:99::o;47244:96::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;47312:14:::1;:22:::0;47244:96::o;49683:161::-;49742:21;;;;:12;:21;;;;;;;;:30;49734:65;;;;-1:-1:-1;;;49734:65:0;;19599:2:1;49734:65:0;;;19581:21:1;19638:2;19618:18;;;19611:30;-1:-1:-1;;;19657:18:1;;;19650:52;19719:18;;49734:65:0;19571:172:1;49734:65:0;49806:12;;:32;;-1:-1:-1;;;49806:32:0;;;;;24722:25:1;;;-1:-1:-1;;;;;49806:12:0;;;;:23;;24695:18:1;;49806:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49683:161;:::o;53164:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;53285:20:0;53297:7;53285:11;:20::i;34604:98::-;34660:13;34689:7;34682:14;;;;;:::i;36242:274::-;-1:-1:-1;;;;;36333:24:0;;681:10;36333:24;;36325:63;;;;-1:-1:-1;;;36325:63:0;;16936:2:1;36325:63:0;;;16918:21:1;16975:2;16955:18;;;16948:30;17014:28;16994:18;;;16987:56;17060:18;;36325:63:0;16908:176:1;36325:63:0;681:10;36397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36397:53:0;;;;;;;;;;36462:48;;9003:41:1;;;36397:42:0;;681:10;36462:48;;8976:18:1;36462:48:0;;;;;;;36242:274;;:::o;46604:110::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;46678:18:::1;:30:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;46678:30:0;;;;;::::1;::::0;46604:110::o;49850:100::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;49917:20:::1;:27:::0;49850:100::o;37249:311::-;37386:28;37396:4;37402:2;37406:7;37386:9;:28::i;:::-;37437:48;37460:4;37466:2;37470:7;37479:5;37437:22;:48::i;:::-;37421:133;;;;-1:-1:-1;;;37421:133:0;;;;;;;:::i;51757:479::-;51822:13;51863:16;51871:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;51863:16;51847:97;;;;-1:-1:-1;;;51847:97:0;;16177:2:1;51847:97:0;;;16159:21:1;16216:2;16196:18;;;16189:30;16255:34;16235:18;;;16228:62;-1:-1:-1;;;16306:18:1;;;16299:45;16361:19;;51847:97:0;16149:237:1;51847:97:0;51954:13;;-1:-1:-1;;;;;51954:13:0;:46;51951:280;;52023:13;;:31;;-1:-1:-1;;;52023:31:0;;;;;24722:25:1;;;-1:-1:-1;;;;;52023:13:0;;;;:22;;24695:18:1;;52023:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52023:31:0;;;;;;;;;;;;:::i;51951:280::-;52087:21;52111:10;:8;:10::i;:::-;52087:34;;52161:1;52143:7;52137:21;:25;:86;;;;;;;;;;;;;;;;;52189:7;52198:18;:7;:16;:18::i;:::-;52172:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52137:86;52130:93;51757:479;-1:-1:-1;;;51757:479:0:o;51951:280::-;51757:479;;;:::o;53051:107::-;53109:7;53132:20;53146:5;53132:13;:20::i;48830:742::-;48970:66;681:10;49003:15;49020:8;49030:5;48970:18;:66::i;:::-;48962:106;;;;-1:-1:-1;;;48962:106:0;;11050:2:1;48962:106:0;;;11032:21:1;11089:2;11069:18;;;11062:30;11128:29;11108:18;;;11101:57;11175:18;;48962:106:0;11022:177:1;48962:106:0;49083:18;;:23;;;;:64;;;49129:18;;49110:15;:37;;49083:64;49075:105;;;;-1:-1:-1;;;49075:105:0;;17710:2:1;49075:105:0;;;17692:21:1;17749:2;17729:18;;;17722:30;17788;17768:18;;;17761:58;17836:18;;49075:105:0;17682:178:1;49075:105:0;49223:19;49211:8;49195:13;31360:12;;;31284:94;49195:13;:24;;;;:::i;:::-;:47;;49187:132;;;;-1:-1:-1;;;49187:132:0;;;;;;;:::i;:::-;681:10;49334:28;;;;:14;:28;;;;;;49377:8;;49334:39;;49365:8;;49334:39;:::i;:::-;:51;;49326:100;;;;-1:-1:-1;;;49326:100:0;;15772:2:1;49326:100:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:34;15830:18;;;15823:62;-1:-1:-1;;;15901:18:1;;;15894:34;15945:19;;49326:100:0;15744:226:1;49326:100:0;681:10;49435:28;;;;:14;:28;;;;;:40;;49467:8;;49435:28;:40;;49467:8;;49435:40;:::i;:::-;;;;-1:-1:-1;49484:33:0;;-1:-1:-1;681:10:0;49508:8;49484:9;:33::i;:::-;49524:42;49557:8;49537:17;;:28;;;;:::i;:::-;49524:12;:42::i;50069:187::-;50156:12;;-1:-1:-1;;;;;50156:12:0;50134:10;:35;50126:89;;;;-1:-1:-1;;;50126:89:0;;24001:2:1;50126:89:0;;;23983:21:1;24040:2;24020:18;;;24013:30;24079:34;24059:18;;;24052:62;-1:-1:-1;;;24130:18:1;;;24123:39;24179:19;;50126:89:0;23973:231:1;50126:89:0;50222:21;;;;:12;:21;;;;;:28;;-1:-1:-1;;50222:28:0;50246:4;50222:28;;;50069:187::o;52539:382::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;52684:36:::1;::::0;-1:-1:-1;;;52684:36:0;;52714:4:::1;52684:36;::::0;::::1;7928:51:1::0;52642:12:0;;52614:18:::1;::::0;-1:-1:-1;;;;;52684:21:0;::::1;::::0;::::1;::::0;7901:18:1;;52684:36:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52666:54;;52749:1;52739:7;:11;52731:43;;;::::0;-1:-1:-1;;;52731:43:0;;9884:2:1;52731:43:0::1;::::0;::::1;9866:21:1::0;9923:2;9903:18;;;9896:30;-1:-1:-1;;;9942:18:1;;;9935:49;10001:18;;52731:43:0::1;9856:169:1::0;52731:43:0::1;52793:13;::::0;-1:-1:-1;;;;;52793:13:0::1;52785:54;;;::::0;-1:-1:-1;;;52785:54:0;;16593:2:1;52785:54:0::1;::::0;::::1;16575:21:1::0;16632:2;16612:18;;;16605:30;-1:-1:-1;;;16651:18:1;;;16644:44;16705:18;;52785:54:0::1;16565:164:1::0;52785:54:0::1;52892:13;::::0;52852:63:::1;::::0;-1:-1:-1;;;52852:63:0;;52885:4:::1;52852:63;::::0;::::1;8230:34:1::0;-1:-1:-1;;;;;52892:13:0;;::::1;8280:18:1::0;;;8273:43;8332:18;;;8325:34;;;52852:24:0;;::::1;::::0;::::1;::::0;8165:18:1;;52852:63:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;50262:124::-:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;50334:13:::1;:46:::0;;-1:-1:-1;;;;;;50334:46:0::1;-1:-1:-1::0;;;;;50334:46:0;;;::::1;::::0;;;::::1;::::0;;50262:124::o;2625:192::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;10232:2:1;2706:73:0::1;::::0;::::1;10214:21:1::0;10271:2;10251:18;;;10244:30;10310:34;10290:18;;;10283:62;-1:-1:-1;;;10361:18:1;;;10354:36;10407:19;;2706:73:0::1;10204:228:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;:::-;2625:192:::0;:::o;41486:172::-;41583:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41583:29:0;-1:-1:-1;;;;;41583:29:0;;;;;;;;;41624:28;;41583:24;;41624:28;;;;;;;41486:172;;;:::o;39851:1529::-;39948:35;39986:20;39998:7;39986:11;:20::i;:::-;40057:18;;39948:58;;-1:-1:-1;40015:22:0;;-1:-1:-1;;;;;40041:34:0;681:10;-1:-1:-1;;;;;40041:34:0;;:81;;;-1:-1:-1;681:10:0;40086:20;40098:7;40086:11;:20::i;:::-;-1:-1:-1;;;;;40086:36:0;;40041:81;:142;;;-1:-1:-1;40150:18:0;;40133:50;;681:10;36579:186;:::i;40133:50::-;40015:169;;40209:17;40193:101;;;;-1:-1:-1;;;40193:101:0;;17291:2:1;40193:101:0;;;17273:21:1;17330:2;17310:18;;;17303:30;17369:34;17349:18;;;17342:62;-1:-1:-1;;;17420:18:1;;;17413:48;17478:19;;40193:101:0;17263:240:1;40193:101:0;40341:4;-1:-1:-1;;;;;40319:26:0;:13;:18;;;-1:-1:-1;;;;;40319:26:0;;40303:98;;;;-1:-1:-1;;;40303:98:0;;15004:2:1;40303:98:0;;;14986:21:1;15043:2;15023:18;;;15016:30;15082:34;15062:18;;;15055:62;-1:-1:-1;;;15133:18:1;;;15126:36;15179:19;;40303:98:0;14976:228:1;40303:98:0;-1:-1:-1;;;;;40416:16:0;;40408:66;;;;-1:-1:-1;;;40408:66:0;;12223:2:1;40408:66:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:34;12281:18;;;12274:62;-1:-1:-1;;;12352:18:1;;;12345:35;12397:19;;40408:66:0;12195:227:1;40408:66:0;40583:49;40600:1;40604:7;40613:13;:18;;;40583:8;:49::i;:::-;-1:-1:-1;;;;;40641:18:0;;;;;;:12;:18;;;;;:31;;40671:1;;40641:18;:31;;40671:1;;-1:-1:-1;;;;;40641:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;40641:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40679:16:0;;-1:-1:-1;40679:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;40679:16:0;;:29;;-1:-1:-1;;40679:29:0;;:::i;:::-;;;-1:-1:-1;;;;;40679:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40738:43:0;;;;;;;;-1:-1:-1;;;;;40738:43:0;;;;;-1:-1:-1;;;;;40764:15:0;40738:43;;;;;;;;;-1:-1:-1;40715:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;40715:66:0;-1:-1:-1;;;;;;40715:66:0;;;;;;;;;;;41031:11;40727:7;-1:-1:-1;41031:11:0;:::i;:::-;41094:1;41053:24;;;:11;:24;;;;;:29;41009:33;;-1:-1:-1;;;;;;41053:29:0;41049:236;;41111:20;41119:11;37886:12;;-1:-1:-1;37876:22:0;37799:105;41111:20;41107:171;;;41171:97;;;;;;;;41198:18;;-1:-1:-1;;;;;41171:97:0;;;;;;41229:28;;;;-1:-1:-1;;;;;41171:97:0;;;;;;;;;-1:-1:-1;41144:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41144:124:0;-1:-1:-1;;;;;;41144:124:0;;;;;;;;;;;;41107:171;41317:7;41313:2;-1:-1:-1;;;;;41298:27:0;41307:4;-1:-1:-1;;;;;41298:27:0;;;;;;;;;;;41332:42;39941:1439;;;39851:1529;;;:::o;37910:98::-;37975:27;37985:2;37989:8;37975:27;;;;;;;;;;;;:9;:27::i;41812:846::-;41902:24;;41941:12;41933:49;;;;-1:-1:-1;;;41933:49:0;;13826:2:1;41933:49:0;;;13808:21:1;13865:2;13845:18;;;13838:30;13904:26;13884:18;;;13877:54;13948:18;;41933:49:0;13798:174:1;41933:49:0;41989:16;42039:1;42008:28;42028:8;42008:17;:28;:::i;:::-;:32;;;;:::i;:::-;41989:51;-1:-1:-1;42062:18:0;42079:1;42062:14;:18;:::i;:::-;42051:8;:29;42047:81;;;42102:18;42119:1;42102:14;:18;:::i;:::-;42091:29;;42047:81;42243:17;42251:8;37886:12;;-1:-1:-1;37876:22:0;37799:105;42243:17;42235:68;;;;-1:-1:-1;;;42235:68:0;;22001:2:1;42235:68:0;;;21983:21:1;22040:2;22020:18;;;22013:30;22079:34;22059:18;;;22052:62;-1:-1:-1;;;22130:18:1;;;22123:36;22176:19;;42235:68:0;21973:228:1;42235:68:0;42327:17;42310:297;42351:8;42346:1;:13;42310:297;;42410:1;42379:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42379:19:0;42375:225;;42425:31;42459:14;42471:1;42459:11;:14::i;:::-;42501:89;;;;;;;;42528:14;;-1:-1:-1;;;;;42501:89:0;;;;;;42555:24;;;;-1:-1:-1;;;;;42501:89:0;;;;;;;;;-1:-1:-1;42484:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;42484:106:0;-1:-1:-1;;;;;;42484:106:0;;;;;;;;;;;;-1:-1:-1;42375:225:0;42361:3;;;;:::i;:::-;;;;42310:297;;;-1:-1:-1;42640:12:0;:8;42651:1;42640:12;:::i;:::-;42613:24;:39;-1:-1:-1;;;41812:846:0:o;50520:206::-;50593:5;50580:9;:18;;50572:53;;;;-1:-1:-1;;;50572:53:0;;18890:2:1;50572:53:0;;;18872:21:1;18929:2;18909:18;;;18902:30;-1:-1:-1;;;18948:18:1;;;18941:52;19010:18;;50572:53:0;18862:172:1;50572:53:0;50648:5;50636:9;:17;50632:89;;;681:10;50664:49;50695:17;50707:5;50695:9;:17;:::i;:::-;50664:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33612:606;-1:-1:-1;;;;;;;;;;;;;;;;;33729:16:0;33737:7;37886:12;;-1:-1:-1;37876:22:0;37799:105;33729:16;33721:71;;;;-1:-1:-1;;;33721:71:0;;10639:2:1;33721:71:0;;;10621:21:1;10678:2;10658:18;;;10651:30;10717:34;10697:18;;;10690:62;-1:-1:-1;;;10768:18:1;;;10761:40;10818:19;;33721:71:0;10611:232:1;33721:71:0;33801:26;33849:12;33838:7;:23;33834:93;;33893:22;33903:12;33893:7;:22;:::i;:::-;:26;;33918:1;33893:26;:::i;:::-;33872:47;;33834:93;33955:7;33935:212;33972:18;33964:4;:26;33935:212;;34009:31;34043:17;;;:11;:17;;;;;;;;;34009:51;;;;;;;;;-1:-1:-1;;;;;34009:51:0;;;;;-1:-1:-1;;;34009:51:0;;;-1:-1:-1;;;;;34009:51:0;;;;;;;;34073:28;34069:71;;34121:9;33612:606;-1:-1:-1;;;;33612:606:0:o;34069:71::-;-1:-1:-1;33992:6:0;;;;:::i;:::-;;;;33935:212;;;-1:-1:-1;34155:57:0;;-1:-1:-1;;;34155:57:0;;22768:2:1;34155:57:0;;;22750:21:1;22807:2;22787:18;;;22780:30;22846:34;22826:18;;;22819:62;-1:-1:-1;;;22897:18:1;;;22890:45;22952:19;;34155:57:0;22740:237:1;2825:173:0;2881:16;2900:6;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;2950:40;;2900:6;;;;;;;2950:40;;2881:16;2950:40;2870:128;2825:173;:::o;43201:690::-;43338:4;-1:-1:-1;;;;;43355:13:0;;4009:20;4057:8;43351:535;;43394:72;;-1:-1:-1;;;43394:72:0;;-1:-1:-1;;;;;43394:36:0;;;;;:72;;681:10;;43445:4;;43451:7;;43460:5;;43394:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43394:72:0;;;;;;;;-1:-1:-1;;43394:72:0;;;;;;;;;;;;:::i;:::-;;;43381:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43625:13:0;;43621:215;;43658:61;;-1:-1:-1;;;43658:61:0;;;;;;;:::i;43621:215::-;43804:6;43798:13;43789:6;43785:2;43781:15;43774:38;43381:464;-1:-1:-1;;;;;;43516:55:0;-1:-1:-1;;;43516:55:0;;-1:-1:-1;43509:62:0;;43351:535;-1:-1:-1;43874:4:0;43351:535;43201:690;;;;;;:::o;51446:108::-;51506:13;51535;51528:20;;;;;:::i;11026:723::-;11082:13;11303:10;11299:53;;-1:-1:-1;;11330:10:0;;;;;;;;;;;;-1:-1:-1;;;11330:10:0;;;;;11026:723::o;11299:53::-;11377:5;11362:12;11418:78;11425:9;;11418:78;;11451:8;;;;:::i;:::-;;-1:-1:-1;11474:10:0;;-1:-1:-1;11482:2:0;11474:10;;:::i;:::-;;;11418:78;;;11506:19;11538:6;-1:-1:-1;;;;;11528:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11528:17:0;;11506:39;;11556:154;11563:10;;11556:154;;11590:11;11600:1;11590:11;;:::i;:::-;;-1:-1:-1;11659:10:0;11667:2;11659:5;:10;:::i;:::-;11646:24;;:2;:24;:::i;:::-;11633:39;;11616:6;11623;11616:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11616:56:0;;;;;;;;-1:-1:-1;11687:11:0;11696:2;11687:11;;:::i;:::-;;;11556:154;;33366:240;33427:7;-1:-1:-1;;;;;33459:19:0;;33443:102;;;;-1:-1:-1;;;33443:102:0;;12982:2:1;33443:102:0;;;12964:21:1;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:1;;;13104:47;13168:19;;33443:102:0;12954:239:1;33443:102:0;-1:-1:-1;;;;;;33567:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33567:32:0;;-1:-1:-1;;;;;33567:32:0;;33366:240::o;47436:864::-;47558:4;47613:12;47655:5;47662:6;47670;47638:39;;;;;;;;;7603:19:1;;;7660:2;7656:15;;;;-1:-1:-1;;7652:53:1;7647:2;7638:12;;7631:75;7731:2;7722:12;;7715:28;7768:2;7759:12;;7593:184;47638:39:0;;;;-1:-1:-1;;47638:39:0;;;;;;;;;47628:50;;47638:39;47628:50;;;;;-1:-1:-1;47704:5:0;47689:12;47720:292;47743:5;:12;47739:1;:16;;;47720:292;;;47782:4;47789;47782:11;47798:1;47781:18;47777:200;;;47854:5;47860:1;47854:8;;;;;;;;;;:::i;:::-;;;;;;;47864:4;47837:32;;;;;;;;6848:19:1;;;6892:2;6883:12;;6876:28;6929:2;6920:12;;6838:100;47837:32:0;;;;;;;;;;;;;47827:43;;;;;;47820:50;;47777:200;;;47945:4;47951:5;47957:1;47951:8;;;;;;;;;;:::i;:::-;;;;;;;47928:32;;;;;;;;6848:19:1;;;6892:2;6883:12;;6876:28;6929:2;6920:12;;6838:100;47928:32:0;;;;;;;;;;;;;47918:43;;;;;;47911:50;;47777:200;47991:9;47999:1;47991:9;;:::i;:::-;;-1:-1:-1;47757:3:0;;;;:::i;:::-;;;;47720:292;;;;48091:6;48087:181;48107:18;:25;48103:29;;48087:181;;;48175:18;48194:1;48175:21;;;;;;;;:::i;:::-;;;;;;;;;48167:4;:29;48163:94;;;48237:4;48230:11;;;;;;;48163:94;48134:3;;;;:::i;:::-;;;;48087:181;;;-1:-1:-1;48287:5:0;;47436:864;-1:-1:-1;;;;;;;47436:864:0:o;38347:1272::-;38475:12;;-1:-1:-1;;;;;38502:16:0;;38494:62;;;;-1:-1:-1;;;38494:62:0;;20295:2:1;38494:62:0;;;20277:21:1;20334:2;20314:18;;;20307:30;20373:34;20353:18;;;20346:62;-1:-1:-1;;;20424:18:1;;;20417:31;20465:19;;38494:62:0;20267:223:1;38494:62:0;38693:21;38701:12;37886;;-1:-1:-1;37876:22:0;37799:105;38693:21;38692:22;38684:64;;;;-1:-1:-1;;;38684:64:0;;19241:2:1;38684:64:0;;;19223:21:1;19280:2;19260:18;;;19253:30;19319:31;19299:18;;;19292:59;19368:18;;38684:64:0;19213:179:1;38684:64:0;38775:12;38763:8;:24;;38755:71;;;;-1:-1:-1;;;38755:71:0;;23598:2:1;38755:71:0;;;23580:21:1;23637:2;23617:18;;;23610:30;23676:34;23656:18;;;23649:62;-1:-1:-1;;;23727:18:1;;;23720:32;23769:19;;38755:71:0;23570:224:1;38755:71:0;-1:-1:-1;;;;;38938:16:0;;38905:30;38938:16;;;:12;:16;;;;;;;;;38905:49;;;;;;;;;-1:-1:-1;;;;;38905:49:0;;;;;-1:-1:-1;;;38905:49:0;;;;;;;;;;;38980:119;;;;;;;;39000:19;;38905:49;;38980:119;;;39000:39;;39030:8;;39000:39;:::i;:::-;-1:-1:-1;;;;;38980:119:0;;;;;39083:8;39048:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;38980:119:0;;;;;;-1:-1:-1;;;;;38961:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;38961:138:0;;;;;;;;;;;;39134:43;;;;;;;;;;-1:-1:-1;;;;;39160:15:0;39134:43;;;;;;;;39106:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39106:71:0;-1:-1:-1;;;;;;39106:71:0;;;;;;;;;;;;;;;;;;39118:12;;39230:281;39254:8;39250:1;:12;39230:281;;;39283:38;;39308:12;;-1:-1:-1;;;;;39283:38:0;;;39300:1;;39283:38;;39300:1;;39283:38;39348:59;39379:1;39383:2;39387:12;39401:5;39348:22;:59::i;:::-;39330:150;;;;-1:-1:-1;;;39330:150:0;;;;;;;:::i;:::-;39489:14;;;;:::i;:::-;;;;39264:3;;;;;:::i;:::-;;;;39230:281;;;-1:-1:-1;39519:12:0;:27;;;39553:60;50980:406;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:888::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:2;;;1170:1;1167;1160:12;1121:2;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;-1:-1:-1;;;;;1400:6:1;1397:30;1394:2;;;1440:1;1437;1430:12;1394:2;1463:22;;1516:4;1508:13;;1504:27;-1:-1:-1;1494:2:1;;1545:1;1542;1535:12;1494:2;1581;1568:16;1606:48;1622:31;1650:2;1622:31;:::i;:::-;1606:48;:::i;:::-;1677:2;1670:5;1663:17;1717:7;1712:2;1707;1703;1699:11;1695:20;1692:33;1689:2;;;1738:1;1735;1728:12;1689:2;1793;1788;1784;1780:11;1775:2;1768:5;1764:14;1751:45;1837:1;1832:2;1827;1820:5;1816:14;1812:23;1805:34;1858:5;1848:15;;;;;1111:758;;;;;;;:::o;1874:315::-;1939:6;1947;2000:2;1988:9;1979:7;1975:23;1971:32;1968:2;;;2016:1;2013;2006:12;1968:2;2039:29;2058:9;2039:29;:::i;:::-;2029:39;;2118:2;2107:9;2103:18;2090:32;2131:28;2153:5;2131:28;:::i;:::-;2178:5;2168:15;;;1958:231;;;;;:::o;2194:254::-;2262:6;2270;2323:2;2311:9;2302:7;2298:23;2294:32;2291:2;;;2339:1;2336;2329:12;2291:2;2362:29;2381:9;2362:29;:::i;:::-;2352:39;2438:2;2423:18;;;;2410:32;;-1:-1:-1;;;2281:167:1:o;2453:245::-;2520:6;2573:2;2561:9;2552:7;2548:23;2544:32;2541:2;;;2589:1;2586;2579:12;2541:2;2621:9;2615:16;2640:28;2662:5;2640:28;:::i;2703:180::-;2762:6;2815:2;2803:9;2794:7;2790:23;2786:32;2783:2;;;2831:1;2828;2821:12;2783:2;-1:-1:-1;2854:23:1;;2773:110;-1:-1:-1;2773:110:1:o;2888:245::-;2946:6;2999:2;2987:9;2978:7;2974:23;2970:32;2967:2;;;3015:1;3012;3005:12;2967:2;3054:9;3041:23;3073:30;3097:5;3073:30;:::i;3138:249::-;3207:6;3260:2;3248:9;3239:7;3235:23;3231:32;3228:2;;;3276:1;3273;3266:12;3228:2;3308:9;3302:16;3327:30;3351:5;3327:30;:::i;3392:592::-;3463:6;3471;3524:2;3512:9;3503:7;3499:23;3495:32;3492:2;;;3540:1;3537;3530:12;3492:2;3580:9;3567:23;-1:-1:-1;;;;;3650:2:1;3642:6;3639:14;3636:2;;;3666:1;3663;3656:12;3636:2;3704:6;3693:9;3689:22;3679:32;;3749:7;3742:4;3738:2;3734:13;3730:27;3720:2;;3771:1;3768;3761:12;3720:2;3811;3798:16;3837:2;3829:6;3826:14;3823:2;;;3853:1;3850;3843:12;3823:2;3898:7;3893:2;3884:6;3880:2;3876:15;3872:24;3869:37;3866:2;;;3919:1;3916;3909:12;3866:2;3950;3942:11;;;;;3972:6;;-1:-1:-1;3482:502:1;;-1:-1:-1;;;;3482:502:1:o;3989:635::-;4069:6;4122:2;4110:9;4101:7;4097:23;4093:32;4090:2;;;4138:1;4135;4128:12;4090:2;4171:9;4165:16;-1:-1:-1;;;;;4196:6:1;4193:30;4190:2;;;4236:1;4233;4226:12;4190:2;4259:22;;4312:4;4304:13;;4300:27;-1:-1:-1;4290:2:1;;4341:1;4338;4331:12;4290:2;4370;4364:9;4395:48;4411:31;4439:2;4411:31;:::i;4395:48::-;4466:2;4459:5;4452:17;4506:7;4501:2;4496;4492;4488:11;4484:20;4481:33;4478:2;;;4527:1;4524;4517:12;4478:2;4540:54;4591:2;4586;4579:5;4575:14;4570:2;4566;4562:11;4540:54;:::i;:::-;4613:5;4080:544;-1:-1:-1;;;;;4080:544:1:o;4814:184::-;4884:6;4937:2;4925:9;4916:7;4912:23;4908:32;4905:2;;;4953:1;4950;4943:12;4905:2;-1:-1:-1;4976:16:1;;4895:103;-1:-1:-1;4895:103:1:o;5003:254::-;5071:6;5079;5132:2;5120:9;5111:7;5107:23;5103:32;5100:2;;;5148:1;5145;5138:12;5100:2;5184:9;5171:23;5161:33;;5213:38;5247:2;5236:9;5232:18;5213:38;:::i;5262:1162::-;5373:6;5381;5389;5397;5450:3;5438:9;5429:7;5425:23;5421:33;5418:2;;;5467:1;5464;5457:12;5418:2;5503:9;5490:23;5480:33;;5532:2;5581;5570:9;5566:18;5553:32;5543:42;;5632:2;5621:9;5617:18;5604:32;5594:42;;5687:2;5676:9;5672:18;5659:32;-1:-1:-1;;;;;5751:2:1;5743:6;5740:14;5737:2;;;5767:1;5764;5757:12;5737:2;5805:6;5794:9;5790:22;5780:32;;5850:7;5843:4;5839:2;5835:13;5831:27;5821:2;;5872:1;5869;5862:12;5821:2;5908;5895:16;5930:2;5926;5923:10;5920:2;;;5936:18;;:::i;:::-;5982:2;5979:1;5975:10;5965:20;;6005:28;6029:2;6025;6021:11;6005:28;:::i;:::-;6067:15;;;6098:12;;;;6130:11;;;6160;;;6156:20;;6153:33;-1:-1:-1;6150:2:1;;;6199:1;6196;6189:12;6150:2;6221:1;6212:10;;6231:163;6245:2;6242:1;6239:9;6231:163;;;6302:17;;6290:30;;6263:1;6256:9;;;;;6340:12;;;;6372;;6231:163;;;-1:-1:-1;5408:1016:1;;;;-1:-1:-1;5408:1016:1;;-1:-1:-1;;;;;;;5408:1016:1:o;6429:257::-;6470:3;6508:5;6502:12;6535:6;6530:3;6523:19;6551:63;6607:6;6600:4;6595:3;6591:14;6584:4;6577:5;6573:16;6551:63;:::i;:::-;6668:2;6647:15;-1:-1:-1;;6643:29:1;6634:39;;;;6675:4;6630:50;;6478:208;-1:-1:-1;;6478:208:1:o;6943:470::-;7122:3;7160:6;7154:13;7176:53;7222:6;7217:3;7210:4;7202:6;7198:17;7176:53;:::i;:::-;7292:13;;7251:16;;;;7314:57;7292:13;7251:16;7348:4;7336:17;;7314:57;:::i;:::-;7387:20;;7130:283;-1:-1:-1;;;;7130:283:1:o;8370:488::-;-1:-1:-1;;;;;8639:15:1;;;8621:34;;8691:15;;8686:2;8671:18;;8664:43;8738:2;8723:18;;8716:34;;;8786:3;8781:2;8766:18;;8759:31;;;8564:4;;8807:45;;8832:19;;8824:6;8807:45;:::i;:::-;8799:53;8573:285;-1:-1:-1;;;;;;8573:285:1:o;9055:219::-;9204:2;9193:9;9186:21;9167:4;9224:44;9264:2;9253:9;9249:18;9241:6;9224:44;:::i;15209:356::-;15411:2;15393:21;;;15430:18;;;15423:30;15489:34;15484:2;15469:18;;15462:62;15556:2;15541:18;;15383:182::o;18268:415::-;18470:2;18452:21;;;18509:2;18489:18;;;18482:30;18548:34;18543:2;18528:18;;18521:62;-1:-1:-1;;;18614:2:1;18599:18;;18592:49;18673:3;18658:19;;18442:241::o;20903:476::-;21105:2;21087:21;;;21144:2;21124:18;;;21117:30;21183:34;21178:2;21163:18;;21156:62;21254:34;21249:2;21234:18;;21227:62;-1:-1:-1;;;21320:3:1;21305:19;;21298:39;21369:3;21354:19;;21077:302::o;24758:275::-;24829:2;24823:9;24894:2;24875:13;;-1:-1:-1;;24871:27:1;24859:40;;-1:-1:-1;;;;;24914:34:1;;24950:22;;;24911:62;24908:2;;;24976:18;;:::i;:::-;25012:2;25005:22;24803:230;;-1:-1:-1;24803:230:1:o;25038:186::-;25086:4;-1:-1:-1;;;;;25111:6:1;25108:30;25105:2;;;25141:18;;:::i;:::-;-1:-1:-1;25207:2:1;25186:15;-1:-1:-1;;25182:29:1;25213:4;25178:40;;25095:129::o;25229:253::-;25269:3;-1:-1:-1;;;;;25358:2:1;25355:1;25351:10;25388:2;25385:1;25381:10;25419:3;25415:2;25411:12;25406:3;25403:21;25400:2;;;25427:18;;:::i;25487:128::-;25527:3;25558:1;25554:6;25551:1;25548:13;25545:2;;;25564:18;;:::i;:::-;-1:-1:-1;25600:9:1;;25535:80::o;25620:120::-;25660:1;25686;25676:2;;25691:18;;:::i;:::-;-1:-1:-1;25725:9:1;;25666:74::o;25745:168::-;25785:7;25851:1;25847;25843:6;25839:14;25836:1;25833:21;25828:1;25821:9;25814:17;25810:45;25807:2;;;25858:18;;:::i;:::-;-1:-1:-1;25898:9:1;;25797:116::o;25918:246::-;25958:4;-1:-1:-1;;;;;26071:10:1;;;;26041;;26093:12;;;26090:2;;;26108:18;;:::i;:::-;26145:13;;25967:197;-1:-1:-1;;;25967:197:1:o;26169:125::-;26209:4;26237:1;26234;26231:8;26228:2;;;26242:18;;:::i;:::-;-1:-1:-1;26279:9:1;;26218:76::o;26299:258::-;26371:1;26381:113;26395:6;26392:1;26389:13;26381:113;;;26471:11;;;26465:18;26452:11;;;26445:39;26417:2;26410:10;26381:113;;;26512:6;26509:1;26506:13;26503:2;;;-1:-1:-1;;26547:1:1;26529:16;;26522:27;26352:205::o;26562:136::-;26601:3;26629:5;26619:2;;26638:18;;:::i;:::-;-1:-1:-1;;;26674:18:1;;26609:89::o;26703:380::-;26782:1;26778:12;;;;26825;;;26846:2;;26900:4;26892:6;26888:17;26878:27;;26846:2;26953;26945:6;26942:14;26922:18;26919:38;26916:2;;;26999:10;26994:3;26990:20;26987:1;26980:31;27034:4;27031:1;27024:15;27062:4;27059:1;27052:15;26916:2;;26758:325;;;:::o;27088:197::-;27126:3;27154:6;27195:2;27188:5;27184:14;27222:2;27213:7;27210:15;27207:2;;;27228:18;;:::i;:::-;27277:1;27264:15;;27134:151;-1:-1:-1;;;27134:151:1:o;27290:135::-;27329:3;-1:-1:-1;;27350:17:1;;27347:2;;;27370:18;;:::i;:::-;-1:-1:-1;27417:1:1;27406:13;;27337:88::o;27430:112::-;27462:1;27488;27478:2;;27493:18;;:::i;:::-;-1:-1:-1;27527:9:1;;27468:74::o;27547:127::-;27608:10;27603:3;27599:20;27596:1;27589:31;27639:4;27636:1;27629:15;27663:4;27660:1;27653:15;27679:127;27740:10;27735:3;27731:20;27728:1;27721:31;27771:4;27768:1;27761:15;27795:4;27792:1;27785:15;27811:127;27872:10;27867:3;27863:20;27860:1;27853:31;27903:4;27900:1;27893:15;27927:4;27924:1;27917:15;27943:127;28004:10;27999:3;27995:20;27992:1;27985:31;28035:4;28032:1;28025:15;28059:4;28056:1;28049:15;28075:118;28161:5;28154:13;28147:21;28140:5;28137:32;28127:2;;28183:1;28180;28173:12;28198:131;-1:-1:-1;;;;;;28272:32:1;;28262:43;;28252:2;;28319:1;28316;28309:12

Swarm Source

ipfs://80c65d18953e462a5f8caa51e72eed6f20fb2502d78fdb4a811675108a87ed98
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.