ETH Price: $3,306.67 (-3.30%)
Gas: 16 Gwei

Token

Cypher Collection (CYPH)
 

Overview

Max Total Supply

3,108 CYPH

Holders

1,341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CYPH
0x72b9548ef1760912c9f75780f4ac93445a539864
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cypher Collection Drop #1 is a curated NFT collection of 3890 Next Gen, game-ready avatars and assets, handcrafted by world class game artists and industry veterans which have yet to be revealed. Cyphers will make themselves known to the world on June 30th. Until then, a Pre-reveal representative helmet of each of Cypher's 5 factions will be displayed.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CypherCollection

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-05-20
*/

///////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////  Contract created by the Byt Launchpad team  https://byt.io  ////////////////////////////////
/////////////////                                                              ////////////////////////////////
/////////////////   /$$$$$$$  /$$     /$$ /$$$$$$$$  /$$$$$$  /$$$$$$          ////////////////////////////////
/////////////////  | $$__  $$|  $$   /$$/|__  $$__/ |_  $$_/ /$$__  $$         ////////////////////////////////
/////////////////  | $$  \ $$ \  $$ /$$/    | $$      | $$  | $$  \ $$         ////////////////////////////////
/////////////////  | $$$$$$$   \  $$$$/     | $$      | $$  | $$  | $$         ////////////////////////////////
/////////////////  | $$__  $$   \  $$/      | $$      | $$  | $$  | $$         ////////////////////////////////
/////////////////  | $$  \ $$    | $$       | $$      | $$  | $$  | $$         ////////////////////////////////
/////////////////  | $$$$$$$/    | $$       | $$ /$$ /$$$$$$|  $$$$$$/         ////////////////////////////////
/////////////////  |_______/     |__/       |__/|__/|______/ \______/          ////////////////////////////////
/////////////////                                                              ////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////                                                  

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 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 CypherCollection is Ownable, ERC721A, ReentrancyGuard {
  using SafeMath for uint256;

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

  address payoutWallet1;
  address payoutWallet2;

  uint256 bytPayoutPercentage;

  uint256[2] public saleStartTime;
  uint256[2] public whitelistStartTime;
  uint256[2] public totalGiveawayMints;
  uint256 public maxPublicMints;

  uint256 public totalGiveawayMintsRedeemed;

  uint256 public publicSaleCost;

  //Using an array of mappings to track whitelist mints for wallets
  //since numberMinted() does not reset between part 1 and part 2
  mapping(address => uint256)[2] public whitelistMints;

  mapping(address => uint256) public whitelistFreeMints;

  bytes32[] _whitelistRootHash;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_,
    uint256 amountPartOne_
  ) ERC721A("Cypher Collection", "CYPH", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForSaleAndDev = amountForAuctionAndDev_;
    amountForDevs = amountForDevs_;
    amountCollectionPartOne = amountPartOne_;
    require(
      amountForAuctionAndDev_ <= collectionSize_,
      "larger collection size needed"
    );
    require(amountPartOne_ < collectionSize_, "Part one too large");
    publicSaleCost = 0.5 ether;
    bytPayoutPercentage = 9;
    maxPublicMints = 5;
    totalGiveawayMints[0] = 60;
    payoutWallet1 = address(0xe36d11e70AEe5e3908C8237590241dFc1A2efd05); // collider payout wallet
    payoutWallet2 = address(0x3Fe3EdB8552a7bb577E5b6f22150511cc76d0c21); // byt payout wallet
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

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

  // Will be used after part 1 finishes to prepare new whitelist for part 2
  function clearWhitelist() external onlyOwner{
    delete _whitelistRootHash;
  }

  function setWhitelistStartTime(uint256 _index, uint256 _time) external onlyOwner {
    require(_index < whitelistStartTime.length, "Index out of bounds");
    whitelistStartTime[_index] = _time;
  }

  function setSaleSTartTime(uint256 _index, uint256 _time) external onlyOwner {
    require(_index < saleStartTime.length, "Index out of bounds");
    saleStartTime[_index] = _time;
  }

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

  function setPartTwoGiveawayMintsCount(uint256 _count) external onlyOwner {
    totalGiveawayMints[1] = _count;
  }

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

        // Compute the merkle root
        bytes32 node = keccak256(abi.encodePacked(index, wallet, whitelistQuantity, freeMintQuantity));
        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 callerIsUser {
    require(saleStartTime[0] != 0 && block.timestamp >= saleStartTime[0], "Public sale has not started yet");
    require(quantity <= maxPublicMints, "Minting too many at once");
    if(totalSupply() + quantity > amountCollectionPartOne)
    {
      require(totalSupply() + quantity + totalGiveawayMints[0] + totalGiveawayMints[1] - totalGiveawayMintsRedeemed <= amountCollectionPartOne, "Not enough supply for that quantity");
      require(saleStartTime[1] != 0 && block.timestamp >= saleStartTime[1], "The second sale has not started yet");
      require(totalSupply() + quantity <= amountForSaleAndDev, "Not enough remaining reserved for auction to support desired mint amount");
    }
    else {
      require(totalSupply() + quantity + totalGiveawayMints[0] - totalGiveawayMintsRedeemed <= amountCollectionPartOne, "Not enough supply for that quantity");
    }
    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "Cannot mint this many");

    _safeMint(msg.sender, quantity);
    refundIfOver(publicSaleCost * quantity);
  }

  function whitelistMint(uint256 quantity, uint256 whitelistQuantity, uint256 spotInWhitelist, uint256 freeMintAmount, bytes32[] memory proof) external payable callerIsUser {
    require(whitelistValidated(_msgSender(), whitelistQuantity, spotInWhitelist, freeMintAmount, proof), "You're not on the giveaway list");

    uint256 finalMintCount;

    if(whitelistStartTime[1] != 0 && block.timestamp >= whitelistStartTime[1])
    { //Part 2 mint
      //Make sure input quantity added to current supply and reserved mints doesn't go over max collection size
      require(totalSupply() + quantity + totalGiveawayMints[0] + totalGiveawayMints[1] - totalGiveawayMintsRedeemed <= amountForSaleAndDev, "Not enough remaining reserved for auction to support desired mint amount");
      require(whitelistMints[1][msg.sender] + quantity <= whitelistQuantity, "Too many whitelist mints during this round");
      if(quantity > 0)
      {
        finalMintCount += quantity;
        whitelistMints[1][msg.sender] += quantity;
      }
      //check to see if user has any free mints available and if they have already been claimed
      if(freeMintAmount > 0 && whitelistFreeMints[msg.sender] == 0)
      {
        finalMintCount += freeMintAmount;
        whitelistFreeMints[msg.sender] += freeMintAmount;
        totalGiveawayMintsRedeemed += freeMintAmount;
      }
    }
    else{ //Part 1 mint
      //Make sure input quantity added to current supply and reserved mints doesn't go over part one collection size
      require(totalSupply() + quantity + totalGiveawayMints[0] - totalGiveawayMintsRedeemed <= amountCollectionPartOne, "Not enough supply for that quantity");
      require(whitelistStartTime[0] != 0 && block.timestamp >= whitelistStartTime[0], "Whitelist sale not started");
      require(whitelistMints[0][msg.sender] + quantity <= whitelistQuantity, "Too many whitelist mints during this round");
      if(quantity > 0)
      {
        finalMintCount += quantity;
        whitelistMints[0][msg.sender] += quantity;
      }
      //check to see if user has any free mints available and if they have already been claimed
      if(freeMintAmount > 0 && whitelistFreeMints[msg.sender] == 0)
      {
        finalMintCount += freeMintAmount;
        whitelistFreeMints[msg.sender] += freeMintAmount;
        totalGiveawayMintsRedeemed += freeMintAmount;
      }
    }

    _safeMint(msg.sender, finalMintCount);
    refundIfOver(publicSaleCost * quantity);
  }

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

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

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

  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"},{"internalType":"uint256","name":"amountPartOne_","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":"bytes32","name":"_hash","type":"bytes32"}],"name":"addToWhitelistRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountCollectionPartOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"maxPublicMints","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":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setPartTwoGiveawayMintsCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleSTartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalGiveawayMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGiveawayMintsRedeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"whitelistQuantity","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"uint256","name":"freeMintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052600060015560006008553480156200001c57600080fd5b5060405162003d4338038062003d438339810160408190526200003f91620003c3565b6040518060400160405280601181526020017021bcb83432b91021b7b63632b1ba34b7b760791b81525060405180604001604052806004815260200163086b2a0960e31b8152508686620000a26200009c620002c960201b60201c565b620002cd565b600081116200010f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001715760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000106565b8351620001869060029060208701906200031d565b5082516200019c9060039060208601906200031d565b5060a0919091526080525050600160095560c085905261010083905260e082905261012081905283831115620002155760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000106565b8381106200025b5760405162461bcd60e51b815260206004820152601260248201527150617274206f6e6520746f6f206c6172676560701b604482015260640162000106565b50506706f05b59d3b2000060155550506009600c55506005601355603c601155600a80546001600160a01b031990811673e36d11e70aee5e3908c8237590241dfc1a2efd0517909155600b8054909116733fe3edb8552a7bb577e5b6f22150511cc76d0c2117905562000441565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200032b9062000404565b90600052602060002090601f0160209004810192826200034f57600085556200039a565b82601f106200036a57805160ff19168380011785556200039a565b828001600101855582156200039a579182015b828111156200039a5782518255916020019190600101906200037d565b50620003a8929150620003ac565b5090565b5b80821115620003a85760008155600101620003ad565b600080600080600060a08688031215620003dc57600080fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b600181811c908216806200041957607f821691505b602082108114156200043b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051613850620004f36000396000818161040601528181610fb201528181610ff90152818161112b01526119b701526000818161076b015281816110d0015261185f0152600081816108940152610c850152600081816105e30152611199015260008181610d1b01528181610da901528181610de1015281816126c9015281816126f30152612d59015260008181612311015261234301526138506000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a22cb465116100c1578063d7224ba01161007a578063d7224ba0146107c3578063da3b371d146107d9578063dc33e681146107f9578063e985e9c514610819578063f2fde38b14610862578063fbe1aa511461088257600080fd5b8063a22cb465146106f9578063a4c1291c14610719578063b88d4fde14610739578063ba313ca714610759578063c7b0dcbc1461078d578063c87b56dd146107a357600080fd5b80638dbb7c06116101135780638dbb7c06146106235780639231ab2a14610643578063946f2dbf1461069157806395d89b41146106a457806398627a41146106b95780639ef17f3c146106d957600080fd5b806370a082311461057c578063715018a61461059c57806377614be7146105b15780638bc35c2f146105d15780638da5cb5b1461060557600080fd5b80632d1a12f6116101f35780633e9131fd116101ac5780633e9131fd146104c657806342842e0e146104e6578063453afb0f146105065780634f6ccce71461051c57806355f804b31461053c5780636352211e1461055c57600080fd5b80632d1a12f6146104285780632d20fb60146104485780632d60f201146104685780632db115441461047e5780632f745c59146104915780633ccfd60b146104b157600080fd5b8063150a4bbf11610245578063150a4bbf1461034857806318160ddd1461036857806323b872dd1461038757806326d8d1e5146103a75780632b933331146103c75780632c34fd69146103f457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780631187b29314610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461320b565b6108b6565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610923565b6040516102ae919061346a565b3480156102e557600080fd5b506102f96102f43660046131f2565b6109b5565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046131c8565b610a45565b005b34801561033f57600080fd5b50610331610b5d565b34801561035457600080fd5b506103316103633660046132da565b610b95565b34801561037457600080fd5b506001545b6040519081526020016102ae565b34801561039357600080fd5b506103316103a2366004613090565b610c1f565b3480156103b357600080fd5b506103316103c23660046131f2565b610c2a565b3480156103d357600080fd5b506103796103e2366004613042565b60186020526000908152604090205481565b34801561040057600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000000081565b34801561043457600080fd5b506103316104433660046132b7565b610c59565b34801561045457600080fd5b506103316104633660046131f2565b610e1d565b34801561047457600080fd5b5061037960145481565b61033161048c3660046131f2565b610eb0565b34801561049d57600080fd5b506103796104ac3660046131c8565b611235565b3480156104bd57600080fd5b506103316113ae565b3480156104d257600080fd5b506103796104e13660046131f2565b611516565b3480156104f257600080fd5b50610331610501366004613090565b61152d565b34801561051257600080fd5b5061037960155481565b34801561052857600080fd5b506103796105373660046131f2565b611548565b34801561054857600080fd5b50610331610557366004613245565b6115b1565b34801561056857600080fd5b506102f96105773660046131f2565b6115e7565b34801561058857600080fd5b50610379610597366004613042565b6115f9565b3480156105a857600080fd5b5061033161168a565b3480156105bd57600080fd5b506103316105cc3660046132da565b6116be565b3480156105dd57600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000000081565b34801561061157600080fd5b506000546001600160a01b03166102f9565b34801561062f57600080fd5b5061033161063e3660046131f2565b611742565b34801561064f57600080fd5b5061066361065e3660046131f2565b611771565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102ae565b61033161069f3660046132fc565b61178e565b3480156106b057600080fd5b506102cc611b89565b3480156106c557600080fd5b506103796106d43660046131f2565b611b98565b3480156106e557600080fd5b506103796106f43660046131f2565b611ba8565b34801561070557600080fd5b5061033161071436600461318c565b611bb8565b34801561072557600080fd5b506103316107343660046131f2565b611c7d565b34801561074557600080fd5b506103316107543660046130cc565b611cdc565b34801561076557600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000000081565b34801561079957600080fd5b5061037960135481565b3480156107af57600080fd5b506102cc6107be3660046131f2565b611d0f565b3480156107cf57600080fd5b5061037960085481565b3480156107e557600080fd5b506103796107f43660046132b7565b611ddc565b34801561080557600080fd5b50610379610814366004613042565b611dff565b34801561082557600080fd5b506102a261083436600461305d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086e57600080fd5b5061033161087d366004613042565b611e0a565b34801561088e57600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506001600160e01b0319821663780e9d6360e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461093290613720565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613720565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c2826001541190565b610a295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a50826115e7565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a20565b336001600160a01b0382161480610adb5750610adb8133610834565b610b4d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a20565b610b58838383611ea2565b505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610a209061352e565b610b9360196000612f77565b565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b8152600401610a209061352e565b60028210610c055760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610a20565b80600d8360028110610c1957610c196137d8565b01555050565b610b58838383611efe565b6000546001600160a01b03163314610c545760405162461bcd60e51b8152600401610a209061352e565b601255565b6000546001600160a01b03163314610c835760405162461bcd60e51b8152600401610a209061352e565b7f000000000000000000000000000000000000000000000000000000000000000082610cae60015490565b610cb89190613653565b1115610d165760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610a20565b610d407f000000000000000000000000000000000000000000000000000000000000000083613798565b15610da25760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610a20565b6000610dce7f00000000000000000000000000000000000000000000000000000000000000008461366b565b905060005b81811015610e1757610e05837f0000000000000000000000000000000000000000000000000000000000000000612282565b80610e0f8161377d565b915050610dd3565b50505050565b6000546001600160a01b03163314610e475760405162461bcd60e51b8152600401610a209061352e565b60026009541415610e9a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a20565b6002600955610ea8816122a0565b506001600955565b323314610eff5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a20565b600d5415801590610f125750600d544210155b610f5e5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c6520686173206e6f74207374617274656420796574006044820152606401610a20565b601354811115610fb05760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e6720746f6f206d616e79206174206f6e636500000000000000006044820152606401610a20565b7f000000000000000000000000000000000000000000000000000000000000000081610fdb60015490565b610fe59190613653565b1115611126576014546012546011546001547f000000000000000000000000000000000000000000000000000000000000000093929190611027908690613653565b6110319190613653565b61103b9190613653565b61104591906136c6565b11156110635760405162461bcd60e51b8152600401610a209061347d565b600e54158015906110765750600e544210155b6110ce5760405162461bcd60e51b815260206004820152602360248201527f546865207365636f6e642073616c6520686173206e6f742073746172746564206044820152621e595d60ea1b6064820152608401610a20565b7f0000000000000000000000000000000000000000000000000000000000000000816110f960015490565b6111039190613653565b11156111215760405162461bcd60e51b8152600401610a20906134c0565b611197565b6014547f0000000000000000000000000000000000000000000000000000000000000000906011600001548361115b60015490565b6111659190613653565b61116f9190613653565b61117991906136c6565b11156111975760405162461bcd60e51b8152600401610a209061347d565b7f0000000000000000000000000000000000000000000000000000000000000000816111c233611dff565b6111cc9190613653565b11156112125760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e742074686973206d616e7960581b6044820152606401610a20565b61121c3382612282565b6112328160155461122d919061367f565b61248a565b50565b6000611240836115f9565b82106112995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a20565b60006112a460015490565b905060008060005b8381101561134e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112ff57805192505b876001600160a01b0316836001600160a01b0316141561133b578684141561132d5750935061091d92505050565b836113378161377d565b9450505b50806113468161377d565b9150506112ac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a20565b6000546001600160a01b031633146113d85760405162461bcd60e51b8152600401610a209061352e565b600a546001600160a01b03166114235760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610a20565b600b546001600160a01b031661146e5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610a20565b600047905060006114996064611493600c54606461148c91906136c6565b8590612511565b90612590565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156114d4573d6000803e3d6000fd5b50600b546001600160a01b03166108fc6114ee84846125eb565b6040518115909202916000818181858888f19350505050158015610b58573d6000803e3d6000fd5b6011816002811061152657600080fd5b0154905081565b610b5883838360405180602001604052806000815250611cdc565b600061155360015490565b82106115ad5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a20565b5090565b6000546001600160a01b031633146115db5760405162461bcd60e51b8152600401610a209061352e565b610b58601a8383612f95565b60006115f282612647565b5192915050565b60006001600160a01b0382166116655760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a20565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146116b45760405162461bcd60e51b8152600401610a209061352e565b610b9360006127f1565b6000546001600160a01b031633146116e85760405162461bcd60e51b8152600401610a209061352e565b6002821061172e5760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610a20565b80600f8360028110610c1957610c196137d8565b6000546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610a209061352e565b601555565b604080518082019091526000808252602082015261091d82612647565b3233146117dd5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a20565b6117ea3385858585612841565b6118365760405162461bcd60e51b815260206004820152601f60248201527f596f75277265206e6f74206f6e20746865206769766561776179206c697374006044820152606401610a20565b6010546000901580159061184c57506010544210155b156119b2576014546012546011546001547f00000000000000000000000000000000000000000000000000000000000000009392919061188d908b90613653565b6118979190613653565b6118a19190613653565b6118ab91906136c6565b11156118c95760405162461bcd60e51b8152600401610a20906134c0565b3360009081526017602052604090205485906118e6908890613653565b11156119045760405162461bcd60e51b8152600401610a20906135b6565b851561193e576119148682613653565b33600090815260176020526040812080549293508892909190611938908490613653565b90915550505b60008311801561195b575033600090815260186020526040902054155b156119ad5761196a8382613653565b3360009081526018602052604081208054929350859290919061198e908490613653565b9250508190555082601460008282546119a79190613653565b90915550505b611b66565b6014547f000000000000000000000000000000000000000000000000000000000000000090601160000154886119e760015490565b6119f19190613653565b6119fb9190613653565b611a0591906136c6565b1115611a235760405162461bcd60e51b8152600401610a209061347d565b600f5415801590611a365750600f544210155b611a825760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f7420737461727465640000000000006044820152606401610a20565b336000908152601660205260409020548590611a9f908890613653565b1115611abd5760405162461bcd60e51b8152600401610a20906135b6565b8515611af757611acd8682613653565b33600090815260166020526040812080549293508892909190611af1908490613653565b90915550505b600083118015611b14575033600090815260186020526040902054155b15611b6657611b238382613653565b33600090815260186020526040812080549293508592909190611b47908490613653565b925050819055508260146000828254611b609190613653565b90915550505b611b703382612282565b611b818660155461122d919061367f565b505050505050565b60606003805461093290613720565b600f816002811061152657600080fd5b600d816002811061152657600080fd5b6001600160a01b038216331415611c115760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a20565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611ca75760405162461bcd60e51b8152600401610a209061352e565b601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950155565b611ce7848484611efe565b611cf3848484846129e3565b610e175760405162461bcd60e51b8152600401610a2090613563565b6060611d1c826001541190565b611d805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a20565b6000611d8a612af1565b90506000815111611daa5760405180602001604052806000815250611dd5565b80611db484612b00565b604051602001611dc59291906133fe565b6040516020818303038152906040525b9392505050565b60168260028110611dec57600080fd5b0160205260009081526040902054905081565b600061091d82612bfe565b6000546001600160a01b03163314611e345760405162461bcd60e51b8152600401610a209061352e565b6001600160a01b038116611e995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a20565b611232816127f1565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f0982612647565b80519091506000906001600160a01b0316336001600160a01b03161480611f40575033611f35846109b5565b6001600160a01b0316145b80611f5257508151611f529033610834565b905080611fbc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a20565b846001600160a01b031682600001516001600160a01b0316146120305760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a20565b6001600160a01b0384166120945760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a20565b6120a46000848460000151611ea2565b6001600160a01b03851660009081526005602052604081208054600192906120d69084906001600160801b031661369e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261212291859116613631565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121aa846001613653565b6000818152600460205260409020549091506001600160a01b031661223c576121d4816001541190565b1561223c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b81565b61229c828260405180602001604052806000815250612c9c565b5050565b600854816122f05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610a20565b600060016122fe8484613653565b61230891906136c6565b905061233560017f00000000000000000000000000000000000000000000000000000000000000006136c6565b81111561236a5761236760017f00000000000000000000000000000000000000000000000000000000000000006136c6565b90505b612375816001541190565b6123d05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610a20565b815b818111612476576000818152600460205260409020546001600160a01b031661246457600061240082612647565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061246e8161377d565b9150506123d2565b50612482816001613653565b600855505050565b803410156124d35760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610a20565b8034111561123257336108fc6124e983346136c6565b6040518115909202916000818181858888f1935050505015801561229c573d6000803e3d6000fd5b6000826125205750600061091d565b600061252c838561367f565b905082612539858361366b565b14611dd55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a20565b60008082116125e15760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a20565b611dd5828461366b565b60008282111561263d5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a20565b611dd582846136c6565b6040805180820190915260008082526020820152612666826001541190565b6126c55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a20565b60007f00000000000000000000000000000000000000000000000000000000000000008310612726576127187f0000000000000000000000000000000000000000000000000000000000000000846136c6565b612723906001613653565b90505b825b818110612790576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561277d57949350505050565b508061278881613709565b915050612728565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a20565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008084878786604051602001612883949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f19818403018152919052805160209091012090508460005b84518161ffff16101561298157816001166001141561291057848161ffff16815181106128d0576128d06137d8565b6020026020010151836040516020016128f3929190918252602082015260400190565b604051602081830303815290604052805190602001209250612962565b82858261ffff1681518110612927576129276137d8565b6020026020010151604051602001612949929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b61296d60028361366b565b9150806129798161375b565b9150506128a1565b5060005b6019548110156129d257601981815481106129a2576129a26137d8565b90600052602060002001548314156129c057600193505050506129da565b806129ca8161377d565b915050612985565b506000925050505b95945050505050565b60006001600160a01b0384163b15612ae557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a2790339089908890889060040161342d565b602060405180830381600087803b158015612a4157600080fd5b505af1925050508015612a71575060408051601f3d908101601f19168201909252612a6e91810190613228565b60015b612acb573d808015612a9f576040519150601f19603f3d011682016040523d82523d6000602084013e612aa4565b606091505b508051612ac35760405162461bcd60e51b8152600401610a2090613563565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ae9565b5060015b949350505050565b6060601a805461093290613720565b606081612b245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b4e5780612b388161377d565b9150612b479050600a8361366b565b9150612b28565b60008167ffffffffffffffff811115612b6957612b696137ee565b6040519080825280601f01601f191660200182016040528015612b93576020820181803683370190505b5090505b8415612ae957612ba86001836136c6565b9150612bb5600a86613798565b612bc0906030613653565b60f81b818381518110612bd557612bd56137d8565b60200101906001600160f81b031916908160001a905350612bf7600a8661366b565b9450612b97565b60006001600160a01b038216612c705760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610a20565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612cff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a20565b612d0a816001541190565b15612d575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a20565b7f0000000000000000000000000000000000000000000000000000000000000000831115612dd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a20565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612e2e908790613631565b6001600160801b03168152602001858360200151612e4c9190613631565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612f6c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f3060008884886129e3565b612f4c5760405162461bcd60e51b8152600401610a2090613563565b81612f568161377d565b9250508080612f649061377d565b915050612ee3565b506001819055611b81565b50805460008255906000526020600020908101906112329190613011565b828054612fa190613720565b90600052602060002090601f016020900481019282612fc35760008555613009565b82601f10612fdc5782800160ff19823516178555613009565b82800160010185558215613009579182015b82811115613009578235825591602001919060010190612fee565b506115ad9291505b5b808211156115ad5760008155600101613012565b80356001600160a01b038116811461303d57600080fd5b919050565b60006020828403121561305457600080fd5b611dd582613026565b6000806040838503121561307057600080fd5b61307983613026565b915061308760208401613026565b90509250929050565b6000806000606084860312156130a557600080fd5b6130ae84613026565b92506130bc60208501613026565b9150604084013590509250925092565b600080600080608085870312156130e257600080fd5b6130eb85613026565b935060206130fa818701613026565b935060408601359250606086013567ffffffffffffffff8082111561311e57600080fd5b818801915088601f83011261313257600080fd5b813581811115613144576131446137ee565b613156601f8201601f19168501613600565b9150808252898482850101111561316c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561319f57600080fd5b6131a883613026565b9150602083013580151581146131bd57600080fd5b809150509250929050565b600080604083850312156131db57600080fd5b6131e483613026565b946020939093013593505050565b60006020828403121561320457600080fd5b5035919050565b60006020828403121561321d57600080fd5b8135611dd581613804565b60006020828403121561323a57600080fd5b8151611dd581613804565b6000806020838503121561325857600080fd5b823567ffffffffffffffff8082111561327057600080fd5b818501915085601f83011261328457600080fd5b81358181111561329357600080fd5b8660208285010111156132a557600080fd5b60209290920196919550909350505050565b600080604083850312156132ca57600080fd5b8235915061308760208401613026565b600080604083850312156132ed57600080fd5b50508035926020909101359150565b600080600080600060a0868803121561331457600080fd5b8535945060208087013594506040870135935060608701359250608087013567ffffffffffffffff8082111561334957600080fd5b818901915089601f83011261335d57600080fd5b81358181111561336f5761336f6137ee565b8060051b9150613380848301613600565b8181528481019084860184860187018e101561339b57600080fd5b600095505b838610156133be5780358352600195909501949186019186016133a0565b508096505050505050509295509295909350565b600081518084526133ea8160208601602086016136dd565b601f01601f19169290920160200192915050565b600083516134108184602088016136dd565b8351908301906134248183602088016136dd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613460908301846133d2565b9695505050505050565b602081526000611dd560208301846133d2565b60208082526023908201527f4e6f7420656e6f75676820737570706c7920666f722074686174207175616e7460408201526269747960e81b606082015260800190565b60208082526048908201527f4e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602a908201527f546f6f206d616e792077686974656c697374206d696e747320647572696e67206040820152691d1a1a5cc81c9bdd5b9960b21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613629576136296137ee565b604052919050565b60006001600160801b03808316818516808303821115613424576134246137ac565b60008219821115613666576136666137ac565b500190565b60008261367a5761367a6137c2565b500490565b6000816000190483118215151615613699576136996137ac565b500290565b60006001600160801b03838116908316818110156136be576136be6137ac565b039392505050565b6000828210156136d8576136d86137ac565b500390565b60005b838110156136f85781810151838201526020016136e0565b83811115610e175750506000910152565b600081613718576137186137ac565b506000190190565b600181811c9082168061373457607f821691505b6020821081141561375557634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613773576137736137ac565b6001019392505050565b6000600019821415613791576137916137ac565b5060010190565b6000826137a7576137a76137c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123257600080fdfea26469706673582212203a850f0c50289d33f979ddb91b93a28af71c8f43ebeef60b2e962de76d55195d64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000001e640000000000000000000000000000000000000000000000000000000000001e64000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000f32

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063a22cb465116100c1578063d7224ba01161007a578063d7224ba0146107c3578063da3b371d146107d9578063dc33e681146107f9578063e985e9c514610819578063f2fde38b14610862578063fbe1aa511461088257600080fd5b8063a22cb465146106f9578063a4c1291c14610719578063b88d4fde14610739578063ba313ca714610759578063c7b0dcbc1461078d578063c87b56dd146107a357600080fd5b80638dbb7c06116101135780638dbb7c06146106235780639231ab2a14610643578063946f2dbf1461069157806395d89b41146106a457806398627a41146106b95780639ef17f3c146106d957600080fd5b806370a082311461057c578063715018a61461059c57806377614be7146105b15780638bc35c2f146105d15780638da5cb5b1461060557600080fd5b80632d1a12f6116101f35780633e9131fd116101ac5780633e9131fd146104c657806342842e0e146104e6578063453afb0f146105065780634f6ccce71461051c57806355f804b31461053c5780636352211e1461055c57600080fd5b80632d1a12f6146104285780632d20fb60146104485780632d60f201146104685780632db115441461047e5780632f745c59146104915780633ccfd60b146104b157600080fd5b8063150a4bbf11610245578063150a4bbf1461034857806318160ddd1461036857806323b872dd1461038757806326d8d1e5146103a75780632b933331146103c75780632c34fd69146103f457600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780631187b29314610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461320b565b6108b6565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610923565b6040516102ae919061346a565b3480156102e557600080fd5b506102f96102f43660046131f2565b6109b5565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046131c8565b610a45565b005b34801561033f57600080fd5b50610331610b5d565b34801561035457600080fd5b506103316103633660046132da565b610b95565b34801561037457600080fd5b506001545b6040519081526020016102ae565b34801561039357600080fd5b506103316103a2366004613090565b610c1f565b3480156103b357600080fd5b506103316103c23660046131f2565b610c2a565b3480156103d357600080fd5b506103796103e2366004613042565b60186020526000908152604090205481565b34801561040057600080fd5b506103797f0000000000000000000000000000000000000000000000000000000000000f3281565b34801561043457600080fd5b506103316104433660046132b7565b610c59565b34801561045457600080fd5b506103316104633660046131f2565b610e1d565b34801561047457600080fd5b5061037960145481565b61033161048c3660046131f2565b610eb0565b34801561049d57600080fd5b506103796104ac3660046131c8565b611235565b3480156104bd57600080fd5b506103316113ae565b3480156104d257600080fd5b506103796104e13660046131f2565b611516565b3480156104f257600080fd5b50610331610501366004613090565b61152d565b34801561051257600080fd5b5061037960155481565b34801561052857600080fd5b506103796105373660046131f2565b611548565b34801561054857600080fd5b50610331610557366004613245565b6115b1565b34801561056857600080fd5b506102f96105773660046131f2565b6115e7565b34801561058857600080fd5b50610379610597366004613042565b6115f9565b3480156105a857600080fd5b5061033161168a565b3480156105bd57600080fd5b506103316105cc3660046132da565b6116be565b3480156105dd57600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000003281565b34801561061157600080fd5b506000546001600160a01b03166102f9565b34801561062f57600080fd5b5061033161063e3660046131f2565b611742565b34801561064f57600080fd5b5061066361065e3660046131f2565b611771565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016102ae565b61033161069f3660046132fc565b61178e565b3480156106b057600080fd5b506102cc611b89565b3480156106c557600080fd5b506103796106d43660046131f2565b611b98565b3480156106e557600080fd5b506103796106f43660046131f2565b611ba8565b34801561070557600080fd5b5061033161071436600461318c565b611bb8565b34801561072557600080fd5b506103316107343660046131f2565b611c7d565b34801561074557600080fd5b506103316107543660046130cc565b611cdc565b34801561076557600080fd5b506103797f0000000000000000000000000000000000000000000000000000000000001e6481565b34801561079957600080fd5b5061037960135481565b3480156107af57600080fd5b506102cc6107be3660046131f2565b611d0f565b3480156107cf57600080fd5b5061037960085481565b3480156107e557600080fd5b506103796107f43660046132b7565b611ddc565b34801561080557600080fd5b50610379610814366004613042565b611dff565b34801561082557600080fd5b506102a261083436600461305d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561086e57600080fd5b5061033161087d366004613042565b611e0a565b34801561088e57600080fd5b506103797f000000000000000000000000000000000000000000000000000000000000012c81565b60006001600160e01b031982166380ac58cd60e01b14806108e757506001600160e01b03198216635b5e139f60e01b145b8061090257506001600160e01b0319821663780e9d6360e01b145b8061091d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461093290613720565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613720565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c2826001541190565b610a295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a50826115e7565b9050806001600160a01b0316836001600160a01b03161415610abf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a20565b336001600160a01b0382161480610adb5750610adb8133610834565b610b4d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a20565b610b58838383611ea2565b505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610a209061352e565b610b9360196000612f77565b565b6000546001600160a01b03163314610bbf5760405162461bcd60e51b8152600401610a209061352e565b60028210610c055760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610a20565b80600d8360028110610c1957610c196137d8565b01555050565b610b58838383611efe565b6000546001600160a01b03163314610c545760405162461bcd60e51b8152600401610a209061352e565b601255565b6000546001600160a01b03163314610c835760405162461bcd60e51b8152600401610a209061352e565b7f000000000000000000000000000000000000000000000000000000000000012c82610cae60015490565b610cb89190613653565b1115610d165760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610a20565b610d407f000000000000000000000000000000000000000000000000000000000000003283613798565b15610da25760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610a20565b6000610dce7f00000000000000000000000000000000000000000000000000000000000000328461366b565b905060005b81811015610e1757610e05837f0000000000000000000000000000000000000000000000000000000000000032612282565b80610e0f8161377d565b915050610dd3565b50505050565b6000546001600160a01b03163314610e475760405162461bcd60e51b8152600401610a209061352e565b60026009541415610e9a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a20565b6002600955610ea8816122a0565b506001600955565b323314610eff5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a20565b600d5415801590610f125750600d544210155b610f5e5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c6520686173206e6f74207374617274656420796574006044820152606401610a20565b601354811115610fb05760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e6720746f6f206d616e79206174206f6e636500000000000000006044820152606401610a20565b7f0000000000000000000000000000000000000000000000000000000000000f3281610fdb60015490565b610fe59190613653565b1115611126576014546012546011546001547f0000000000000000000000000000000000000000000000000000000000000f3293929190611027908690613653565b6110319190613653565b61103b9190613653565b61104591906136c6565b11156110635760405162461bcd60e51b8152600401610a209061347d565b600e54158015906110765750600e544210155b6110ce5760405162461bcd60e51b815260206004820152602360248201527f546865207365636f6e642073616c6520686173206e6f742073746172746564206044820152621e595d60ea1b6064820152608401610a20565b7f0000000000000000000000000000000000000000000000000000000000001e64816110f960015490565b6111039190613653565b11156111215760405162461bcd60e51b8152600401610a20906134c0565b611197565b6014547f0000000000000000000000000000000000000000000000000000000000000f32906011600001548361115b60015490565b6111659190613653565b61116f9190613653565b61117991906136c6565b11156111975760405162461bcd60e51b8152600401610a209061347d565b7f0000000000000000000000000000000000000000000000000000000000000032816111c233611dff565b6111cc9190613653565b11156112125760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74206d696e742074686973206d616e7960581b6044820152606401610a20565b61121c3382612282565b6112328160155461122d919061367f565b61248a565b50565b6000611240836115f9565b82106112995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a20565b60006112a460015490565b905060008060005b8381101561134e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112ff57805192505b876001600160a01b0316836001600160a01b0316141561133b578684141561132d5750935061091d92505050565b836113378161377d565b9450505b50806113468161377d565b9150506112ac565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a20565b6000546001600160a01b031633146113d85760405162461bcd60e51b8152600401610a209061352e565b600a546001600160a01b03166114235760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610a20565b600b546001600160a01b031661146e5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610a20565b600047905060006114996064611493600c54606461148c91906136c6565b8590612511565b90612590565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156114d4573d6000803e3d6000fd5b50600b546001600160a01b03166108fc6114ee84846125eb565b6040518115909202916000818181858888f19350505050158015610b58573d6000803e3d6000fd5b6011816002811061152657600080fd5b0154905081565b610b5883838360405180602001604052806000815250611cdc565b600061155360015490565b82106115ad5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a20565b5090565b6000546001600160a01b031633146115db5760405162461bcd60e51b8152600401610a209061352e565b610b58601a8383612f95565b60006115f282612647565b5192915050565b60006001600160a01b0382166116655760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a20565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146116b45760405162461bcd60e51b8152600401610a209061352e565b610b9360006127f1565b6000546001600160a01b031633146116e85760405162461bcd60e51b8152600401610a209061352e565b6002821061172e5760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610a20565b80600f8360028110610c1957610c196137d8565b6000546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610a209061352e565b601555565b604080518082019091526000808252602082015261091d82612647565b3233146117dd5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a20565b6117ea3385858585612841565b6118365760405162461bcd60e51b815260206004820152601f60248201527f596f75277265206e6f74206f6e20746865206769766561776179206c697374006044820152606401610a20565b6010546000901580159061184c57506010544210155b156119b2576014546012546011546001547f0000000000000000000000000000000000000000000000000000000000001e649392919061188d908b90613653565b6118979190613653565b6118a19190613653565b6118ab91906136c6565b11156118c95760405162461bcd60e51b8152600401610a20906134c0565b3360009081526017602052604090205485906118e6908890613653565b11156119045760405162461bcd60e51b8152600401610a20906135b6565b851561193e576119148682613653565b33600090815260176020526040812080549293508892909190611938908490613653565b90915550505b60008311801561195b575033600090815260186020526040902054155b156119ad5761196a8382613653565b3360009081526018602052604081208054929350859290919061198e908490613653565b9250508190555082601460008282546119a79190613653565b90915550505b611b66565b6014547f0000000000000000000000000000000000000000000000000000000000000f3290601160000154886119e760015490565b6119f19190613653565b6119fb9190613653565b611a0591906136c6565b1115611a235760405162461bcd60e51b8152600401610a209061347d565b600f5415801590611a365750600f544210155b611a825760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206e6f7420737461727465640000000000006044820152606401610a20565b336000908152601660205260409020548590611a9f908890613653565b1115611abd5760405162461bcd60e51b8152600401610a20906135b6565b8515611af757611acd8682613653565b33600090815260166020526040812080549293508892909190611af1908490613653565b90915550505b600083118015611b14575033600090815260186020526040902054155b15611b6657611b238382613653565b33600090815260186020526040812080549293508592909190611b47908490613653565b925050819055508260146000828254611b609190613653565b90915550505b611b703382612282565b611b818660155461122d919061367f565b505050505050565b60606003805461093290613720565b600f816002811061152657600080fd5b600d816002811061152657600080fd5b6001600160a01b038216331415611c115760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a20565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611ca75760405162461bcd60e51b8152600401610a209061352e565b601980546001810182556000919091527f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96950155565b611ce7848484611efe565b611cf3848484846129e3565b610e175760405162461bcd60e51b8152600401610a2090613563565b6060611d1c826001541190565b611d805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a20565b6000611d8a612af1565b90506000815111611daa5760405180602001604052806000815250611dd5565b80611db484612b00565b604051602001611dc59291906133fe565b6040516020818303038152906040525b9392505050565b60168260028110611dec57600080fd5b0160205260009081526040902054905081565b600061091d82612bfe565b6000546001600160a01b03163314611e345760405162461bcd60e51b8152600401610a209061352e565b6001600160a01b038116611e995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a20565b611232816127f1565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f0982612647565b80519091506000906001600160a01b0316336001600160a01b03161480611f40575033611f35846109b5565b6001600160a01b0316145b80611f5257508151611f529033610834565b905080611fbc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a20565b846001600160a01b031682600001516001600160a01b0316146120305760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a20565b6001600160a01b0384166120945760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a20565b6120a46000848460000151611ea2565b6001600160a01b03851660009081526005602052604081208054600192906120d69084906001600160801b031661369e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261212291859116613631565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121aa846001613653565b6000818152600460205260409020549091506001600160a01b031661223c576121d4816001541190565b1561223c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b81565b61229c828260405180602001604052806000815250612c9c565b5050565b600854816122f05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610a20565b600060016122fe8484613653565b61230891906136c6565b905061233560017f0000000000000000000000000000000000000000000000000000000000001e646136c6565b81111561236a5761236760017f0000000000000000000000000000000000000000000000000000000000001e646136c6565b90505b612375816001541190565b6123d05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610a20565b815b818111612476576000818152600460205260409020546001600160a01b031661246457600061240082612647565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061246e8161377d565b9150506123d2565b50612482816001613653565b600855505050565b803410156124d35760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610a20565b8034111561123257336108fc6124e983346136c6565b6040518115909202916000818181858888f1935050505015801561229c573d6000803e3d6000fd5b6000826125205750600061091d565b600061252c838561367f565b905082612539858361366b565b14611dd55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a20565b60008082116125e15760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610a20565b611dd5828461366b565b60008282111561263d5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610a20565b611dd582846136c6565b6040805180820190915260008082526020820152612666826001541190565b6126c55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a20565b60007f00000000000000000000000000000000000000000000000000000000000000328310612726576127187f0000000000000000000000000000000000000000000000000000000000000032846136c6565b612723906001613653565b90505b825b818110612790576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561277d57949350505050565b508061278881613709565b915050612728565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a20565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008084878786604051602001612883949392919093845260609290921b6bffffffffffffffffffffffff191660208401526034830152605482015260740190565b60408051601f19818403018152919052805160209091012090508460005b84518161ffff16101561298157816001166001141561291057848161ffff16815181106128d0576128d06137d8565b6020026020010151836040516020016128f3929190918252602082015260400190565b604051602081830303815290604052805190602001209250612962565b82858261ffff1681518110612927576129276137d8565b6020026020010151604051602001612949929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b61296d60028361366b565b9150806129798161375b565b9150506128a1565b5060005b6019548110156129d257601981815481106129a2576129a26137d8565b90600052602060002001548314156129c057600193505050506129da565b806129ca8161377d565b915050612985565b506000925050505b95945050505050565b60006001600160a01b0384163b15612ae557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a2790339089908890889060040161342d565b602060405180830381600087803b158015612a4157600080fd5b505af1925050508015612a71575060408051601f3d908101601f19168201909252612a6e91810190613228565b60015b612acb573d808015612a9f576040519150601f19603f3d011682016040523d82523d6000602084013e612aa4565b606091505b508051612ac35760405162461bcd60e51b8152600401610a2090613563565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ae9565b5060015b949350505050565b6060601a805461093290613720565b606081612b245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b4e5780612b388161377d565b9150612b479050600a8361366b565b9150612b28565b60008167ffffffffffffffff811115612b6957612b696137ee565b6040519080825280601f01601f191660200182016040528015612b93576020820181803683370190505b5090505b8415612ae957612ba86001836136c6565b9150612bb5600a86613798565b612bc0906030613653565b60f81b818381518110612bd557612bd56137d8565b60200101906001600160f81b031916908160001a905350612bf7600a8661366b565b9450612b97565b60006001600160a01b038216612c705760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610a20565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612cff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a20565b612d0a816001541190565b15612d575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a20565b7f0000000000000000000000000000000000000000000000000000000000000032831115612dd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a20565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612e2e908790613631565b6001600160801b03168152602001858360200151612e4c9190613631565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612f6c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f3060008884886129e3565b612f4c5760405162461bcd60e51b8152600401610a2090613563565b81612f568161377d565b9250508080612f649061377d565b915050612ee3565b506001819055611b81565b50805460008255906000526020600020908101906112329190613011565b828054612fa190613720565b90600052602060002090601f016020900481019282612fc35760008555613009565b82601f10612fdc5782800160ff19823516178555613009565b82800160010185558215613009579182015b82811115613009578235825591602001919060010190612fee565b506115ad9291505b5b808211156115ad5760008155600101613012565b80356001600160a01b038116811461303d57600080fd5b919050565b60006020828403121561305457600080fd5b611dd582613026565b6000806040838503121561307057600080fd5b61307983613026565b915061308760208401613026565b90509250929050565b6000806000606084860312156130a557600080fd5b6130ae84613026565b92506130bc60208501613026565b9150604084013590509250925092565b600080600080608085870312156130e257600080fd5b6130eb85613026565b935060206130fa818701613026565b935060408601359250606086013567ffffffffffffffff8082111561311e57600080fd5b818801915088601f83011261313257600080fd5b813581811115613144576131446137ee565b613156601f8201601f19168501613600565b9150808252898482850101111561316c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561319f57600080fd5b6131a883613026565b9150602083013580151581146131bd57600080fd5b809150509250929050565b600080604083850312156131db57600080fd5b6131e483613026565b946020939093013593505050565b60006020828403121561320457600080fd5b5035919050565b60006020828403121561321d57600080fd5b8135611dd581613804565b60006020828403121561323a57600080fd5b8151611dd581613804565b6000806020838503121561325857600080fd5b823567ffffffffffffffff8082111561327057600080fd5b818501915085601f83011261328457600080fd5b81358181111561329357600080fd5b8660208285010111156132a557600080fd5b60209290920196919550909350505050565b600080604083850312156132ca57600080fd5b8235915061308760208401613026565b600080604083850312156132ed57600080fd5b50508035926020909101359150565b600080600080600060a0868803121561331457600080fd5b8535945060208087013594506040870135935060608701359250608087013567ffffffffffffffff8082111561334957600080fd5b818901915089601f83011261335d57600080fd5b81358181111561336f5761336f6137ee565b8060051b9150613380848301613600565b8181528481019084860184860187018e101561339b57600080fd5b600095505b838610156133be5780358352600195909501949186019186016133a0565b508096505050505050509295509295909350565b600081518084526133ea8160208601602086016136dd565b601f01601f19169290920160200192915050565b600083516134108184602088016136dd565b8351908301906134248183602088016136dd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613460908301846133d2565b9695505050505050565b602081526000611dd560208301846133d2565b60208082526023908201527f4e6f7420656e6f75676820737570706c7920666f722074686174207175616e7460408201526269747960e81b606082015260800190565b60208082526048908201527f4e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602a908201527f546f6f206d616e792077686974656c697374206d696e747320647572696e67206040820152691d1a1a5cc81c9bdd5b9960b21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613629576136296137ee565b604052919050565b60006001600160801b03808316818516808303821115613424576134246137ac565b60008219821115613666576136666137ac565b500190565b60008261367a5761367a6137c2565b500490565b6000816000190483118215151615613699576136996137ac565b500290565b60006001600160801b03838116908316818110156136be576136be6137ac565b039392505050565b6000828210156136d8576136d86137ac565b500390565b60005b838110156136f85781810151838201526020016136e0565b83811115610e175750506000910152565b600081613718576137186137ac565b506000190190565b600181811c9082168061373457607f821691505b6020821081141561375557634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613773576137736137ac565b6001019392505050565b6000600019821415613791576137916137ac565b5060010190565b6000826137a7576137a76137c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123257600080fdfea26469706673582212203a850f0c50289d33f979ddb91b93a28af71c8f43ebeef60b2e962de76d55195d64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000001e640000000000000000000000000000000000000000000000000000000000001e64000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000000f32

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 7780
Arg [2] : amountForAuctionAndDev_ (uint256): 7780
Arg [3] : amountForDevs_ (uint256): 300
Arg [4] : amountPartOne_ (uint256): 3890

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e64
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001e64
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000f32


Deployed Bytecode Sourcemap

43802:9389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31496:370;;;;;;;;;;-1:-1:-1;31496:370:0;;;;;:::i;:::-;;:::i;:::-;;;8081:14:1;;8074:22;8056:41;;8044:2;8029:18;31496:370:0;;;;;;;;33222:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34747:204::-;;;;;;;;;;-1:-1:-1;34747:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7379:32:1;;;7361:51;;7349:2;7334:18;34747:204:0;7316:102:1;34310:379:0;;;;;;;;;;-1:-1:-1;34310:379:0;;;;;:::i;:::-;;:::i;:::-;;45963:82;;;;;;;;;;;;;:::i;46258:186::-;;;;;;;;;;-1:-1:-1;46258:186:0;;;;;:::i;:::-;;:::i;30057:94::-;;;;;;;;;;-1:-1:-1;30133:12:0;;30057:94;;;25602:25:1;;;25590:2;25575:18;30057:94:0;25557:76:1;35597:142:0;;;;;;;;;;-1:-1:-1;35597:142:0;;;;;:::i;:::-;;:::i;46552:116::-;;;;;;;;;;-1:-1:-1;46552:116:0;;;;;:::i;:::-;;:::i;44624:53::-;;;;;;;;;;-1:-1:-1;44624:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;44048:48;;;;;;;;;;;;;;;51594:406;;;;;;;;;;-1:-1:-1;51594:406:0;;;;;:::i;:::-;;:::i;52804:118::-;;;;;;;;;;-1:-1:-1;52804:118:0;;;;;:::i;:::-;;:::i;44345:41::-;;;;;;;;;;;;;;;;47700:1141;;;;;;:::i;:::-;;:::i;30688:744::-;;;;;;;;;;-1:-1:-1;30688:744:0;;;;;:::i;:::-;;:::i;52358:440::-;;;;;;;;;;;;;:::i;44268:36::-;;;;;;;;;;-1:-1:-1;44268:36:0;;;;;:::i;:::-;;:::i;35802:157::-;;;;;;;;;;-1:-1:-1;35802:157:0;;;;;:::i;:::-;;:::i;44393:29::-;;;;;;;;;;;;;;;;30220:177;;;;;;;;;;-1:-1:-1;30220:177:0;;;;;:::i;:::-;;:::i;52174:100::-;;;;;;;;;;-1:-1:-1;52174:100:0;;;;;:::i;:::-;;:::i;33045:118::-;;;;;;;;;;-1:-1:-1;33045:118:0;;;;;:::i;:::-;;:::i;31922:211::-;;;;;;;;;;-1:-1:-1;31922:211:0;;;;;:::i;:::-;;:::i;3862:94::-;;;;;;;;;;;;;:::i;46051:201::-;;;;;;;;;;-1:-1:-1;46051:201:0;;;;;:::i;:::-;;:::i;43903:48::-;;;;;;;;;;;;;;;3211:87;;;;;;;;;;-1:-1:-1;3257:7:0;3284:6;-1:-1:-1;;;;;3284:6:0;3211:87;;46450:96;;;;;;;;;;-1:-1:-1;46450:96:0;;;;;:::i;:::-;;:::i;53041:147::-;;;;;;;;;;-1:-1:-1;53041:147:0;;;;;:::i;:::-;;:::i;:::-;;;;25321:13:1;;-1:-1:-1;;;;;25317:39:1;25299:58;;25417:4;25405:17;;;25399:24;25425:18;25395:49;25373:20;;;25366:79;;;;25272:18;53041:147:0;25254:197:1;48847:2506:0;;;;;;:::i;:::-;;:::i;33377:98::-;;;;;;;;;;;;;:::i;44227:36::-;;;;;;;;;;-1:-1:-1;44227:36:0;;;;;:::i;:::-;;:::i;44191:31::-;;;;;;;;;;-1:-1:-1;44191:31:0;;;;;:::i;:::-;;:::i;35015:274::-;;;;;;;;;;-1:-1:-1;35015:274:0;;;;;:::i;:::-;;:::i;45768:112::-;;;;;;;;;;-1:-1:-1;45768:112:0;;;;;:::i;:::-;;:::i;36022:311::-;;;;;;;;;;-1:-1:-1;36022:311:0;;;;;:::i;:::-;;:::i;43999:44::-;;;;;;;;;;;;;;;44309:29;;;;;;;;;;;;;;;;33538:394;;;;;;;;;;-1:-1:-1;33538:394:0;;;;;:::i;:::-;;:::i;40437:43::-;;;;;;;;;;;;;;;;44565:52;;;;;;;;;;-1:-1:-1;44565:52:0;;;;;:::i;:::-;;:::i;52928:107::-;;;;;;;;;;-1:-1:-1;52928:107:0;;;;;:::i;:::-;;:::i;35352:186::-;;;;;;;;;;-1:-1:-1;35352:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;35497:25:0;;;35474:4;35497:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35352:186;4111:192;;;;;;;;;;-1:-1:-1;4111:192:0;;;;;:::i;:::-;;:::i;43956:38::-;;;;;;;;;;;;;;;31496:370;31623:4;-1:-1:-1;;;;;;31653:40:0;;-1:-1:-1;;;31653:40:0;;:99;;-1:-1:-1;;;;;;;31704:48:0;;-1:-1:-1;;;31704:48:0;31653:99;:160;;;-1:-1:-1;;;;;;;31763:50:0;;-1:-1:-1;;;31763:50:0;31653:160;:207;;;-1:-1:-1;;;;;;;;;;20692:40:0;;;31824:36;31639:221;31496:370;-1:-1:-1;;31496:370:0:o;33222:94::-;33276:13;33305:5;33298:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33222:94;:::o;34747:204::-;34815:7;34839:16;34847:7;36659:12;;-1:-1:-1;36649:22:0;36572:105;34839:16;34831:74;;;;-1:-1:-1;;;34831:74:0;;24476:2:1;34831:74:0;;;24458:21:1;24515:2;24495:18;;;24488:30;24554:34;24534:18;;;24527:62;-1:-1:-1;;;24605:18:1;;;24598:43;24658:19;;34831:74:0;;;;;;;;;-1:-1:-1;34921:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34921:24:0;;34747:204::o;34310:379::-;34379:13;34395:24;34411:7;34395:15;:24::i;:::-;34379:40;;34440:5;-1:-1:-1;;;;;34434:11:0;:2;-1:-1:-1;;;;;34434:11:0;;;34426:58;;;;-1:-1:-1;;;34426:58:0;;19432:2:1;34426:58:0;;;19414:21:1;19471:2;19451:18;;;19444:30;19510:34;19490:18;;;19483:62;-1:-1:-1;;;19561:18:1;;;19554:32;19603:19;;34426:58:0;19404:224:1;34426:58:0;2167:10;-1:-1:-1;;;;;34509:21:0;;;;:62;;-1:-1:-1;34534:37:0;34551:5;2167:10;35352:186;:::i;34534:37::-;34493:153;;;;-1:-1:-1;;;34493:153:0;;13578:2:1;34493:153:0;;;13560:21:1;13617:2;13597:18;;;13590:30;13656:34;13636:18;;;13629:62;13727:27;13707:18;;;13700:55;13772:19;;34493:153:0;13550:247:1;34493:153:0;34655:28;34664:2;34668:7;34677:5;34655:8;:28::i;:::-;34372:317;34310:379;;:::o;45963:82::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;46014:25:::1;46021:18;;46014:25;:::i;:::-;45963:82::o:0;46258:186::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;46358:20:::1;46349:6;:29;46341:61;;;::::0;-1:-1:-1;;;46341:61:0;;22119:2:1;46341:61:0::1;::::0;::::1;22101:21:1::0;22158:2;22138:18;;;22131:30;-1:-1:-1;;;22177:18:1;;;22170:49;22236:18;;46341:61:0::1;22091:169:1::0;46341:61:0::1;46433:5;46409:13;46423:6;46409:21;;;;;;;:::i;:::-;;:29:::0;-1:-1:-1;;46258:186:0:o;35597:142::-;35705:28;35715:4;35721:2;35725:7;35705:9;:28::i;46552:116::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;46632:21;:30;46552:116::o;51594:406::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;51704:13:::1;51692:8;51676:13;30133:12:::0;;;30057:94;51676:13:::1;:24;;;;:::i;:::-;:41;;51668:93;;;::::0;-1:-1:-1;;;51668:93:0;;21711:2:1;51668:93:0::1;::::0;::::1;21693:21:1::0;21750:2;21730:18;;;21723:30;21789:34;21769:18;;;21762:62;-1:-1:-1;;;21840:18:1;;;21833:37;21887:19;;51668:93:0::1;21683:229:1::0;51668:93:0::1;51776:23;51787:12;51776:8:::0;:23:::1;:::i;:::-;:28:::0;51768:85:::1;;;::::0;-1:-1:-1;;;51768:85:0;;10115:2:1;51768:85:0::1;::::0;::::1;10097:21:1::0;10154:2;10134:18;;;10127:30;10193:34;10173:18;;;10166:62;-1:-1:-1;;;10244:18:1;;;10237:42;10296:19;;51768:85:0::1;10087:234:1::0;51768:85:0::1;51860:17;51880:23;51891:12;51880:8:::0;:23:::1;:::i;:::-;51860:43;;51915:9;51910:85;51934:9;51930:1;:13;51910:85;;;51959:28;51969:3;51974:12;51959:9;:28::i;:::-;51945:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51910:85;;;;51661:339;51594:406:::0;;:::o;52804:118::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;18186:1:::1;18782:7;;:19;;18774:63;;;::::0;-1:-1:-1;;;18774:63:0;;23700:2:1;18774:63:0::1;::::0;::::1;23682:21:1::0;23739:2;23719:18;;;23712:30;23778:33;23758:18;;;23751:61;23829:18;;18774:63:0::1;23672:181:1::0;18774:63:0::1;18186:1;18915:7;:18:::0;52888:28:::2;52907:8:::0;52888:18:::2;:28::i;:::-;-1:-1:-1::0;18142:1:0::1;19094:7;:22:::0;52804:118::o;47700:1141::-;45690:9;45703:10;45690:23;45682:66;;;;-1:-1:-1;;;45682:66:0;;13219:2:1;45682:66:0;;;13201:21:1;13258:2;13238:18;;;13231:30;13297:32;13277:18;;;13270:60;13347:18;;45682:66:0;13191:180:1;45682:66:0;47783:13:::1;:16:::0;:21;;::::1;::::0;:60:::1;;-1:-1:-1::0;47827:13:0::1;:16:::0;47808:15:::1;:35;;47783:60;47775:104;;;::::0;-1:-1:-1;;;47775:104:0;;15173:2:1;47775:104:0::1;::::0;::::1;15155:21:1::0;15212:2;15192:18;;;15185:30;15251:33;15231:18;;;15224:61;15302:18;;47775:104:0::1;15145:181:1::0;47775:104:0::1;47906:14;;47894:8;:26;;47886:63;;;::::0;-1:-1:-1;;;47886:63:0;;19079:2:1;47886:63:0::1;::::0;::::1;19061:21:1::0;19118:2;19098:18;;;19091:30;19157:26;19137:18;;;19130:54;19201:18;;47886:63:0::1;19051:174:1::0;47886:63:0::1;47986:23;47975:8;47959:13;30133:12:::0;;;30057:94;47959:13:::1;:24;;;;:::i;:::-;:50;47956:691;;;48108:26;::::0;48084:21;;:18:::1;48060:21:::0;48103:1:::1;30133:12:::0;48138:23:::1;::::0;48108:26;48084:21;48060;48033:24:::1;::::0;48049:8;;48033:24:::1;:::i;:::-;:48;;;;:::i;:::-;:72;;;;:::i;:::-;:101;;;;:::i;:::-;:128;;48025:176;;;;-1:-1:-1::0;;;48025:176:0::1;;;;;;;:::i;:::-;48218:16:::0;;:21;;::::1;::::0;:60:::1;;-1:-1:-1::0;48262:16:0;;48243:15:::1;:35;;48218:60;48210:108;;;::::0;-1:-1:-1;;;48210:108:0;;14357:2:1;48210:108:0::1;::::0;::::1;14339:21:1::0;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:33;14529:19;;48210:108:0::1;14329:225:1::0;48210:108:0::1;48363:19;48351:8;48335:13;30133:12:::0;;;30057:94;48335:13:::1;:24;;;;:::i;:::-;:47;;48327:132;;;;-1:-1:-1::0;;;48327:132:0::1;;;;;;;:::i;:::-;47956:691;;;48546:26;::::0;48576:23:::1;::::0;48522:18:::1;48541:1;48522:21;;48511:8;48495:13;30133:12:::0;;;30057:94;48495:13:::1;:24;;;;:::i;:::-;:48;;;;:::i;:::-;:77;;;;:::i;:::-;:104;;48487:152;;;;-1:-1:-1::0;;;48487:152:0::1;;;;;;;:::i;:::-;48700:23;48688:8;48661:24;48674:10;48661:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;48653:96;;;::::0;-1:-1:-1;;;48653:96:0;;18374:2:1;48653:96:0::1;::::0;::::1;18356:21:1::0;18413:2;18393:18;;;18386:30;-1:-1:-1;;;18432:18:1;;;18425:51;18493:18;;48653:96:0::1;18346:171:1::0;48653:96:0::1;48758:31;48768:10;48780:8;48758:9;:31::i;:::-;48796:39;48826:8;48809:14;;:25;;;;:::i;:::-;48796:12;:39::i;:::-;47700:1141:::0;:::o;30688:744::-;30797:7;30832:16;30842:5;30832:9;:16::i;:::-;30824:5;:24;30816:71;;;;-1:-1:-1;;;30816:71:0;;8534:2:1;30816:71:0;;;8516:21:1;8573:2;8553:18;;;8546:30;8612:34;8592:18;;;8585:62;-1:-1:-1;;;8663:18:1;;;8656:32;8705:19;;30816:71:0;8506:224:1;30816:71:0;30894:22;30919:13;30133:12;;;30057:94;30919:13;30894:38;;30939:19;30969:25;31019:9;31014:350;31038:14;31034:1;:18;31014:350;;;31068:31;31102:14;;;:11;:14;;;;;;;;;31068:48;;;;;;;;;-1:-1:-1;;;;;31068:48:0;;;;;-1:-1:-1;;;31068:48:0;;;;;;;;;;;;31129:28;31125:89;;31190:14;;;-1:-1:-1;31125:89:0;31247:5;-1:-1:-1;;;;;31226:26:0;:17;-1:-1:-1;;;;;31226:26:0;;31222:135;;;31284:5;31269:11;:20;31265:59;;;-1:-1:-1;31311:1:0;-1:-1:-1;31304:8:0;;-1:-1:-1;;;31304:8:0;31265:59;31334:13;;;;:::i;:::-;;;;31222:135;-1:-1:-1;31054:3:0;;;;:::i;:::-;;;;31014:350;;;-1:-1:-1;31370:56:0;;-1:-1:-1;;;31370:56:0;;22878:2:1;31370:56:0;;;22860:21:1;22917:2;22897:18;;;22890:30;22956:34;22936:18;;;22929:62;-1:-1:-1;;;23007:18:1;;;23000:44;23061:19;;31370:56:0;22850:236:1;52358:440:0;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;52416:13:::1;::::0;-1:-1:-1;;;;;52416:13:0::1;52408:56;;;::::0;-1:-1:-1;;;52408:56:0;;20964:2:1;52408:56:0::1;::::0;::::1;20946:21:1::0;21003:2;20983:18;;;20976:30;-1:-1:-1;;;21022:18:1;;;21015:46;21078:18;;52408:56:0::1;20936:166:1::0;52408:56:0::1;52483:13;::::0;-1:-1:-1;;;;;52483:13:0::1;52475:56;;;::::0;-1:-1:-1;;;52475:56:0;;11742:2:1;52475:56:0::1;::::0;::::1;11724:21:1::0;11781:2;11761:18;;;11754:30;-1:-1:-1;;;11800:18:1;;;11793:46;11856:18;;52475:56:0::1;11714:166:1::0;52475:56:0::1;52542:15;52560:21;52542:39;;52592:21;52616:47;52659:3;52616:38;52634:19;;52628:3;:25;;;;:::i;:::-;52616:7:::0;;:11:::1;:38::i;:::-;:42:::0;::::1;:47::i;:::-;52682:13;::::0;52674:46:::1;::::0;52592:71;;-1:-1:-1;;;;;;52682:13:0::1;::::0;52674:46;::::1;;;::::0;52592:71;;52682:13:::1;52674:46:::0;52682:13;52674:46;52592:71;52682:13;52674:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52739:13:0::1;::::0;-1:-1:-1;;;;;52739:13:0::1;52731:59;52763:26;:7:::0;52775:13;52763:11:::1;:26::i;:::-;52731:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;44268:36:::0;;;;;;;;;;;;;;;-1:-1:-1;44268:36:0;:::o;35802:157::-;35914:39;35931:4;35937:2;35941:7;35914:39;;;;;;;;;;;;:16;:39::i;30220:177::-;30287:7;30319:13;30133:12;;;30057:94;30319:13;30311:5;:21;30303:69;;;;-1:-1:-1;;;30303:69:0;;10932:2:1;30303:69:0;;;10914:21:1;10971:2;10951:18;;;10944:30;11010:34;10990:18;;;10983:62;-1:-1:-1;;;11061:18:1;;;11054:33;11104:19;;30303:69:0;10904:225:1;30303:69:0;-1:-1:-1;30386:5:0;30220:177::o;52174:100::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;52245:23:::1;:13;52261:7:::0;;52245:23:::1;:::i;33045:118::-:0;33109:7;33132:20;33144:7;33132:11;:20::i;:::-;:25;;33045:118;-1:-1:-1;;33045:118:0:o;31922:211::-;31986:7;-1:-1:-1;;;;;32010:19:0;;32002:75;;;;-1:-1:-1;;;32002:75:0;;14761:2:1;32002:75:0;;;14743:21:1;14800:2;14780:18;;;14773:30;14839:34;14819:18;;;14812:62;-1:-1:-1;;;14890:18:1;;;14883:41;14941:19;;32002:75:0;14733:233:1;32002:75:0;-1:-1:-1;;;;;;32099:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32099:27:0;;31922:211::o;3862:94::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;3927:21:::1;3945:1;3927:9;:21::i;46051:201::-:0;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;46156:25:::1;46147:6;:34;46139:66;;;::::0;-1:-1:-1;;;46139:66:0;;22119:2:1;46139:66:0::1;::::0;::::1;22101:21:1::0;22158:2;22138:18;;;22131:30;-1:-1:-1;;;22177:18:1;;;22170:49;22236:18;;46139:66:0::1;22091:169:1::0;46139:66:0::1;46241:5;46212:18;46231:6;46212:26;;;;;;;:::i;46450:96::-:0;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;46518:14:::1;:22:::0;46450:96::o;53041:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;53162:20:0;53174:7;53162:11;:20::i;48847:2506::-;45690:9;45703:10;45690:23;45682:66;;;;-1:-1:-1;;;45682:66:0;;13219:2:1;45682:66:0;;;13201:21:1;13258:2;13238:18;;;13231:30;13297:32;13277:18;;;13270:60;13347:18;;45682:66:0;13191:180:1;45682:66:0;49033:91:::1;2167:10:::0;49066:17:::1;49085:15;49102:14;49118:5;49033:18;:91::i;:::-;49025:135;;;::::0;-1:-1:-1;;;49025:135:0;;8937:2:1;49025:135:0::1;::::0;::::1;8919:21:1::0;8976:2;8956:18;;;8949:30;9015:33;8995:18;;;8988:61;9066:18;;49025:135:0::1;8909:181:1::0;49025:135:0::1;49203:21:::0;;49169:22:::1;::::0;49203:26;;::::1;::::0;:70:::1;;-1:-1:-1::0;49252:21:0;;49233:15:::1;:40;;49203:70;49200:2056;;;49499:26;::::0;49475:21;;:18:::1;49451:21:::0;49494:1:::1;30133:12:::0;49529:19:::1;::::0;49499:26;49475:21;49451;49424:24:::1;::::0;49440:8;;49424:24:::1;:::i;:::-;:48;;;;:::i;:::-;:72;;;;:::i;:::-;:101;;;;:::i;:::-;:124;;49416:209;;;;-1:-1:-1::0;;;49416:209:0::1;;;;;;;:::i;:::-;49660:10;49642:29;::::0;;;:17;:29:::1;::::0;;;;;49686:17;;49642:40:::1;::::0;49674:8;;49642:40:::1;:::i;:::-;:61;;49634:116;;;;-1:-1:-1::0;;;49634:116:0::1;;;;;;;:::i;:::-;49762:12:::0;;49759:123:::1;;49794:26;49812:8:::0;49794:26;::::1;:::i;:::-;49849:10;49831:29;::::0;;;:17;:29:::1;::::0;;;;:41;;49794:26;;-1:-1:-1;49864:8:0;;49831:29;;;:41:::1;::::0;49864:8;;49831:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;49759:123:0::1;50007:1;49990:14;:18;:57;;;;-1:-1:-1::0;50031:10:0::1;50012:30;::::0;;;:18:::1;:30;::::0;;;;;:35;49990:57:::1;49987:236;;;50067:32;50085:14:::0;50067:32;::::1;:::i;:::-;50129:10;50110:30;::::0;;;:18:::1;:30;::::0;;;;:48;;50067:32;;-1:-1:-1;50144:14:0;;50110:30;;;:48:::1;::::0;50144:14;;50110:48:::1;:::i;:::-;;;;;;;;50199:14;50169:26;;:44;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49987:236:0::1;49200:2056;;;50440:26;::::0;50470:23:::1;::::0;50416:18:::1;50435:1;50416:21;;50405:8;50389:13;30133:12:::0;;;30057:94;50389:13:::1;:24;;;;:::i;:::-;:48;;;;:::i;:::-;:77;;;;:::i;:::-;:104;;50381:152;;;;-1:-1:-1::0;;;50381:152:0::1;;;;;;;:::i;:::-;50550:18;:21:::0;:26;;::::1;::::0;:70:::1;;-1:-1:-1::0;50599:18:0::1;:21:::0;50580:15:::1;:40;;50550:70;50542:109;;;::::0;-1:-1:-1;;;50542:109:0;;18724:2:1;50542:109:0::1;::::0;::::1;18706:21:1::0;18763:2;18743:18;;;18736:30;18802:28;18782:18;;;18775:56;18848:18;;50542:109:0::1;18696:176:1::0;50542:109:0::1;50686:10;50683:1;50668:29:::0;;;:14:::1;:29;::::0;;;;;50712:17;;50668:40:::1;::::0;50700:8;;50668:40:::1;:::i;:::-;:61;;50660:116;;;;-1:-1:-1::0;;;50660:116:0::1;;;;;;;:::i;:::-;50788:12:::0;;50785:123:::1;;50820:26;50838:8:::0;50820:26;::::1;:::i;:::-;50875:10;50872:1;50857:29:::0;;;:14:::1;:29;::::0;;;;:41;;50820:26;;-1:-1:-1;50890:8:0;;50857:29;;50872:1;50857:41:::1;::::0;50890:8;;50857:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;50785:123:0::1;51033:1;51016:14;:18;:57;;;;-1:-1:-1::0;51057:10:0::1;51038:30;::::0;;;:18:::1;:30;::::0;;;;;:35;51016:57:::1;51013:236;;;51093:32;51111:14:::0;51093:32;::::1;:::i;:::-;51155:10;51136:30;::::0;;;:18:::1;:30;::::0;;;;:48;;51093:32;;-1:-1:-1;51170:14:0;;51136:30;;;:48:::1;::::0;51170:14;;51136:48:::1;:::i;:::-;;;;;;;;51225:14;51195:26;;:44;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;51013:236:0::1;51264:37;51274:10;51286:14;51264:9;:37::i;:::-;51308:39;51338:8;51321:14;;:25;;;;:::i;51308:39::-;49018:2335;48847:2506:::0;;;;;:::o;33377:98::-;33433:13;33462:7;33455:14;;;;;:::i;44227:36::-;;;;;;;;;;;44191:31;;;;;;;;;;;35015:274;-1:-1:-1;;;;;35106:24:0;;2167:10;35106:24;;35098:63;;;;-1:-1:-1;;;35098:63:0;;17600:2:1;35098:63:0;;;17582:21:1;17639:2;17619:18;;;17612:30;17678:28;17658:18;;;17651:56;17724:18;;35098:63:0;17572:176:1;35098:63:0;2167:10;35170:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35170:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35170:53:0;;;;;;;;;;35235:48;;8056:41:1;;;35170:42:0;;2167:10;35235:48;;8029:18:1;35235:48:0;;;;;;;35015:274;;:::o;45768:112::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;45842:18:::1;:30:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;45842:30:0;;;;;::::1;::::0;45768:112::o;36022:311::-;36159:28;36169:4;36175:2;36179:7;36159:9;:28::i;:::-;36210:48;36233:4;36239:2;36243:7;36252:5;36210:22;:48::i;:::-;36194:133;;;;-1:-1:-1;;;36194:133:0;;;;;;;:::i;33538:394::-;33636:13;33677:16;33685:7;36659:12;;-1:-1:-1;36649:22:0;36572:105;33677:16;33661:97;;;;-1:-1:-1;;;33661:97:0;;17184:2:1;33661:97:0;;;17166:21:1;17223:2;17203:18;;;17196:30;17262:34;17242:18;;;17235:62;-1:-1:-1;;;17313:18:1;;;17306:45;17368:19;;33661:97:0;17156:237:1;33661:97:0;33767:21;33791:10;:8;:10::i;:::-;33767:34;;33846:1;33828:7;33822:21;:25;:104;;;;;;;;;;;;;;;;;33883:7;33892:18;:7;:16;:18::i;:::-;33866:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33822:104;33808:118;33538:394;-1:-1:-1;;;33538:394:0:o;44565:52::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44565:52:0;:::o;52928:107::-;52986:7;53009:20;53023:5;53009:13;:20::i;4111:192::-;3257:7;3284:6;-1:-1:-1;;;;;3284:6:0;2167:10;3431:23;3423:68;;;;-1:-1:-1;;;3423:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4200:22:0;::::1;4192:73;;;::::0;-1:-1:-1;;;4192:73:0;;9297:2:1;4192:73:0::1;::::0;::::1;9279:21:1::0;9336:2;9316:18;;;9309:30;9375:34;9355:18;;;9348:62;-1:-1:-1;;;9426:18:1;;;9419:36;9472:19;;4192:73:0::1;9269:228:1::0;4192:73:0::1;4276:19;4286:8;4276:9;:19::i;40259:172::-:0;40356:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40356:29:0;-1:-1:-1;;;;;40356:29:0;;;;;;;;;40397:28;;40356:24;;40397:28;;;;;;;40259:172;;;:::o;38624:1529::-;38721:35;38759:20;38771:7;38759:11;:20::i;:::-;38830:18;;38721:58;;-1:-1:-1;38788:22:0;;-1:-1:-1;;;;;38814:34:0;2167:10;-1:-1:-1;;;;;38814:34:0;;:81;;;-1:-1:-1;2167:10:0;38859:20;38871:7;38859:11;:20::i;:::-;-1:-1:-1;;;;;38859:36:0;;38814:81;:142;;;-1:-1:-1;38923:18:0;;38906:50;;2167:10;35352:186;:::i;38906:50::-;38788:169;;38982:17;38966:101;;;;-1:-1:-1;;;38966:101:0;;17955:2:1;38966:101:0;;;17937:21:1;17994:2;17974:18;;;17967:30;18033:34;18013:18;;;18006:62;-1:-1:-1;;;18084:18:1;;;18077:48;18142:19;;38966:101:0;17927:240:1;38966:101:0;39114:4;-1:-1:-1;;;;;39092:26:0;:13;:18;;;-1:-1:-1;;;;;39092:26:0;;39076:98;;;;-1:-1:-1;;;39076:98:0;;16416:2:1;39076:98:0;;;16398:21:1;16455:2;16435:18;;;16428:30;16494:34;16474:18;;;16467:62;-1:-1:-1;;;16545:18:1;;;16538:36;16591:19;;39076:98:0;16388:228:1;39076:98:0;-1:-1:-1;;;;;39189:16:0;;39181:66;;;;-1:-1:-1;;;39181:66:0;;11336:2:1;39181:66:0;;;11318:21:1;11375:2;11355:18;;;11348:30;11414:34;11394:18;;;11387:62;-1:-1:-1;;;11465:18:1;;;11458:35;11510:19;;39181:66:0;11308:227:1;39181:66:0;39356:49;39373:1;39377:7;39386:13;:18;;;39356:8;:49::i;:::-;-1:-1:-1;;;;;39414:18:0;;;;;;:12;:18;;;;;:31;;39444:1;;39414:18;:31;;39444:1;;-1:-1:-1;;;;;39414:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;39414:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39452:16:0;;-1:-1:-1;39452:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39452:16:0;;:29;;-1:-1:-1;;39452:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39452:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39511:43:0;;;;;;;;-1:-1:-1;;;;;39511:43:0;;;;;;39537:15;39511:43;;;;;;;;;-1:-1:-1;39488:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39488:66:0;-1:-1:-1;;;;;;39488:66:0;;;;;;;;;;;39804:11;39500:7;-1:-1:-1;39804:11:0;:::i;:::-;39867:1;39826:24;;;:11;:24;;;;;:29;39782:33;;-1:-1:-1;;;;;;39826:29:0;39822:236;;39884:20;39892:11;36659:12;;-1:-1:-1;36649:22:0;36572:105;39884:20;39880:171;;;39944:97;;;;;;;;39971:18;;-1:-1:-1;;;;;39944:97:0;;;;;;40002:28;;;;39944:97;;;;;;;;;;-1:-1:-1;39917:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;39917:124:0;-1:-1:-1;;;;;;39917:124:0;;;;;;;;;;;;39880:171;40090:7;40086:2;-1:-1:-1;;;;;40071:27:0;40080:4;-1:-1:-1;;;;;40071:27:0;;;;;;;;;;;40105:42;51594:406;36683:98;36748:27;36758:2;36762:8;36748:27;;;;;;;;;;;;:9;:27::i;:::-;36683:98;;:::o;40585:846::-;40675:24;;40714:12;40706:49;;;;-1:-1:-1;;;40706:49:0;;14004:2:1;40706:49:0;;;13986:21:1;14043:2;14023:18;;;14016:30;14082:26;14062:18;;;14055:54;14126:18;;40706:49:0;13976:174:1;40706:49:0;40762:16;40812:1;40781:28;40801:8;40781:17;:28;:::i;:::-;:32;;;;:::i;:::-;40762:51;-1:-1:-1;40835:18:0;40852:1;40835:14;:18;:::i;:::-;40824:8;:29;40820:81;;;40875:18;40892:1;40875:14;:18;:::i;:::-;40864:29;;40820:81;41016:17;41024:8;36659:12;;-1:-1:-1;36649:22:0;36572:105;41016:17;41008:68;;;;-1:-1:-1;;;41008:68:0;;23293:2:1;41008:68:0;;;23275:21:1;23332:2;23312:18;;;23305:30;23371:34;23351:18;;;23344:62;-1:-1:-1;;;23422:18:1;;;23415:36;23468:19;;41008:68:0;23265:228:1;41008:68:0;41100:17;41083:297;41124:8;41119:1;:13;41083:297;;41183:1;41152:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;41152:19:0;41148:225;;41198:31;41232:14;41244:1;41232:11;:14::i;:::-;41274:89;;;;;;;;41301:14;;-1:-1:-1;;;;;41274:89:0;;;;;;41328:24;;;;41274:89;;;;;;;;;;-1:-1:-1;41257:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;41257:106:0;-1:-1:-1;;;;;;41257:106:0;;;;;;;;;;;;-1:-1:-1;41148:225:0;41134:3;;;;:::i;:::-;;;;41083:297;;;-1:-1:-1;41413:12:0;:8;41424:1;41413:12;:::i;:::-;41386:24;:39;-1:-1:-1;;;40585:846:0:o;51359:204::-;51432:5;51419:9;:18;;51411:53;;;;-1:-1:-1;;;51411:53:0;;20255:2:1;51411:53:0;;;20237:21:1;20294:2;20274:18;;;20267:30;-1:-1:-1;;;20313:18:1;;;20306:52;20375:18;;51411:53:0;20227:172:1;51411:53:0;51487:5;51475:9;:17;51471:87;;;51511:10;51503:47;51532:17;51544:5;51532:9;:17;:::i;:::-;51503:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15677:220;15735:7;15759:6;15755:20;;-1:-1:-1;15774:1:0;15767:8;;15755:20;15786:9;15798:5;15802:1;15798;:5;:::i;:::-;15786:17;-1:-1:-1;15831:1:0;15822:5;15826:1;15786:17;15822:5;:::i;:::-;:10;15814:56;;;;-1:-1:-1;;;15814:56:0;;16014:2:1;15814:56:0;;;15996:21:1;16053:2;16033:18;;;16026:30;16092:34;16072:18;;;16065:62;-1:-1:-1;;;16143:18:1;;;16136:31;16184:19;;15814:56:0;15986:223:1;16375:153:0;16433:7;16465:1;16461;:5;16453:44;;;;-1:-1:-1;;;16453:44:0;;12864:2:1;16453:44:0;;;12846:21:1;12903:2;12883:18;;;12876:30;12942:28;12922:18;;;12915:56;12988:18;;16453:44:0;12836:176:1;16453:44:0;16515:5;16519:1;16515;:5;:::i;15260:158::-;15318:7;15351:1;15346;:6;;15338:49;;;;-1:-1:-1;;;15338:49:0;;12505:2:1;15338:49:0;;;12487:21:1;12544:2;12524:18;;;12517:30;12583:32;12563:18;;;12556:60;12633:18;;15338:49:0;12477:180:1;15338:49:0;15405:5;15409:1;15405;:5;:::i;32385:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;32502:16:0;32510:7;36659:12;;-1:-1:-1;36649:22:0;36572:105;32502:16;32494:71;;;;-1:-1:-1;;;32494:71:0;;9704:2:1;32494:71:0;;;9686:21:1;9743:2;9723:18;;;9716:30;9782:34;9762:18;;;9755:62;-1:-1:-1;;;9833:18:1;;;9826:40;9883:19;;32494:71:0;9676:232:1;32494:71:0;32574:26;32622:12;32611:7;:23;32607:93;;32666:22;32676:12;32666:7;:22;:::i;:::-;:26;;32691:1;32666:26;:::i;:::-;32645:47;;32607:93;32728:7;32708:212;32745:18;32737:4;:26;32708:212;;32782:31;32816:17;;;:11;:17;;;;;;;;;32782:51;;;;;;;;;-1:-1:-1;;;;;32782:51:0;;;;;-1:-1:-1;;;32782:51:0;;;;;;;;;;;;32846:28;32842:71;;32894:9;32385:606;-1:-1:-1;;;;32385:606:0:o;32842:71::-;-1:-1:-1;32765:6:0;;;;:::i;:::-;;;;32708:212;;;-1:-1:-1;32928:57:0;;-1:-1:-1;;;32928:57:0;;24060:2:1;32928:57:0;;;24042:21:1;24099:2;24079:18;;;24072:30;24138:34;24118:18;;;24111:62;-1:-1:-1;;;24189:18:1;;;24182:45;24244:19;;32928:57:0;24032:237:1;4311:173:0;4367:16;4386:6;;-1:-1:-1;;;;;4403:17:0;;;-1:-1:-1;;;;;;4403:17:0;;;;;;4436:40;;4386:6;;;;;;;4436:40;;4367:16;4436:40;4356:128;4311:173;:::o;46764:930::-;46923:4;46978:12;47020:5;47027:6;47035:17;47054:16;47003:68;;;;;;;;;;6998:19:1;;;7055:2;7051:15;;;;-1:-1:-1;;7047:53:1;7042:2;7033:12;;7026:75;7126:2;7117:12;;7110:28;7163:2;7154:12;;7147:28;7200:3;7191:13;;6988:222;47003:68:0;;;;-1:-1:-1;;47003:68:0;;;;;;;;;46993:79;;47003:68;46993:79;;;;;-1:-1:-1;47098:5:0;47083:12;47114:292;47137:5;:12;47133:1;:16;;;47114:292;;;47176:4;47183;47176:11;47192:1;47175:18;47171:200;;;47248:5;47254:1;47248:8;;;;;;;;;;:::i;:::-;;;;;;;47258:4;47231:32;;;;;;;;6215:19:1;;;6259:2;6250:12;;6243:28;6296:2;6287:12;;6205:100;47231:32:0;;;;;;;;;;;;;47221:43;;;;;;47214:50;;47171:200;;;47339:4;47345:5;47351:1;47345:8;;;;;;;;;;:::i;:::-;;;;;;;47322:32;;;;;;;;6215:19:1;;;6259:2;6250:12;;6243:28;6296:2;6287:12;;6205:100;47322:32:0;;;;;;;;;;;;;47312:43;;;;;;47305:50;;47171:200;47385:9;47393:1;47385:9;;:::i;:::-;;-1:-1:-1;47151:3:0;;;;:::i;:::-;;;;47114:292;;;;47485:6;47481:181;47501:18;:25;47497:29;;47481:181;;;47569:18;47588:1;47569:21;;;;;;;;:::i;:::-;;;;;;;;;47561:4;:29;47557:94;;;47631:4;47624:11;;;;;;;47557:94;47528:3;;;;:::i;:::-;;;;47481:181;;;;47681:5;47674:12;;;;46764:930;;;;;;;;:::o;41974:690::-;42111:4;-1:-1:-1;;;;;42128:13:0;;5495:20;5543:8;42124:535;;42167:72;;-1:-1:-1;;;42167:72:0;;-1:-1:-1;;;;;42167:36:0;;;;;:72;;2167:10;;42218:4;;42224:7;;42233:5;;42167:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42167:72:0;;;;;;;;-1:-1:-1;;42167:72:0;;;;;;;;;;;;:::i;:::-;;;42154:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42398:13:0;;42394:215;;42431:61;;-1:-1:-1;;;42431:61:0;;;;;;;:::i;42394:215::-;42577:6;42571:13;42562:6;42558:2;42554:15;42547:38;42154:464;-1:-1:-1;;;;;;42289:55:0;-1:-1:-1;;;42289:55:0;;-1:-1:-1;42282:62:0;;42124:535;-1:-1:-1;42647:4:0;42124:535;41974:690;;;;;;:::o;52060:108::-;52120:13;52149;52142:20;;;;;:::i;12512:723::-;12568:13;12789:10;12785:53;;-1:-1:-1;;12816:10:0;;;;;;;;;;;;-1:-1:-1;;;12816:10:0;;;;;12512:723::o;12785:53::-;12863:5;12848:12;12904:78;12911:9;;12904:78;;12937:8;;;;:::i;:::-;;-1:-1:-1;12960:10:0;;-1:-1:-1;12968:2:0;12960:10;;:::i;:::-;;;12904:78;;;12992:19;13024:6;13014:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13014:17:0;;12992:39;;13042:154;13049:10;;13042:154;;13076:11;13086:1;13076:11;;:::i;:::-;;-1:-1:-1;13145:10:0;13153:2;13145:5;:10;:::i;:::-;13132:24;;:2;:24;:::i;:::-;13119:39;;13102:6;13109;13102:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13102:56:0;;;;;;;;-1:-1:-1;13173:11:0;13182:2;13173:11;;:::i;:::-;;;13042:154;;32139:240;32200:7;-1:-1:-1;;;;;32232:19:0;;32216:102;;;;-1:-1:-1;;;32216:102:0;;12087:2:1;32216:102:0;;;12069:21:1;12126:2;12106:18;;;12099:30;12165:34;12145:18;;;12138:62;-1:-1:-1;;;12216:18:1;;;12209:47;12273:19;;32216:102:0;12059:239:1;32216:102:0;-1:-1:-1;;;;;;32340:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;32340:32:0;;-1:-1:-1;;;;;32340:32:0;;32139:240::o;37120:1272::-;37248:12;;-1:-1:-1;;;;;37275:16:0;;37267:62;;;;-1:-1:-1;;;37267:62:0;;21309:2:1;37267:62:0;;;21291:21:1;21348:2;21328:18;;;21321:30;21387:34;21367:18;;;21360:62;-1:-1:-1;;;21438:18:1;;;21431:31;21479:19;;37267:62:0;21281:223:1;37267:62:0;37466:21;37474:12;36659;;-1:-1:-1;36649:22:0;36572:105;37466:21;37465:22;37457:64;;;;-1:-1:-1;;;37457:64:0;;20606:2:1;37457:64:0;;;20588:21:1;20645:2;20625:18;;;20618:30;20684:31;20664:18;;;20657:59;20733:18;;37457:64:0;20578:179:1;37457:64:0;37548:12;37536:8;:24;;37528:71;;;;-1:-1:-1;;;37528:71:0;;24890:2:1;37528:71:0;;;24872:21:1;24929:2;24909:18;;;24902:30;24968:34;24948:18;;;24941:62;-1:-1:-1;;;25019:18:1;;;25012:32;25061:19;;37528:71:0;24862:224:1;37528:71:0;-1:-1:-1;;;;;37711:16:0;;37678:30;37711:16;;;:12;:16;;;;;;;;;37678:49;;;;;;;;;-1:-1:-1;;;;;37678:49:0;;;;;-1:-1:-1;;;37678:49:0;;;;;;;;;;;37753:119;;;;;;;;37773:19;;37678:49;;37753:119;;;37773:39;;37803:8;;37773:39;:::i;:::-;-1:-1:-1;;;;;37753:119:0;;;;;37856:8;37821:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37753:119:0;;;;;;-1:-1:-1;;;;;37734:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;37734:138:0;;;;;;;;;;;;37907:43;;;;;;;;;;;37933:15;37907:43;;;;;;;;37879:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37879:71:0;-1:-1:-1;;;;;;37879:71:0;;;;;;;;;;;;;;;;;;37891:12;;38003:281;38027:8;38023:1;:12;38003:281;;;38056:38;;38081:12;;-1:-1:-1;;;;;38056:38:0;;;38073:1;;38056:38;;38073:1;;38056:38;38121:59;38152:1;38156:2;38160:12;38174:5;38121:22;:59::i;:::-;38103:150;;;;-1:-1:-1;;;38103:150:0;;;;;;;:::i;:::-;38262:14;;;;:::i;:::-;;;;38037:3;;;;;:::i;:::-;;;;38003:281;;;-1:-1:-1;38292:12:0;:27;;;38326:60;51594: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;111:2;63:124;;;:::o;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:980::-;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:2;1262:38;1296:2;1285:9;1281:18;1262:38;:::i;:::-;1252:48;;1347:2;1336:9;1332:18;1319:32;1309:42;;1402:2;1391:9;1387:18;1374:32;1425:18;1466:2;1458:6;1455:14;1452:2;;;1482:1;1479;1472:12;1452:2;1520:6;1509:9;1505:22;1495:32;;1565:7;1558:4;1554:2;1550:13;1546:27;1536:2;;1587:1;1584;1577:12;1536:2;1623;1610:16;1645:2;1641;1638:10;1635:2;;;1651:18;;:::i;:::-;1693:53;1736:2;1717:13;;-1:-1:-1;;1713:27:1;1709:36;;1693:53;:::i;:::-;1680:66;;1769:2;1762:5;1755:17;1809:7;1804:2;1799;1795;1791:11;1787:20;1784:33;1781:2;;;1830:1;1827;1820:12;1781:2;1885;1880;1876;1872:11;1867:2;1860:5;1856:14;1843:45;1929:1;1924:2;1919;1912:5;1908:14;1904:23;1897:34;;1950:5;1940:15;;;;;1111:850;;;;;;;:::o;1966:347::-;2031:6;2039;2092:2;2080:9;2071:7;2067:23;2063:32;2060:2;;;2108:1;2105;2098:12;2060:2;2131:29;2150:9;2131:29;:::i;:::-;2121:39;;2210:2;2199:9;2195:18;2182:32;2257:5;2250:13;2243:21;2236:5;2233:32;2223:2;;2279:1;2276;2269:12;2223:2;2302:5;2292:15;;;2050:263;;;;;:::o;2318:254::-;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:2;;;2463:1;2460;2453:12;2415:2;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2405:167:1:o;2577:180::-;2636:6;2689:2;2677:9;2668:7;2664:23;2660:32;2657:2;;;2705:1;2702;2695:12;2657:2;-1:-1:-1;2728:23:1;;2647:110;-1:-1:-1;2647:110:1:o;2762:245::-;2820:6;2873:2;2861:9;2852:7;2848:23;2844:32;2841:2;;;2889:1;2886;2879:12;2841:2;2928:9;2915:23;2947:30;2971:5;2947:30;:::i;3012:249::-;3081:6;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3150:1;3147;3140:12;3102:2;3182:9;3176:16;3201:30;3225:5;3201:30;:::i;3266:592::-;3337:6;3345;3398:2;3386:9;3377:7;3373:23;3369:32;3366:2;;;3414:1;3411;3404:12;3366:2;3454:9;3441:23;3483:18;3524:2;3516:6;3513:14;3510:2;;;3540:1;3537;3530:12;3510:2;3578:6;3567:9;3563:22;3553:32;;3623:7;3616:4;3612:2;3608:13;3604:27;3594:2;;3645:1;3642;3635:12;3594:2;3685;3672:16;3711:2;3703:6;3700:14;3697:2;;;3727:1;3724;3717:12;3697:2;3772:7;3767:2;3758:6;3754:2;3750:15;3746:24;3743:37;3740:2;;;3793:1;3790;3783:12;3740:2;3824;3816:11;;;;;3846:6;;-1:-1:-1;3356:502:1;;-1:-1:-1;;;;3356:502:1:o;4048:254::-;4116:6;4124;4177:2;4165:9;4156:7;4152:23;4148:32;4145:2;;;4193:1;4190;4183:12;4145:2;4229:9;4216:23;4206:33;;4258:38;4292:2;4281:9;4277:18;4258:38;:::i;4307:248::-;4375:6;4383;4436:2;4424:9;4415:7;4411:23;4407:32;4404:2;;;4452:1;4449;4442:12;4404:2;-1:-1:-1;;4475:23:1;;;4545:2;4530:18;;;4517:32;;-1:-1:-1;4394:161:1:o;4560:1231::-;4680:6;4688;4696;4704;4712;4765:3;4753:9;4744:7;4740:23;4736:33;4733:2;;;4782:1;4779;4772:12;4733:2;4818:9;4805:23;4795:33;;4847:2;4896;4885:9;4881:18;4868:32;4858:42;;4947:2;4936:9;4932:18;4919:32;4909:42;;4998:2;4987:9;4983:18;4970:32;4960:42;;5053:3;5042:9;5038:19;5025:33;5077:18;5118:2;5110:6;5107:14;5104:2;;;5134:1;5131;5124:12;5104:2;5172:6;5161:9;5157:22;5147:32;;5217:7;5210:4;5206:2;5202:13;5198:27;5188:2;;5239:1;5236;5229:12;5188:2;5275;5262:16;5297:2;5293;5290:10;5287:2;;;5303:18;;:::i;:::-;5349:2;5346:1;5342:10;5332:20;;5372:28;5396:2;5392;5388:11;5372:28;:::i;:::-;5434:15;;;5465:12;;;;5497:11;;;5527;;;5523:20;;5520:33;-1:-1:-1;5517:2:1;;;5566:1;5563;5556:12;5517:2;5588:1;5579:10;;5598:163;5612:2;5609:1;5606:9;5598:163;;;5669:17;;5657:30;;5630:1;5623:9;;;;;5707:12;;;;5739;;5598:163;;;5602:3;5780:5;5770:15;;;;;;;;4723:1068;;;;;;;;:::o;5796:257::-;5837:3;5875:5;5869:12;5902:6;5897:3;5890:19;5918:63;5974:6;5967:4;5962:3;5958:14;5951:4;5944:5;5940:16;5918:63;:::i;:::-;6035:2;6014:15;-1:-1:-1;;6010:29:1;6001:39;;;;6042:4;5997:50;;5845:208;-1:-1:-1;;5845:208:1:o;6310:470::-;6489:3;6527:6;6521:13;6543:53;6589:6;6584:3;6577:4;6569:6;6565:17;6543:53;:::i;:::-;6659:13;;6618:16;;;;6681:57;6659:13;6618:16;6715:4;6703:17;;6681:57;:::i;:::-;6754:20;;6497:283;-1:-1:-1;;;;6497:283:1:o;7423:488::-;-1:-1:-1;;;;;7692:15:1;;;7674:34;;7744:15;;7739:2;7724:18;;7717:43;7791:2;7776:18;;7769:34;;;7839:3;7834:2;7819:18;;7812:31;;;7617:4;;7860:45;;7885:19;;7877:6;7860:45;:::i;:::-;7852:53;7626:285;-1:-1:-1;;;;;;7626:285:1:o;8108:219::-;8257:2;8246:9;8239:21;8220:4;8277:44;8317:2;8306:9;8302:18;8294:6;8277:44;:::i;10326:399::-;10528:2;10510:21;;;10567:2;10547:18;;;10540:30;10606:34;10601:2;10586:18;;10579:62;-1:-1:-1;;;10672:2:1;10657:18;;10650:33;10715:3;10700:19;;10500:225::o;15331:476::-;15533:2;15515:21;;;15572:2;15552:18;;;15545:30;15611:34;15606:2;15591:18;;15584:62;15682:34;15677:2;15662:18;;15655:62;-1:-1:-1;;;15748:3:1;15733:19;;15726:39;15797:3;15782:19;;15505:302::o;16621:356::-;16823:2;16805:21;;;16842:18;;;16835:30;16901:34;16896:2;16881:18;;16874:62;16968:2;16953:18;;16795:182::o;19633:415::-;19835:2;19817:21;;;19874:2;19854:18;;;19847:30;19913:34;19908:2;19893:18;;19886:62;-1:-1:-1;;;19979:2:1;19964:18;;19957:49;20038:3;20023:19;;19807:241::o;22265:406::-;22467:2;22449:21;;;22506:2;22486:18;;;22479:30;22545:34;22540:2;22525:18;;22518:62;-1:-1:-1;;;22611:2:1;22596:18;;22589:40;22661:3;22646:19;;22439:232::o;25638:275::-;25709:2;25703:9;25774:2;25755:13;;-1:-1:-1;;25751:27:1;25739:40;;25809:18;25794:34;;25830:22;;;25791:62;25788:2;;;25856:18;;:::i;:::-;25892:2;25885:22;25683:230;;-1:-1:-1;25683:230:1:o;25918:253::-;25958:3;-1:-1:-1;;;;;26047:2:1;26044:1;26040:10;26077:2;26074:1;26070:10;26108:3;26104:2;26100:12;26095:3;26092:21;26089:2;;;26116:18;;:::i;26176:128::-;26216:3;26247:1;26243:6;26240:1;26237:13;26234:2;;;26253:18;;:::i;:::-;-1:-1:-1;26289:9:1;;26224:80::o;26309:120::-;26349:1;26375;26365:2;;26380:18;;:::i;:::-;-1:-1:-1;26414:9:1;;26355:74::o;26434:168::-;26474:7;26540:1;26536;26532:6;26528:14;26525:1;26522:21;26517:1;26510:9;26503:17;26499:45;26496:2;;;26547:18;;:::i;:::-;-1:-1:-1;26587:9:1;;26486:116::o;26607:246::-;26647:4;-1:-1:-1;;;;;26760:10:1;;;;26730;;26782:12;;;26779:2;;;26797:18;;:::i;:::-;26834:13;;26656:197;-1:-1:-1;;;26656:197:1:o;26858:125::-;26898:4;26926:1;26923;26920:8;26917:2;;;26931:18;;:::i;:::-;-1:-1:-1;26968:9:1;;26907:76::o;26988:258::-;27060:1;27070:113;27084:6;27081:1;27078:13;27070:113;;;27160:11;;;27154:18;27141:11;;;27134:39;27106:2;27099:10;27070:113;;;27201:6;27198:1;27195:13;27192:2;;;-1:-1:-1;;27236:1:1;27218:16;;27211:27;27041:205::o;27251:136::-;27290:3;27318:5;27308:2;;27327:18;;:::i;:::-;-1:-1:-1;;;27363:18:1;;27298:89::o;27392:380::-;27471:1;27467:12;;;;27514;;;27535:2;;27589:4;27581:6;27577:17;27567:27;;27535:2;27642;27634:6;27631:14;27611:18;27608:38;27605:2;;;27688:10;27683:3;27679:20;27676:1;27669:31;27723:4;27720:1;27713:15;27751:4;27748:1;27741:15;27605:2;;27447:325;;;:::o;27777:197::-;27815:3;27843:6;27884:2;27877:5;27873:14;27911:2;27902:7;27899:15;27896:2;;;27917:18;;:::i;:::-;27966:1;27953:15;;27823:151;-1:-1:-1;;;27823:151:1:o;27979:135::-;28018:3;-1:-1:-1;;28039:17:1;;28036:2;;;28059:18;;:::i;:::-;-1:-1:-1;28106:1:1;28095:13;;28026:88::o;28119:112::-;28151:1;28177;28167:2;;28182:18;;:::i;:::-;-1:-1:-1;28216:9:1;;28157:74::o;28236:127::-;28297:10;28292:3;28288:20;28285:1;28278:31;28328:4;28325:1;28318:15;28352:4;28349:1;28342:15;28368:127;28429:10;28424:3;28420:20;28417:1;28410:31;28460:4;28457:1;28450:15;28484:4;28481:1;28474:15;28500:127;28561:10;28556:3;28552:20;28549:1;28542:31;28592:4;28589:1;28582:15;28616:4;28613:1;28606:15;28632:127;28693:10;28688:3;28684:20;28681:1;28674:31;28724:4;28721:1;28714:15;28748:4;28745:1;28738:15;28764:131;-1:-1:-1;;;;;;28838:32:1;;28828:43;;28818:2;;28885:1;28882;28875:12

Swarm Source

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