ETH Price: $3,508.41 (+0.26%)
Gas: 5 Gwei

Token

Mech Game (MECH)
 

Overview

Max Total Supply

10,000 MECH

Holders

493

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MECH
0xa6eee92235a9fb3ae98ea8c7337e2b7ef20497c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MechGame

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-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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


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


/**
 * @dev 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 MechGame is Ownable, ERC721A, ReentrancyGuard {
  using SafeMath for uint256;

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

  uint256 public maxWhitelistMints;
  uint256 public maxPublicMintsPerTxn;

  address payoutWallet1;
  address payoutWallet2;

  uint256 bytPayoutPercentage;

  uint256 public saleStartTime;
  uint256 public whitelistStartTime;
  uint256 public goldlistStartTime;


  uint256 public publicSaleCost;
  uint256 public whitelistSaleCost;

  //Using an array of mappings to track whitelist mints for wallets
  mapping(address => uint256) public whitelistMints;
  //Using an array of mappings to track goldlist mints for wallets
  mapping(address => uint256) public goldlistMints;
  
  bytes32[] _whitelistRootHash;
  bytes32[] _goldlistRootHash;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_
  ) ERC721A("Mech Game", "MECH", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForSaleAndDev = amountForAuctionAndDev_;
    amountForDevs = amountForDevs_;
    require(
      amountForAuctionAndDev_ <= collectionSize_,
      "larger collection size needed"
    );
    publicSaleCost = 0.28 ether;
    whitelistSaleCost = 0.25 ether;
    bytPayoutPercentage = 10;
    maxWhitelistMints = 10;
    maxPublicMintsPerTxn = 10;
    payoutWallet1 = address(0x0d362FDeBFAF0F2da880AeADfBCa410CD160E4dc); // mech.game payout wallet
    payoutWallet2 = address(0x02dF807d510ce365D4bB454851Af2d159c3f9D1c ); // byt payout wallet
  }

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

  function addToGoldlistRootHash(bytes32 _hash) public onlyOwner{
      _goldlistRootHash.push(_hash);
  }

  function clearWhitelist() external onlyOwner{
    delete _whitelistRootHash;
  }

  function clearGoldlist() external onlyOwner{
    delete _goldlistRootHash;
  }

  function updatePayoutWallet(bool bytWallet, address _newPayoutWallet) external onlyOwner{
    if(bytWallet)
    {
      payoutWallet2 = _newPayoutWallet;
    }
    else{
      payoutWallet1 = _newPayoutWallet;
    }
  }

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

  function setGoldlistStartTimeExplicit(uint256 _time) external onlyOwner{
    goldlistStartTime = _time;
  }

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

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

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

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

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

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

        return false;
    }

    // Merkle leaf validator function for storing goldlists off chain saving massive gas
  function goldlistValidated(address wallet, uint256 quantity, uint256 index, bytes32[] memory proof) internal view returns (bool) {
        // Compute the merkle root
        bytes32 node = keccak256(abi.encodePacked(index, wallet, quantity));
        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 < _goldlistRootHash.length; i++)
        {
            if (node == _goldlistRootHash[i])
            {
                return true;
            }
        }

        return false;
    }

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

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

  function goldlistMint(uint256 quantity, uint256 spotInWhitelist, bytes32[] memory proof) external {
    require(goldlistValidated(_msgSender(), quantity, spotInWhitelist, proof), "You're not on the goldlist");
    require(whitelistStartTime != 0 && block.timestamp >= whitelistStartTime, "The sale has not started yet");
    require(totalSupply() + quantity <= amountForSaleAndDev, "not enough remaining reserved for auction to support desired mint amount");
    require(goldlistMints[_msgSender()] == 0, "This address already goldlist minted");

    goldlistMints[_msgSender()] == 1;

    _safeMint(_msgSender(), quantity);
  }

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

    whitelistMints[_msgSender()] += quantity;

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

  function mintTo(address to, uint _count) external payable {
     require(whitelistStartTime != 0 && block.timestamp >= whitelistStartTime, "The sale has not started yet");
     // Fiat Restriction
     require(msg.sender == address(0xdAb1a1854214684acE522439684a145E62505233), "This function can be called by the Fiat onramp address only.");
     require(totalSupply() + _count <= amountForSaleAndDev, "not enough remaining reserved for auction to support desired fiat mint amount");

     uint256 cost = getCurrentCost();
     
     _safeMint(to, _count);
     refundIfOver(cost * _count);
 }

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

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

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

  // metadata URI
  string private _baseTokenURI;

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

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

  // 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"}],"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":"addToGoldlistRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"addToWhitelistRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForSaleAndDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearGoldlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_To","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"goldlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"goldlistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldlistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setGoldlistStartTimeExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWhitelistStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bytWallet","type":"bool"},{"internalType":"address","name":"_newPayoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"spotInWhitelist","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052600060015560006008553480156200001c57600080fd5b5060405162003db838038062003db88339810160408190526200003f9162000378565b604051806040016040528060098152602001684d6563682047616d6560b81b8152506040518060400160405280600481526020016309a8a86960e31b81525085856200009a620000946200027e60201b60201c565b62000282565b60008111620001075760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001695760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fe565b83516200017e906002906020870190620002d2565b50825162000194906003906020860190620002d2565b5060a0919091526080525050600160095560c084905261010082905260e081905282821115620002075760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e65656465640000006044820152606401620000fe565b50506703e2c284391c000060125550506703782dace9d90000601355600a600e819055808055600b55600c80546001600160a01b0319908116730d362fdebfaf0f2da880aeadfbca410cd160e4dc17909155600d80549091167302df807d510ce365d4bb454851af2d159c3f9d1c179055620003ec565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002e090620003af565b90600052602060002090601f0160209004810192826200030457600085556200034f565b82601f106200031f57805160ff19168380011785556200034f565b828001600101855582156200034f579182015b828111156200034f57825182559160200191906001019062000332565b506200035d92915062000361565b5090565b5b808211156200035d576000815560010162000362565b600080600080608085870312156200038f57600080fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c90821680620003c457607f821691505b60208210811415620003e657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161393a6200047e6000396000818161084d01528181610fba015281816114c2015281816116300152611bfc0152600081816109ac0152610d2e015260006106cd015260008181610dc401528181610e5201528181610e8a0152818161283f015281816128690152612eb50152600081816122ed015261231f015261393a6000f3fe6080604052600436106103195760003560e01c8063715018a6116101ab578063b7210e27116100f7578063dc33e68111610095578063f2fde38b1161006f578063f2fde38b1461094d578063f39ae3cf1461096d578063fbe1aa511461099a578063ff6e36ed146109ce57600080fd5b8063dc33e681146108ce578063e0f8abae146108ee578063e985e9c51461090457600080fd5b8063c288245b116100d1578063c288245b1461086f578063c4be5b5914610885578063c87b56dd14610898578063d7224ba0146108b857600080fd5b8063b7210e2714610806578063b88d4fde1461081b578063ba313ca71461083b57600080fd5b80638dbb7c061161016457806395d89b411161013e57806395d89b4114610791578063988cd41d146107a6578063a22cb465146107c6578063a4c1291c146107e657600080fd5b80638dbb7c061461070d5780639231ab2a1461072d5780639292caaf1461077b57600080fd5b8063715018a61461065b5780637ce1784014610670578063831e60de14610686578063843d86a41461069b5780638bc35c2f146106bb5780638da5cb5b146106ef57600080fd5b80632f745c591161026a578063480197d21161022357806355f804b3116101fd57806355f804b3146105db5780635bfb6e0f146105fb5780636352211e1461061b57806370a082311461063b57600080fd5b8063480197d21461057b5780634f6ccce71461059b578063525f8a5c146105bb57600080fd5b80632f745c59146104dd5780633203d12f146104fd5780633ccfd60b1461051d57806342842e0e14610532578063449a52f814610552578063453afb0f1461056557600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd1461046a5780632d1a12f61461048a5780632d20fb60146104aa5780632db11544146104ca57600080fd5b806318160ddd1461041f5780631c0ce3d3146104345780631cbaee2d1461045457600080fd5b80628af2e61461031e57806301ffc9a71461035e57806306fdde031461038e578063081812fc146103b0578063095ea7b3146103e85780631187b2931461040a575b600080fd5b34801561032a57600080fd5b5061034b6103393660046131ae565b60146020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561036a57600080fd5b5061037e610379366004613381565b6109e4565b6040519015158152602001610355565b34801561039a57600080fd5b506103a3610a51565b60405161035591906135aa565b3480156103bc57600080fd5b506103d06103cb366004613368565b610ae3565b6040516001600160a01b039091168152602001610355565b3480156103f457600080fd5b50610408610403366004613322565b610b73565b005b34801561041657600080fd5b50610408610c8b565b34801561042b57600080fd5b5060015461034b565b34801561044057600080fd5b5061040861044f366004613368565b610cc3565b34801561046057600080fd5b5061034b600f5481565b34801561047657600080fd5b506104086104853660046131fc565b610cf7565b34801561049657600080fd5b506104086104a536600461342d565b610d02565b3480156104b657600080fd5b506104086104c5366004613368565b610ec6565b6104086104d8366004613368565b610f59565b3480156104e957600080fd5b5061034b6104f8366004613322565b61109a565b34801561050957600080fd5b5061040861051836600461334c565b611213565b34801561052957600080fd5b50610408611285565b34801561053e57600080fd5b5061040861054d3660046131fc565b6113ed565b610408610560366004613322565b611408565b34801561057157600080fd5b5061034b60125481565b34801561058757600080fd5b50610408610596366004613450565b6115a7565b3480156105a757600080fd5b5061034b6105b6366004613368565b611700565b3480156105c757600080fd5b506104086105d6366004613368565b611769565b3480156105e757600080fd5b506104086105f63660046133bb565b611798565b34801561060757600080fd5b50610408610616366004613368565b6117ce565b34801561062757600080fd5b506103d0610636366004613368565b61182d565b34801561064757600080fd5b5061034b6106563660046131ae565b61183f565b34801561066757600080fd5b506104086118d0565b34801561067c57600080fd5b5061034b60115481565b34801561069257600080fd5b5061034b611904565b3480156106a757600080fd5b506104086106b6366004613368565b61192e565b3480156106c757600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106fb57600080fd5b506000546001600160a01b03166103d0565b34801561071957600080fd5b50610408610728366004613368565b61195d565b34801561073957600080fd5b5061074d610748366004613368565b61198c565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610355565b34801561078757600080fd5b5061034b60105481565b34801561079d57600080fd5b506103a36119a9565b3480156107b257600080fd5b506104086107c1366004613368565b6119b8565b3480156107d257600080fd5b506104086107e13660046132f8565b6119e7565b3480156107f257600080fd5b50610408610801366004613368565b611aac565b34801561081257600080fd5b50610408611b0b565b34801561082757600080fd5b50610408610836366004613238565b611b41565b34801561084757600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561087b57600080fd5b5061034b60135481565b610408610893366004613450565b611b74565b3480156108a457600080fd5b506103a36108b3366004613368565b611d0b565b3480156108c457600080fd5b5061034b60085481565b3480156108da57600080fd5b5061034b6108e93660046131ae565b611dd8565b3480156108fa57600080fd5b5061034b600b5481565b34801561091057600080fd5b5061037e61091f3660046131c9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095957600080fd5b506104086109683660046131ae565b611de3565b34801561097957600080fd5b5061034b6109883660046131ae565b60156020526000908152604090205481565b3480156109a657600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156109da57600080fd5b5061034b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610a1557506001600160e01b03198216635b5e139f60e01b145b80610a3057506001600160e01b0319821663780e9d6360e01b145b80610a4b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a609061380a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8c9061380a565b8015610ad95780601f10610aae57610100808354040283529160200191610ad9565b820191906000526020600020905b815481529060010190602001808311610abc57829003601f168201915b5050505050905090565b6000610af0826001541190565b610b575760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b7e8261182d565b9050806001600160a01b0316836001600160a01b03161415610bed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b4e565b336001600160a01b0382161480610c095750610c09813361091f565b610c7b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b4e565b610c86838383611e7e565b505050565b6000546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610b4e906135bd565b610cc1601660006130d3565b565b6000546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610b4e906135bd565b6010819055601155565b610c86838383611eda565b6000546001600160a01b03163314610d2c5760405162461bcd60e51b8152600401610b4e906135bd565b7f000000000000000000000000000000000000000000000000000000000000000082610d5760015490565b610d61919061373d565b1115610dbf5760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610b4e565b610de97f000000000000000000000000000000000000000000000000000000000000000083613882565b15610e4b5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610b4e565b6000610e777f000000000000000000000000000000000000000000000000000000000000000084613755565b905060005b81811015610ec057610eae837f0000000000000000000000000000000000000000000000000000000000000000612262565b80610eb881613867565b915050610e7c565b50505050565b6000546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b4e906135bd565b60026009541415610f435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4e565b6002600955610f518161227c565b506001600955565b600f5415801590610f6c5750600f544210155b610fb85760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b4e565b7f000000000000000000000000000000000000000000000000000000000000000081610fe360015490565b610fed919061373d565b111561100b5760405162461bcd60e51b8152600401610b4e9061367c565b600b5481106110715760405162461bcd60e51b815260206004820152602c60248201527f43616e2774206d696e742074686174206d616e7920696e20612073696e676c6560448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610b4e565b6000816012546110819190613769565b905061108d3383612262565b61109681612466565b5050565b60006110a58361183f565b82106110fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b4e565b600061110960015490565b905060008060005b838110156111b3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561116457805192505b876001600160a01b0316836001600160a01b031614156111a0578684141561119257509350610a4b92505050565b8361119c81613867565b9450505b50806111ab81613867565b915050611111565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b4e565b6000546001600160a01b0316331461123d5760405162461bcd60e51b8152600401610b4e906135bd565b811561126457600d80546001600160a01b0383166001600160a01b03199091161790555050565b600c80546001600160a01b0383166001600160a01b03199091161790555050565b6000546001600160a01b031633146112af5760405162461bcd60e51b8152600401610b4e906135bd565b600c546001600160a01b03166112fa5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610b4e565b600d546001600160a01b03166113455760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610b4e565b60004790506000611370606461136a600e54606461136391906137b0565b85906124ed565b9061256c565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156113ab573d6000803e3d6000fd5b50600d546001600160a01b03166108fc6113c584846125c7565b6040518115909202916000818181858888f19350505050158015610c86573d6000803e3d6000fd5b610c8683838360405180602001604052806000815250611b41565b6010541580159061141b57506010544210155b6114375760405162461bcd60e51b8152600401610b4e906135f2565b3373dab1a1854214684ace522439684a145e62505233146114c05760405162461bcd60e51b815260206004820152603c60248201527f546869732066756e6374696f6e2063616e2062652063616c6c6564206279207460448201527f68652046696174206f6e72616d702061646472657373206f6e6c792e000000006064820152608401610b4e565b7f0000000000000000000000000000000000000000000000000000000000000000816114eb60015490565b6114f5919061373d565b111561157f5760405162461bcd60e51b815260206004820152604d60248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f727420646573697265642066696160648201526c1d081b5a5b9d08185b5bdd5b9d609a1b608482015260a401610b4e565b6000611589611904565b90506115958383612262565b610c866115a28383613769565b612466565b6115b333848484612623565b6115ff5760405162461bcd60e51b815260206004820152601a60248201527f596f75277265206e6f74206f6e2074686520676f6c646c6973740000000000006044820152606401610b4e565b6010541580159061161257506010544210155b61162e5760405162461bcd60e51b8152600401610b4e906135f2565b7f00000000000000000000000000000000000000000000000000000000000000008361165960015490565b611663919061373d565b11156116815760405162461bcd60e51b8152600401610b4e9061367c565b33600090815260156020526040902054156116ea5760405162461bcd60e51b8152602060048201526024808201527f54686973206164647265737320616c726561647920676f6c646c697374206d696044820152631b9d195960e21b6064820152608401610b4e565b3360008190526015602052610c86905b84612262565b600061170b60015490565b82106117655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b4e565b5090565b6000546001600160a01b031633146117935760405162461bcd60e51b8152600401610b4e906135bd565b600f55565b6000546001600160a01b031633146117c25760405162461bcd60e51b8152600401610b4e906135bd565b610c86601883836130f1565b6000546001600160a01b031633146117f85760405162461bcd60e51b8152600401610b4e906135bd565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150155565b6000611838826127bd565b5192915050565b60006001600160a01b0382166118ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b4e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610b4e906135bd565b610cc16000612967565b6000600f5460001415801561191b5750600f544210155b15611927575060125490565b5060135490565b6000546001600160a01b031633146119585760405162461bcd60e51b8152600401610b4e906135bd565b601355565b6000546001600160a01b031633146119875760405162461bcd60e51b8152600401610b4e906135bd565b601255565b6040805180820190915260008082526020820152610a4b826127bd565b606060038054610a609061380a565b6000546001600160a01b031633146119e25760405162461bcd60e51b8152600401610b4e906135bd565b601155565b6001600160a01b038216331415611a405760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b4e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611ad65760405162461bcd60e51b8152600401610b4e906135bd565b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890155565b6000546001600160a01b03163314611b355760405162461bcd60e51b8152600401610b4e906135bd565b610cc1601760006130d3565b611b4c848484611eda565b611b58848484846129b7565b610ec05760405162461bcd60e51b8152600401610b4e90613629565b611b7f338383612ac1565b611bcb5760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610b4e565b60105415801590611bde57506010544210155b611bfa5760405162461bcd60e51b8152600401610b4e906135f2565b7f000000000000000000000000000000000000000000000000000000000000000083611c2560015490565b611c2f919061373d565b1115611c4d5760405162461bcd60e51b8152600401610b4e9061367c565b600a5433600090815260146020526040902054611c6b90859061373d565b1115611ccc5760405162461bcd60e51b815260206004820152602a60248201527f546f6f206d616e792077686974656c697374206d696e747320647572696e67206044820152691d1a1a5cc81c9bdd5b9960b21b6064820152608401610b4e565b3360009081526014602052604081208054859290611ceb90849061373d565b90915550611cfa9050336116fa565b610c86836013546115a29190613769565b6060611d18826001541190565b611d7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b4e565b6000611d86612c4d565b90506000815111611da65760405180602001604052806000815250611dd1565b80611db084612c5c565b604051602001611dc192919061353e565b6040516020818303038152906040525b9392505050565b6000610a4b82612d5a565b6000546001600160a01b03163314611e0d5760405162461bcd60e51b8152600401610b4e906135bd565b6001600160a01b038116611e725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b4e565b611e7b81612967565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee5826127bd565b80519091506000906001600160a01b0316336001600160a01b03161480611f1c575033611f1184610ae3565b6001600160a01b0316145b80611f2e57508151611f2e903361091f565b905080611f985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b4e565b846001600160a01b031682600001516001600160a01b03161461200c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b4e565b6001600160a01b0384166120705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b4e565b6120806000848460000151611e7e565b6001600160a01b03851660009081526005602052604081208054600192906120b29084906001600160801b0316613788565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926120fe9185911661371b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561218684600161373d565b6000818152600460205260409020549091506001600160a01b0316612218576121b0816001541190565b156122185760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b611096828260405180602001604052806000815250612df8565b600854816122cc5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b4e565b600060016122da848461373d565b6122e491906137b0565b905061231160017f00000000000000000000000000000000000000000000000000000000000000006137b0565b8111156123465761234360017f00000000000000000000000000000000000000000000000000000000000000006137b0565b90505b612351816001541190565b6123ac5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b4e565b815b818111612452576000818152600460205260409020546001600160a01b03166124405760006123dc826127bd565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061244a81613867565b9150506123ae565b5061245e81600161373d565b600855505050565b803410156124af5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b4e565b80341115611e7b57336108fc6124c583346137b0565b6040518115909202916000818181858888f19350505050158015611096573d6000803e3d6000fd5b6000826124fc57506000610a4b565b60006125088385613769565b9050826125158583613755565b14611dd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b4e565b60008082116125bd5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610b4e565b611dd18284613755565b6000828211156126195760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610b4e565b611dd182846137b0565b60008083868660405160200161265e9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60408051601f19818403018152919052805160209091012090508360005b84518161ffff16101561275c5781600116600114156126eb57848161ffff16815181106126ab576126ab6138c2565b6020026020010151836040516020016126ce929190918252602082015260400190565b60405160208183030381529060405280519060200120925061273d565b82858261ffff1681518110612702576127026138c2565b6020026020010151604051602001612724929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612748600283613755565b91508061275481613845565b91505061267c565b5060005b6017548110156127ad576017818154811061277d5761277d6138c2565b906000526020600020015483141561279b57600193505050506127b5565b806127a581613867565b915050612760565b506000925050505b949350505050565b60408051808201909152600080825260208201526127dc826001541190565b61283b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b4e565b60007f0000000000000000000000000000000000000000000000000000000000000000831061289c5761288e7f0000000000000000000000000000000000000000000000000000000000000000846137b0565b61289990600161373d565b90505b825b818110612906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156128f357949350505050565b50806128fe816137f3565b91505061289e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b4e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15612ab957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129fb90339089908890889060040161356d565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a45575060408051601f3d908101601f19168201909252612a429181019061339e565b60015b612a9f573d808015612a73576040519150601f19603f3d011682016040523d82523d6000602084013e612a78565b606091505b508051612a975760405162461bcd60e51b8152600401610b4e90613629565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b5565b5060016127b5565b604080516020808201859052606086901b6bffffffffffffffffffffffff1916828401526001605480840182905284518085039091018152607490930190935281519101206000919084835b85518161ffff161015612bed578160011660011415612b7c57858161ffff1681518110612b3c57612b3c6138c2565b602002602001015183604051602001612b5f929190918252602082015260400190565b604051602081830303815290604052805190602001209250612bce565b82868261ffff1681518110612b9357612b936138c2565b6020026020010151604051602001612bb5929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612bd9600283613755565b915080612be581613845565b915050612b0d565b5060005b601654811015612c3f5760168181548110612c0e57612c0e6138c2565b9060005260206000200154831415612c2d576001945050505050611dd1565b80612c3781613867565b915050612bf1565b506000979650505050505050565b606060188054610a609061380a565b606081612c805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612caa5780612c9481613867565b9150612ca39050600a83613755565b9150612c84565b60008167ffffffffffffffff811115612cc557612cc56138d8565b6040519080825280601f01601f191660200182016040528015612cef576020820181803683370190505b5090505b84156127b557612d046001836137b0565b9150612d11600a86613882565b612d1c90603061373d565b60f81b818381518110612d3157612d316138c2565b60200101906001600160f81b031916908160001a905350612d53600a86613755565b9450612cf3565b60006001600160a01b038216612dcc5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b4e565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612e5b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b4e565b612e66816001541190565b15612eb35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b4e565b7f0000000000000000000000000000000000000000000000000000000000000000831115612f2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b4e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612f8a90879061371b565b6001600160801b03168152602001858360200151612fa8919061371b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156130c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461308c60008884886129b7565b6130a85760405162461bcd60e51b8152600401610b4e90613629565b816130b281613867565b92505080806130c090613867565b91505061303f565b50600181905561225a565b5080546000825590600052602060002090810190611e7b919061316d565b8280546130fd9061380a565b90600052602060002090601f01602090048101928261311f5760008555613165565b82601f106131385782800160ff19823516178555613165565b82800160010185558215613165579182015b8281111561316557823582559160200191906001019061314a565b506117659291505b5b80821115611765576000815560010161316e565b80356001600160a01b038116811461319957600080fd5b919050565b8035801515811461319957600080fd5b6000602082840312156131c057600080fd5b611dd182613182565b600080604083850312156131dc57600080fd5b6131e583613182565b91506131f360208401613182565b90509250929050565b60008060006060848603121561321157600080fd5b61321a84613182565b925061322860208501613182565b9150604084013590509250925092565b6000806000806080858703121561324e57600080fd5b61325785613182565b93506020613266818701613182565b935060408601359250606086013567ffffffffffffffff8082111561328a57600080fd5b818801915088601f83011261329e57600080fd5b8135818111156132b0576132b06138d8565b6132c2601f8201601f191685016136ea565b915080825289848285010111156132d857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561330b57600080fd5b61331483613182565b91506131f36020840161319e565b6000806040838503121561333557600080fd5b61333e83613182565b946020939093013593505050565b6000806040838503121561335f57600080fd5b6131e58361319e565b60006020828403121561337a57600080fd5b5035919050565b60006020828403121561339357600080fd5b8135611dd1816138ee565b6000602082840312156133b057600080fd5b8151611dd1816138ee565b600080602083850312156133ce57600080fd5b823567ffffffffffffffff808211156133e657600080fd5b818501915085601f8301126133fa57600080fd5b81358181111561340957600080fd5b86602082850101111561341b57600080fd5b60209290920196919550909350505050565b6000806040838503121561344057600080fd5b823591506131f360208401613182565b60008060006060848603121561346557600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561348c57600080fd5b818701915087601f8301126134a057600080fd5b8135818111156134b2576134b26138d8565b8060051b91506134c38483016136ea565b8181528481019084860184860187018c10156134de57600080fd5b600095505b838610156135015780358352600195909501949186019186016134e3565b508096505050505050509250925092565b6000815180845261352a8160208601602086016137c7565b601f01601f19169290920160200192915050565b600083516135508184602088016137c7565b8351908301906135648183602088016137c7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135a090830184613512565b9695505050505050565b602081526000611dd16020830184613512565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f5468652073616c6520686173206e6f7420737461727465642079657400000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526048908201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613713576137136138d8565b604052919050565b60006001600160801b0380831681851680830382111561356457613564613896565b6000821982111561375057613750613896565b500190565b600082613764576137646138ac565b500490565b600081600019048311821515161561378357613783613896565b500290565b60006001600160801b03838116908316818110156137a8576137a8613896565b039392505050565b6000828210156137c2576137c2613896565b500390565b60005b838110156137e25781810151838201526020016137ca565b83811115610ec05750506000910152565b60008161380257613802613896565b506000190190565b600181811c9082168061381e57607f821691505b6020821081141561383f57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561385d5761385d613896565b6001019392505050565b600060001982141561387b5761387b613896565b5060010190565b600082613891576138916138ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e7b57600080fdfea2646970667358221220641d7231f6c0d03d3d8ccdb9a7536a2684dbc33a89a5320c9d9f5f3545c15db664736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x6080604052600436106103195760003560e01c8063715018a6116101ab578063b7210e27116100f7578063dc33e68111610095578063f2fde38b1161006f578063f2fde38b1461094d578063f39ae3cf1461096d578063fbe1aa511461099a578063ff6e36ed146109ce57600080fd5b8063dc33e681146108ce578063e0f8abae146108ee578063e985e9c51461090457600080fd5b8063c288245b116100d1578063c288245b1461086f578063c4be5b5914610885578063c87b56dd14610898578063d7224ba0146108b857600080fd5b8063b7210e2714610806578063b88d4fde1461081b578063ba313ca71461083b57600080fd5b80638dbb7c061161016457806395d89b411161013e57806395d89b4114610791578063988cd41d146107a6578063a22cb465146107c6578063a4c1291c146107e657600080fd5b80638dbb7c061461070d5780639231ab2a1461072d5780639292caaf1461077b57600080fd5b8063715018a61461065b5780637ce1784014610670578063831e60de14610686578063843d86a41461069b5780638bc35c2f146106bb5780638da5cb5b146106ef57600080fd5b80632f745c591161026a578063480197d21161022357806355f804b3116101fd57806355f804b3146105db5780635bfb6e0f146105fb5780636352211e1461061b57806370a082311461063b57600080fd5b8063480197d21461057b5780634f6ccce71461059b578063525f8a5c146105bb57600080fd5b80632f745c59146104dd5780633203d12f146104fd5780633ccfd60b1461051d57806342842e0e14610532578063449a52f814610552578063453afb0f1461056557600080fd5b806318160ddd116102d757806323b872dd116102b157806323b872dd1461046a5780632d1a12f61461048a5780632d20fb60146104aa5780632db11544146104ca57600080fd5b806318160ddd1461041f5780631c0ce3d3146104345780631cbaee2d1461045457600080fd5b80628af2e61461031e57806301ffc9a71461035e57806306fdde031461038e578063081812fc146103b0578063095ea7b3146103e85780631187b2931461040a575b600080fd5b34801561032a57600080fd5b5061034b6103393660046131ae565b60146020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561036a57600080fd5b5061037e610379366004613381565b6109e4565b6040519015158152602001610355565b34801561039a57600080fd5b506103a3610a51565b60405161035591906135aa565b3480156103bc57600080fd5b506103d06103cb366004613368565b610ae3565b6040516001600160a01b039091168152602001610355565b3480156103f457600080fd5b50610408610403366004613322565b610b73565b005b34801561041657600080fd5b50610408610c8b565b34801561042b57600080fd5b5060015461034b565b34801561044057600080fd5b5061040861044f366004613368565b610cc3565b34801561046057600080fd5b5061034b600f5481565b34801561047657600080fd5b506104086104853660046131fc565b610cf7565b34801561049657600080fd5b506104086104a536600461342d565b610d02565b3480156104b657600080fd5b506104086104c5366004613368565b610ec6565b6104086104d8366004613368565b610f59565b3480156104e957600080fd5b5061034b6104f8366004613322565b61109a565b34801561050957600080fd5b5061040861051836600461334c565b611213565b34801561052957600080fd5b50610408611285565b34801561053e57600080fd5b5061040861054d3660046131fc565b6113ed565b610408610560366004613322565b611408565b34801561057157600080fd5b5061034b60125481565b34801561058757600080fd5b50610408610596366004613450565b6115a7565b3480156105a757600080fd5b5061034b6105b6366004613368565b611700565b3480156105c757600080fd5b506104086105d6366004613368565b611769565b3480156105e757600080fd5b506104086105f63660046133bb565b611798565b34801561060757600080fd5b50610408610616366004613368565b6117ce565b34801561062757600080fd5b506103d0610636366004613368565b61182d565b34801561064757600080fd5b5061034b6106563660046131ae565b61183f565b34801561066757600080fd5b506104086118d0565b34801561067c57600080fd5b5061034b60115481565b34801561069257600080fd5b5061034b611904565b3480156106a757600080fd5b506104086106b6366004613368565b61192e565b3480156106c757600080fd5b5061034b7f00000000000000000000000000000000000000000000000000000000000000fa81565b3480156106fb57600080fd5b506000546001600160a01b03166103d0565b34801561071957600080fd5b50610408610728366004613368565b61195d565b34801561073957600080fd5b5061074d610748366004613368565b61198c565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610355565b34801561078757600080fd5b5061034b60105481565b34801561079d57600080fd5b506103a36119a9565b3480156107b257600080fd5b506104086107c1366004613368565b6119b8565b3480156107d257600080fd5b506104086107e13660046132f8565b6119e7565b3480156107f257600080fd5b50610408610801366004613368565b611aac565b34801561081257600080fd5b50610408611b0b565b34801561082757600080fd5b50610408610836366004613238565b611b41565b34801561084757600080fd5b5061034b7f000000000000000000000000000000000000000000000000000000000000271081565b34801561087b57600080fd5b5061034b60135481565b610408610893366004613450565b611b74565b3480156108a457600080fd5b506103a36108b3366004613368565b611d0b565b3480156108c457600080fd5b5061034b60085481565b3480156108da57600080fd5b5061034b6108e93660046131ae565b611dd8565b3480156108fa57600080fd5b5061034b600b5481565b34801561091057600080fd5b5061037e61091f3660046131c9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095957600080fd5b506104086109683660046131ae565b611de3565b34801561097957600080fd5b5061034b6109883660046131ae565b60156020526000908152604090205481565b3480156109a657600080fd5b5061034b7f00000000000000000000000000000000000000000000000000000000000001f481565b3480156109da57600080fd5b5061034b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610a1557506001600160e01b03198216635b5e139f60e01b145b80610a3057506001600160e01b0319821663780e9d6360e01b145b80610a4b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a609061380a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8c9061380a565b8015610ad95780601f10610aae57610100808354040283529160200191610ad9565b820191906000526020600020905b815481529060010190602001808311610abc57829003601f168201915b5050505050905090565b6000610af0826001541190565b610b575760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b7e8261182d565b9050806001600160a01b0316836001600160a01b03161415610bed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b4e565b336001600160a01b0382161480610c095750610c09813361091f565b610c7b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b4e565b610c86838383611e7e565b505050565b6000546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610b4e906135bd565b610cc1601660006130d3565b565b6000546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610b4e906135bd565b6010819055601155565b610c86838383611eda565b6000546001600160a01b03163314610d2c5760405162461bcd60e51b8152600401610b4e906135bd565b7f00000000000000000000000000000000000000000000000000000000000001f482610d5760015490565b610d61919061373d565b1115610dbf5760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610b4e565b610de97f00000000000000000000000000000000000000000000000000000000000000fa83613882565b15610e4b5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610b4e565b6000610e777f00000000000000000000000000000000000000000000000000000000000000fa84613755565b905060005b81811015610ec057610eae837f00000000000000000000000000000000000000000000000000000000000000fa612262565b80610eb881613867565b915050610e7c565b50505050565b6000546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b4e906135bd565b60026009541415610f435760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b4e565b6002600955610f518161227c565b506001600955565b600f5415801590610f6c5750600f544210155b610fb85760405162461bcd60e51b815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b4e565b7f000000000000000000000000000000000000000000000000000000000000271081610fe360015490565b610fed919061373d565b111561100b5760405162461bcd60e51b8152600401610b4e9061367c565b600b5481106110715760405162461bcd60e51b815260206004820152602c60248201527f43616e2774206d696e742074686174206d616e7920696e20612073696e676c6560448201526b103a3930b739b0b1ba34b7b760a11b6064820152608401610b4e565b6000816012546110819190613769565b905061108d3383612262565b61109681612466565b5050565b60006110a58361183f565b82106110fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b4e565b600061110960015490565b905060008060005b838110156111b3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561116457805192505b876001600160a01b0316836001600160a01b031614156111a0578684141561119257509350610a4b92505050565b8361119c81613867565b9450505b50806111ab81613867565b915050611111565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b4e565b6000546001600160a01b0316331461123d5760405162461bcd60e51b8152600401610b4e906135bd565b811561126457600d80546001600160a01b0383166001600160a01b03199091161790555050565b600c80546001600160a01b0383166001600160a01b03199091161790555050565b6000546001600160a01b031633146112af5760405162461bcd60e51b8152600401610b4e906135bd565b600c546001600160a01b03166112fa5760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c481b9bdd081cd95d60821b6044820152606401610b4e565b600d546001600160a01b03166113455760405162461bcd60e51b815260206004820152601060248201526f1dd85b1b195d080c881b9bdd081cd95d60821b6044820152606401610b4e565b60004790506000611370606461136a600e54606461136391906137b0565b85906124ed565b9061256c565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156113ab573d6000803e3d6000fd5b50600d546001600160a01b03166108fc6113c584846125c7565b6040518115909202916000818181858888f19350505050158015610c86573d6000803e3d6000fd5b610c8683838360405180602001604052806000815250611b41565b6010541580159061141b57506010544210155b6114375760405162461bcd60e51b8152600401610b4e906135f2565b3373dab1a1854214684ace522439684a145e62505233146114c05760405162461bcd60e51b815260206004820152603c60248201527f546869732066756e6374696f6e2063616e2062652063616c6c6564206279207460448201527f68652046696174206f6e72616d702061646472657373206f6e6c792e000000006064820152608401610b4e565b7f0000000000000000000000000000000000000000000000000000000000002710816114eb60015490565b6114f5919061373d565b111561157f5760405162461bcd60e51b815260206004820152604d60248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f727420646573697265642066696160648201526c1d081b5a5b9d08185b5bdd5b9d609a1b608482015260a401610b4e565b6000611589611904565b90506115958383612262565b610c866115a28383613769565b612466565b6115b333848484612623565b6115ff5760405162461bcd60e51b815260206004820152601a60248201527f596f75277265206e6f74206f6e2074686520676f6c646c6973740000000000006044820152606401610b4e565b6010541580159061161257506010544210155b61162e5760405162461bcd60e51b8152600401610b4e906135f2565b7f00000000000000000000000000000000000000000000000000000000000027108361165960015490565b611663919061373d565b11156116815760405162461bcd60e51b8152600401610b4e9061367c565b33600090815260156020526040902054156116ea5760405162461bcd60e51b8152602060048201526024808201527f54686973206164647265737320616c726561647920676f6c646c697374206d696044820152631b9d195960e21b6064820152608401610b4e565b3360008190526015602052610c86905b84612262565b600061170b60015490565b82106117655760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b4e565b5090565b6000546001600160a01b031633146117935760405162461bcd60e51b8152600401610b4e906135bd565b600f55565b6000546001600160a01b031633146117c25760405162461bcd60e51b8152600401610b4e906135bd565b610c86601883836130f1565b6000546001600160a01b031633146117f85760405162461bcd60e51b8152600401610b4e906135bd565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150155565b6000611838826127bd565b5192915050565b60006001600160a01b0382166118ab5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b4e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610b4e906135bd565b610cc16000612967565b6000600f5460001415801561191b5750600f544210155b15611927575060125490565b5060135490565b6000546001600160a01b031633146119585760405162461bcd60e51b8152600401610b4e906135bd565b601355565b6000546001600160a01b031633146119875760405162461bcd60e51b8152600401610b4e906135bd565b601255565b6040805180820190915260008082526020820152610a4b826127bd565b606060038054610a609061380a565b6000546001600160a01b031633146119e25760405162461bcd60e51b8152600401610b4e906135bd565b601155565b6001600160a01b038216331415611a405760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b4e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611ad65760405162461bcd60e51b8152600401610b4e906135bd565b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890155565b6000546001600160a01b03163314611b355760405162461bcd60e51b8152600401610b4e906135bd565b610cc1601760006130d3565b611b4c848484611eda565b611b58848484846129b7565b610ec05760405162461bcd60e51b8152600401610b4e90613629565b611b7f338383612ac1565b611bcb5760405162461bcd60e51b815260206004820152601b60248201527f596f75277265206e6f74206f6e207468652077686974656c69737400000000006044820152606401610b4e565b60105415801590611bde57506010544210155b611bfa5760405162461bcd60e51b8152600401610b4e906135f2565b7f000000000000000000000000000000000000000000000000000000000000271083611c2560015490565b611c2f919061373d565b1115611c4d5760405162461bcd60e51b8152600401610b4e9061367c565b600a5433600090815260146020526040902054611c6b90859061373d565b1115611ccc5760405162461bcd60e51b815260206004820152602a60248201527f546f6f206d616e792077686974656c697374206d696e747320647572696e67206044820152691d1a1a5cc81c9bdd5b9960b21b6064820152608401610b4e565b3360009081526014602052604081208054859290611ceb90849061373d565b90915550611cfa9050336116fa565b610c86836013546115a29190613769565b6060611d18826001541190565b611d7c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b4e565b6000611d86612c4d565b90506000815111611da65760405180602001604052806000815250611dd1565b80611db084612c5c565b604051602001611dc192919061353e565b6040516020818303038152906040525b9392505050565b6000610a4b82612d5a565b6000546001600160a01b03163314611e0d5760405162461bcd60e51b8152600401610b4e906135bd565b6001600160a01b038116611e725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b4e565b611e7b81612967565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee5826127bd565b80519091506000906001600160a01b0316336001600160a01b03161480611f1c575033611f1184610ae3565b6001600160a01b0316145b80611f2e57508151611f2e903361091f565b905080611f985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b4e565b846001600160a01b031682600001516001600160a01b03161461200c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b4e565b6001600160a01b0384166120705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b4e565b6120806000848460000151611e7e565b6001600160a01b03851660009081526005602052604081208054600192906120b29084906001600160801b0316613788565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926120fe9185911661371b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561218684600161373d565b6000818152600460205260409020549091506001600160a01b0316612218576121b0816001541190565b156122185760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b611096828260405180602001604052806000815250612df8565b600854816122cc5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b4e565b600060016122da848461373d565b6122e491906137b0565b905061231160017f00000000000000000000000000000000000000000000000000000000000027106137b0565b8111156123465761234360017f00000000000000000000000000000000000000000000000000000000000027106137b0565b90505b612351816001541190565b6123ac5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b4e565b815b818111612452576000818152600460205260409020546001600160a01b03166124405760006123dc826127bd565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061244a81613867565b9150506123ae565b5061245e81600161373d565b600855505050565b803410156124af5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b4e565b80341115611e7b57336108fc6124c583346137b0565b6040518115909202916000818181858888f19350505050158015611096573d6000803e3d6000fd5b6000826124fc57506000610a4b565b60006125088385613769565b9050826125158583613755565b14611dd15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b4e565b60008082116125bd5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610b4e565b611dd18284613755565b6000828211156126195760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610b4e565b611dd182846137b0565b60008083868660405160200161265e9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60408051601f19818403018152919052805160209091012090508360005b84518161ffff16101561275c5781600116600114156126eb57848161ffff16815181106126ab576126ab6138c2565b6020026020010151836040516020016126ce929190918252602082015260400190565b60405160208183030381529060405280519060200120925061273d565b82858261ffff1681518110612702576127026138c2565b6020026020010151604051602001612724929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612748600283613755565b91508061275481613845565b91505061267c565b5060005b6017548110156127ad576017818154811061277d5761277d6138c2565b906000526020600020015483141561279b57600193505050506127b5565b806127a581613867565b915050612760565b506000925050505b949350505050565b60408051808201909152600080825260208201526127dc826001541190565b61283b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b4e565b60007f00000000000000000000000000000000000000000000000000000000000000fa831061289c5761288e7f00000000000000000000000000000000000000000000000000000000000000fa846137b0565b61289990600161373d565b90505b825b818110612906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156128f357949350505050565b50806128fe816137f3565b91505061289e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b4e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15612ab957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129fb90339089908890889060040161356d565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a45575060408051601f3d908101601f19168201909252612a429181019061339e565b60015b612a9f573d808015612a73576040519150601f19603f3d011682016040523d82523d6000602084013e612a78565b606091505b508051612a975760405162461bcd60e51b8152600401610b4e90613629565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127b5565b5060016127b5565b604080516020808201859052606086901b6bffffffffffffffffffffffff1916828401526001605480840182905284518085039091018152607490930190935281519101206000919084835b85518161ffff161015612bed578160011660011415612b7c57858161ffff1681518110612b3c57612b3c6138c2565b602002602001015183604051602001612b5f929190918252602082015260400190565b604051602081830303815290604052805190602001209250612bce565b82868261ffff1681518110612b9357612b936138c2565b6020026020010151604051602001612bb5929190918252602082015260400190565b6040516020818303038152906040528051906020012092505b612bd9600283613755565b915080612be581613845565b915050612b0d565b5060005b601654811015612c3f5760168181548110612c0e57612c0e6138c2565b9060005260206000200154831415612c2d576001945050505050611dd1565b80612c3781613867565b915050612bf1565b506000979650505050505050565b606060188054610a609061380a565b606081612c805750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612caa5780612c9481613867565b9150612ca39050600a83613755565b9150612c84565b60008167ffffffffffffffff811115612cc557612cc56138d8565b6040519080825280601f01601f191660200182016040528015612cef576020820181803683370190505b5090505b84156127b557612d046001836137b0565b9150612d11600a86613882565b612d1c90603061373d565b60f81b818381518110612d3157612d316138c2565b60200101906001600160f81b031916908160001a905350612d53600a86613755565b9450612cf3565b60006001600160a01b038216612dcc5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b4e565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416612e5b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b4e565b612e66816001541190565b15612eb35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b4e565b7f00000000000000000000000000000000000000000000000000000000000000fa831115612f2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b4e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612f8a90879061371b565b6001600160801b03168152602001858360200151612fa8919061371b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156130c85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461308c60008884886129b7565b6130a85760405162461bcd60e51b8152600401610b4e90613629565b816130b281613867565b92505080806130c090613867565b91505061303f565b50600181905561225a565b5080546000825590600052602060002090810190611e7b919061316d565b8280546130fd9061380a565b90600052602060002090601f01602090048101928261311f5760008555613165565b82601f106131385782800160ff19823516178555613165565b82800160010185558215613165579182015b8281111561316557823582559160200191906001019061314a565b506117659291505b5b80821115611765576000815560010161316e565b80356001600160a01b038116811461319957600080fd5b919050565b8035801515811461319957600080fd5b6000602082840312156131c057600080fd5b611dd182613182565b600080604083850312156131dc57600080fd5b6131e583613182565b91506131f360208401613182565b90509250929050565b60008060006060848603121561321157600080fd5b61321a84613182565b925061322860208501613182565b9150604084013590509250925092565b6000806000806080858703121561324e57600080fd5b61325785613182565b93506020613266818701613182565b935060408601359250606086013567ffffffffffffffff8082111561328a57600080fd5b818801915088601f83011261329e57600080fd5b8135818111156132b0576132b06138d8565b6132c2601f8201601f191685016136ea565b915080825289848285010111156132d857600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561330b57600080fd5b61331483613182565b91506131f36020840161319e565b6000806040838503121561333557600080fd5b61333e83613182565b946020939093013593505050565b6000806040838503121561335f57600080fd5b6131e58361319e565b60006020828403121561337a57600080fd5b5035919050565b60006020828403121561339357600080fd5b8135611dd1816138ee565b6000602082840312156133b057600080fd5b8151611dd1816138ee565b600080602083850312156133ce57600080fd5b823567ffffffffffffffff808211156133e657600080fd5b818501915085601f8301126133fa57600080fd5b81358181111561340957600080fd5b86602082850101111561341b57600080fd5b60209290920196919550909350505050565b6000806040838503121561344057600080fd5b823591506131f360208401613182565b60008060006060848603121561346557600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561348c57600080fd5b818701915087601f8301126134a057600080fd5b8135818111156134b2576134b26138d8565b8060051b91506134c38483016136ea565b8181528481019084860184860187018c10156134de57600080fd5b600095505b838610156135015780358352600195909501949186019186016134e3565b508096505050505050509250925092565b6000815180845261352a8160208601602086016137c7565b601f01601f19169290920160200192915050565b600083516135508184602088016137c7565b8351908301906135648183602088016137c7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135a090830184613512565b9695505050505050565b602081526000611dd16020830184613512565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f5468652073616c6520686173206e6f7420737461727465642079657400000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526048908201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60408201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6060820152671d08185b5bdd5b9d60c21b608082015260a00190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613713576137136138d8565b604052919050565b60006001600160801b0380831681851680830382111561356457613564613896565b6000821982111561375057613750613896565b500190565b600082613764576137646138ac565b500490565b600081600019048311821515161561378357613783613896565b500290565b60006001600160801b03838116908316818110156137a8576137a8613896565b039392505050565b6000828210156137c2576137c2613896565b500390565b60005b838110156137e25781810151838201526020016137ca565b83811115610ec05750506000910152565b60008161380257613802613896565b506000190190565b600181811c9082168061381e57607f821691505b6020821081141561383f57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561385d5761385d613896565b6001019392505050565b600060001982141561387b5761387b613896565b5060010190565b600082613891576138916138ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e7b57600080fdfea2646970667358221220641d7231f6c0d03d3d8ccdb9a7536a2684dbc33a89a5320c9d9f5f3545c15db664736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000fa0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 250
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : amountForAuctionAndDev_ (uint256): 10000
Arg [3] : amountForDevs_ (uint256): 500

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4


Deployed Bytecode Sourcemap

42314:9429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42975:49;;;;;;;;;;-1:-1:-1;42975:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;25337:25:1;;;25325:2;25310:18;42975:49:0;;;;;;;;30010:370;;;;;;;;;;-1:-1:-1;30010:370:0;;;;;:::i;:::-;;:::i;:::-;;;7955:14:1;;7948:22;7930:41;;7918:2;7903:18;30010:370:0;7885:92:1;31736:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33261:204::-;;;;;;;;;;-1:-1:-1;33261:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7253:32:1;;;7235:51;;7223:2;7208:18;33261:204:0;7190:102:1;32824:379:0;;;;;;;;;;-1:-1:-1;32824:379:0;;;;;:::i;:::-;;:::i;:::-;;44273:82;;;;;;;;;;;;;:::i;28571:94::-;;;;;;;;;;-1:-1:-1;28647:12:0;;28571:94;;44680:136;;;;;;;;;;-1:-1:-1;44680:136:0;;;;;:::i;:::-;;:::i;42721:28::-;;;;;;;;;;;;;;;;34111:142;;;;;;;;;;-1:-1:-1;34111:142:0;;;;;:::i;:::-;;:::i;50146:406::-;;;;;;;;;;-1:-1:-1;50146:406:0;;;;;:::i;:::-;;:::i;51356:118::-;;;;;;;;;;-1:-1:-1;51356:118:0;;;;;:::i;:::-;;:::i;47176:517::-;;;;;;:::i;:::-;;:::i;29202:744::-;;;;;;;;;;-1:-1:-1;29202:744:0;;;;;:::i;:::-;;:::i;44447:227::-;;;;;;;;;;-1:-1:-1;44447:227:0;;;;;:::i;:::-;;:::i;50910:440::-;;;;;;;;;;;;;:::i;34316:157::-;;;;;;;;;;-1:-1:-1;34316:157:0;;;;;:::i;:::-;;:::i;49077:603::-;;;;;;:::i;:::-;;:::i;42833:29::-;;;;;;;;;;;;;;;;47699:637;;;;;;;;;;-1:-1:-1;47699:637:0;;;;;:::i;:::-;;:::i;28734:177::-;;;;;;;;;;-1:-1:-1;28734:177:0;;;;;:::i;:::-;;:::i;44937:94::-;;;;;;;;;;-1:-1:-1;44937:94:0;;;;;:::i;:::-;;:::i;50726:100::-;;;;;;;;;;-1:-1:-1;50726:100:0;;;;;:::i;:::-;;:::i;44161:106::-;;;;;;;;;;-1:-1:-1;44161:106:0;;;;;:::i;:::-;;:::i;31559:118::-;;;;;;;;;;-1:-1:-1;31559:118:0;;;;;:::i;:::-;;:::i;30436:211::-;;;;;;;;;;-1:-1:-1;30436:211:0;;;;;:::i;:::-;;:::i;2376:94::-;;;;;;;;;;;;;:::i;42792:32::-;;;;;;;;;;;;;;;;49898:217;;;;;;;;;;;;;:::i;45037:99::-;;;;;;;;;;-1:-1:-1;45037:99:0;;;;;:::i;:::-;;:::i;42407:48::-;;;;;;;;;;;;;;;1725:87;;;;;;;;;;-1:-1:-1;1771:7:0;1798:6;-1:-1:-1;;;;;1798:6:0;1725:87;;45142:96;;;;;;;;;;-1:-1:-1;45142:96:0;;;;;:::i;:::-;;:::i;51593:147::-;;;;;;;;;;-1:-1:-1;51593:147:0;;;;;:::i;:::-;;:::i;:::-;;;;25056:13:1;;-1:-1:-1;;;;;25052:39:1;25034:58;;25152:4;25140:17;;;25134:24;25160:18;25130:49;25108:20;;;25101:79;;;;25007:18;51593:147:0;24989:197:1;42754:33:0;;;;;;;;;;;;;;;;31891:98;;;;;;;;;;;;;:::i;44822:109::-;;;;;;;;;;-1:-1:-1;44822:109:0;;;;;:::i;:::-;;:::i;33529:274::-;;;;;;;;;;-1:-1:-1;33529:274:0;;;;;:::i;:::-;;:::i;44043:112::-;;;;;;;;;;-1:-1:-1;44043:112:0;;;;;:::i;:::-;;:::i;44361:80::-;;;;;;;;;;;;;:::i;34536:311::-;;;;;;;;;;-1:-1:-1;34536:311:0;;;;;:::i;:::-;;:::i;42503:44::-;;;;;;;;;;;;;;;42867:32;;;;;;;;;;;;;;;;48342:729;;;;;;:::i;:::-;;:::i;32052:394::-;;;;;;;;;;-1:-1:-1;32052:394:0;;;;;:::i;:::-;;:::i;38951:43::-;;;;;;;;;;;;;;;;51480:107;;;;;;;;;;-1:-1:-1;51480:107:0;;;;;:::i;:::-;;:::i;42591:35::-;;;;;;;;;;;;;;;;33866:186;;;;;;;;;;-1:-1:-1;33866:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34011:25:0;;;33988:4;34011:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33866:186;2625:192;;;;;;;;;;-1:-1:-1;2625:192:0;;;;;:::i;:::-;;:::i;43097:48::-;;;;;;;;;;-1:-1:-1;43097:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;42460:38;;;;;;;;;;;;;;;42554:32;;;;;;;;;;;;;;;;30010:370;30137:4;-1:-1:-1;;;;;;30167:40:0;;-1:-1:-1;;;30167:40:0;;:99;;-1:-1:-1;;;;;;;30218:48:0;;-1:-1:-1;;;30218:48:0;30167:99;:160;;;-1:-1:-1;;;;;;;30277:50:0;;-1:-1:-1;;;30277:50:0;30167:160;:207;;;-1:-1:-1;;;;;;;;;;19206:40:0;;;30338:36;30153:221;30010:370;-1:-1:-1;;30010:370:0:o;31736:94::-;31790:13;31819:5;31812:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31736:94;:::o;33261:204::-;33329:7;33353:16;33361:7;35173:12;;-1:-1:-1;35163:22:0;35086:105;33353:16;33345:74;;;;-1:-1:-1;;;33345:74:0;;24211:2:1;33345:74:0;;;24193:21:1;24250:2;24230:18;;;24223:30;24289:34;24269:18;;;24262:62;-1:-1:-1;;;24340:18:1;;;24333:43;24393:19;;33345:74:0;;;;;;;;;-1:-1:-1;33435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33435:24:0;;33261:204::o;32824:379::-;32893:13;32909:24;32925:7;32909:15;:24::i;:::-;32893:40;;32954:5;-1:-1:-1;;;;;32948:11:0;:2;-1:-1:-1;;;;;32948:11:0;;;32940:58;;;;-1:-1:-1;;;32940:58:0;;19034:2:1;32940:58:0;;;19016:21:1;19073:2;19053:18;;;19046:30;19112:34;19092:18;;;19085:62;-1:-1:-1;;;19163:18:1;;;19156:32;19205:19;;32940:58:0;19006:224:1;32940:58:0;681:10;-1:-1:-1;;;;;33023:21:0;;;;:62;;-1:-1:-1;33048:37:0;33065:5;681:10;33866:186;:::i;33048:37::-;33007:153;;;;-1:-1:-1;;;33007:153:0;;14308:2:1;33007:153:0;;;14290:21:1;14347:2;14327:18;;;14320:30;14386:34;14366:18;;;14359:62;14457:27;14437:18;;;14430:55;14502:19;;33007:153:0;14280:247:1;33007:153:0;33169:28;33178:2;33182:7;33191:5;33169:8;:28::i;:::-;32886:317;32824:379;;:::o;44273:82::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44324:25:::1;44331:18;;44324:25;:::i;:::-;44273:82::o:0;44680:136::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44752:18:::1;:26:::0;;;44785:17:::1;:25:::0;44680:136::o;34111:142::-;34219:28;34229:4;34235:2;34239:7;34219:9;:28::i;50146:406::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;50256:13:::1;50244:8;50228:13;28647:12:::0;;;28571:94;50228:13:::1;:24;;;;:::i;:::-;:41;;50220:93;;;::::0;-1:-1:-1;;;50220:93:0;;21313:2:1;50220:93:0::1;::::0;::::1;21295:21:1::0;21352:2;21332:18;;;21325:30;21391:34;21371:18;;;21364:62;-1:-1:-1;;;21442:18:1;;;21435:37;21489:19;;50220:93:0::1;21285:229:1::0;50220:93:0::1;50328:23;50339:12;50328:8:::0;:23:::1;:::i;:::-;:28:::0;50320:85:::1;;;::::0;-1:-1:-1;;;50320:85:0;;9985:2:1;50320:85:0::1;::::0;::::1;9967:21:1::0;10024:2;10004:18;;;9997:30;10063:34;10043:18;;;10036:62;-1:-1:-1;;;10114:18:1;;;10107:42;10166:19;;50320:85:0::1;9957:234:1::0;50320:85:0::1;50412:17;50432:23;50443:12;50432:8:::0;:23:::1;:::i;:::-;50412:43;;50467:9;50462:85;50486:9;50482:1;:13;50462:85;;;50511:28;50521:3;50526:12;50511:9;:28::i;:::-;50497:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50462:85;;;;50213:339;50146:406:::0;;:::o;51356:118::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;16700:1:::1;17296:7;;:19;;17288:63;;;::::0;-1:-1:-1;;;17288:63:0;;23435:2:1;17288:63:0::1;::::0;::::1;23417:21:1::0;23474:2;23454:18;;;23447:30;23513:33;23493:18;;;23486:61;23564:18;;17288:63:0::1;23407:181:1::0;17288:63:0::1;16700:1;17429:7;:18:::0;51440:28:::2;51459:8:::0;51440:18:::2;:28::i;:::-;-1:-1:-1::0;16656:1:0::1;17608:7;:22:::0;51356:118::o;47176:517::-;47246:13;;:18;;;;:54;;;47287:13;;47268:15;:32;;47246:54;47238:91;;;;-1:-1:-1;;;47238:91:0;;12823:2:1;47238:91:0;;;12805:21:1;12862:2;12842:18;;;12835:30;12901:26;12881:18;;;12874:54;12945:18;;47238:91:0;12795:174:1;47238:91:0;47372:19;47360:8;47344:13;28647:12;;;28571:94;47344:13;:24;;;;:::i;:::-;:47;;47336:132;;;;-1:-1:-1;;;47336:132:0;;;;;;;:::i;:::-;47494:20;;47483:8;:31;47475:88;;;;-1:-1:-1;;;47475:88:0;;15499:2:1;47475:88:0;;;15481:21:1;15538:2;15518:18;;;15511:30;15577:34;15557:18;;;15550:62;-1:-1:-1;;;15628:18:1;;;15621:42;15680:19;;47475:88:0;15471:234:1;47475:88:0;47572:17;47609:8;47592:14;;:25;;;;:::i;:::-;47572:45;-1:-1:-1;47624:33:0;681:10;47648:8;47624:9;:33::i;:::-;47664:23;47677:9;47664:12;:23::i;:::-;47231:462;47176:517;:::o;29202:744::-;29311:7;29346:16;29356:5;29346:9;:16::i;:::-;29338:5;:24;29330:71;;;;-1:-1:-1;;;29330:71:0;;8408:2:1;29330:71:0;;;8390:21:1;8447:2;8427:18;;;8420:30;8486:34;8466:18;;;8459:62;-1:-1:-1;;;8537:18:1;;;8530:32;8579:19;;29330:71:0;8380:224:1;29330:71:0;29408:22;29433:13;28647:12;;;28571:94;29433:13;29408:38;;29453:19;29483:25;29533:9;29528:350;29552:14;29548:1;:18;29528:350;;;29582:31;29616:14;;;:11;:14;;;;;;;;;29582:48;;;;;;;;;-1:-1:-1;;;;;29582:48:0;;;;;-1:-1:-1;;;29582:48:0;;;;;;;;;;;;29643:28;29639:89;;29704:14;;;-1:-1:-1;29639:89:0;29761:5;-1:-1:-1;;;;;29740:26:0;:17;-1:-1:-1;;;;;29740:26:0;;29736:135;;;29798:5;29783:11;:20;29779:59;;;-1:-1:-1;29825:1:0;-1:-1:-1;29818:8:0;;-1:-1:-1;;;29818:8:0;29779:59;29848:13;;;;:::i;:::-;;;;29736:135;-1:-1:-1;29568:3:0;;;;:::i;:::-;;;;29528:350;;;-1:-1:-1;29884:56:0;;-1:-1:-1;;;29884:56:0;;22613:2:1;29884:56:0;;;22595:21:1;22652:2;22632:18;;;22625:30;22691:34;22671:18;;;22664:62;-1:-1:-1;;;22742:18:1;;;22735:44;22796:19;;29884:56:0;22585:236:1;44447:227:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44545:9:::1;44542:127;;;44570:13;:32:::0;;-1:-1:-1;;;;;44570:32:0;::::1;-1:-1:-1::0;;;;;;44570:32:0;;::::1;;::::0;;47231:462;47176:517;:::o;44542:127::-:1;44629:13;:32:::0;;-1:-1:-1;;;;;44629:32:0;::::1;-1:-1:-1::0;;;;;;44629:32:0;;::::1;;::::0;;44447:227;;:::o;50910:440::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;50968:13:::1;::::0;-1:-1:-1;;;;;50968:13:0::1;50960:56;;;::::0;-1:-1:-1;;;50960:56:0;;20566:2:1;50960:56:0::1;::::0;::::1;20548:21:1::0;20605:2;20585:18;;;20578:30;-1:-1:-1;;;20624:18:1;;;20617:46;20680:18;;50960:56:0::1;20538:166:1::0;50960:56:0::1;51035:13;::::0;-1:-1:-1;;;;;51035:13:0::1;51027:56;;;::::0;-1:-1:-1;;;51027:56:0;;12478:2:1;51027:56:0::1;::::0;::::1;12460:21:1::0;12517:2;12497:18;;;12490:30;-1:-1:-1;;;12536:18:1;;;12529:46;12592:18;;51027:56:0::1;12450:166:1::0;51027:56:0::1;51094:15;51112:21;51094:39;;51144:21;51168:47;51211:3;51168:38;51186:19;;51180:3;:25;;;;:::i;:::-;51168:7:::0;;:11:::1;:38::i;:::-;:42:::0;::::1;:47::i;:::-;51234:13;::::0;51226:46:::1;::::0;51144:71;;-1:-1:-1;;;;;;51234:13:0::1;::::0;51226:46;::::1;;;::::0;51144:71;;51234:13:::1;51226:46:::0;51234:13;51226:46;51144:71;51234:13;51226:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51291:13:0::1;::::0;-1:-1:-1;;;;;51291:13:0::1;51283:59;51315:26;:7:::0;51327:13;51315:11:::1;:26::i;:::-;51283:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;34316:157:::0;34428:39;34445:4;34451:2;34455:7;34428:39;;;;;;;;;;;;:16;:39::i;49077:603::-;49151:18;;:23;;;;:64;;;49197:18;;49178:15;:37;;49151:64;49143:105;;;;-1:-1:-1;;;49143:105:0;;;;;;;:::i;:::-;49290:10;49312:42;49290:65;49282:138;;;;-1:-1:-1;;;49282:138:0;;10398:2:1;49282:138:0;;;10380:21:1;10437:2;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;10547:30;10527:18;;;10520:58;10595:19;;49282:138:0;10370:250:1;49282:138:0;49462:19;49452:6;49436:13;28647:12;;;28571:94;49436:13;:22;;;;:::i;:::-;:45;;49428:135;;;;-1:-1:-1;;;49428:135:0;;10827:2:1;49428:135:0;;;10809:21:1;10866:2;10846:18;;;10839:30;10905:34;10885:18;;;10878:62;10976:34;10956:18;;;10949:62;-1:-1:-1;;;11027:19:1;;;11020:44;11081:19;;49428:135:0;10799:307:1;49428:135:0;49573:12;49588:16;:14;:16::i;:::-;49573:31;;49619:21;49629:2;49633:6;49619:9;:21::i;:::-;49648:27;49661:13;49668:6;49661:4;:13;:::i;:::-;49648:12;:27::i;47699:637::-;47812:65;681:10;47844:8;47854:15;47871:5;47812:17;:65::i;:::-;47804:104;;;;-1:-1:-1;;;47804:104:0;;12123:2:1;47804:104:0;;;12105:21:1;12162:2;12142:18;;;12135:30;12201:28;12181:18;;;12174:56;12247:18;;47804:104:0;12095:176:1;47804:104:0;47923:18;;:23;;;;:64;;;47969:18;;47950:15;:37;;47923:64;47915:105;;;;-1:-1:-1;;;47915:105:0;;;;;;;:::i;:::-;48063:19;48051:8;48035:13;28647:12;;;28571:94;48035:13;:24;;;;:::i;:::-;:47;;48027:132;;;;-1:-1:-1;;;48027:132:0;;;;;;;:::i;:::-;681:10;48174:27;;;;:13;:27;;;;;;:32;48166:81;;;;-1:-1:-1;;;48166:81:0;;18629:2:1;48166:81:0;;;18611:21:1;18668:2;18648:18;;;18641:30;18707:34;18687:18;;;18680:62;-1:-1:-1;;;18758:18:1;;;18751:34;18802:19;;48166:81:0;18601:226:1;48166:81:0;681:10;48256:27;;;;:13;:27;;48297:33;;48307:12;48321:8;48297:9;:33::i;28734:177::-;28801:7;28833:13;28647:12;;;28571:94;28833:13;28825:5;:21;28817:69;;;;-1:-1:-1;;;28817:69:0;;11313:2:1;28817:69:0;;;11295:21:1;11352:2;11332:18;;;11325:30;11391:34;11371:18;;;11364:62;-1:-1:-1;;;11442:18:1;;;11435:33;11485:19;;28817:69:0;11285:225:1;28817:69:0;-1:-1:-1;28900:5:0;28734:177::o;44937:94::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;45004:13:::1;:21:::0;44937:94::o;50726:100::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;50797:23:::1;:13;50813:7:::0;;50797:23:::1;:::i;44161:106::-:0;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44232:17:::1;:29:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;44232:29:0;;;;;::::1;::::0;44161:106::o;31559:118::-;31623:7;31646:20;31658:7;31646:11;:20::i;:::-;:25;;31559:118;-1:-1:-1;;31559:118:0:o;30436:211::-;30500:7;-1:-1:-1;;;;;30524:19:0;;30516:75;;;;-1:-1:-1;;;30516:75:0;;15087:2:1;30516:75:0;;;15069:21:1;15126:2;15106:18;;;15099:30;15165:34;15145:18;;;15138:62;-1:-1:-1;;;15216:18:1;;;15209:41;15267:19;;30516:75:0;15059:233:1;30516:75:0;-1:-1:-1;;;;;;30613:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30613:27:0;;30436:211::o;2376:94::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;49898:217::-:0;49945:7;49964:13;;49981:1;49964:18;;:54;;;;;50005:13;;49986:15;:32;;49964:54;49961:149;;;-1:-1:-1;50036:14:0;;;49898:217::o;49961:149::-;-1:-1:-1;50085:17:0;;;49898:217::o;45037:99::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;45105:17:::1;:25:::0;45037:99::o;45142:96::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;45210:14:::1;:22:::0;45142:96::o;51593:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;51714:20:0;51726:7;51714:11;:20::i;31891:98::-;31947:13;31976:7;31969:14;;;;;:::i;44822:109::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44900:17:::1;:25:::0;44822:109::o;33529:274::-;-1:-1:-1;;;;;33620:24:0;;681:10;33620:24;;33612:63;;;;-1:-1:-1;;;33612:63:0;;17498:2:1;33612:63:0;;;17480:21:1;17537:2;17517:18;;;17510:30;17576:28;17556:18;;;17549:56;17622:18;;33612:63:0;17470:176:1;33612:63:0;681:10;33684:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33684:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33684:53:0;;;;;;;;;;33749:48;;7930:41:1;;;33684:42:0;;681:10;33749:48;;7903:18:1;33749:48:0;;;;;;;33529:274;;:::o;44043:112::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44117:18:::1;:30:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;44117:30:0;;;;;::::1;::::0;44043:112::o;44361:80::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;44411:24:::1;44418:17;;44411:24;:::i;34536:311::-:0;34673:28;34683:4;34689:2;34693:7;34673:9;:28::i;:::-;34724:48;34747:4;34753:2;34757:7;34766:5;34724:22;:48::i;:::-;34708:133;;;;-1:-1:-1;;;34708:133:0;;;;;;;:::i;48342:729::-;48464:56;681:10;48497:15;48514:5;48464:18;:56::i;:::-;48456:96;;;;-1:-1:-1;;;48456:96:0;;9629:2:1;48456:96:0;;;9611:21:1;9668:2;9648:18;;;9641:30;9707:29;9687:18;;;9680:57;9754:18;;48456:96:0;9601:177:1;48456:96:0;48567:18;;:23;;;;:64;;;48613:18;;48594:15;:37;;48567:64;48559:105;;;;-1:-1:-1;;;48559:105:0;;;;;;;:::i;:::-;48707:19;48695:8;48679:13;28647:12;;;28571:94;48679:13;:24;;;;:::i;:::-;:47;;48671:132;;;;-1:-1:-1;;;48671:132:0;;;;;;;:::i;:::-;48861:17;;681:10;48818:28;;;;:14;:28;;;;;;:39;;48849:8;;48818:39;:::i;:::-;:60;;48810:115;;;;-1:-1:-1;;;48810:115:0;;22202:2:1;48810:115:0;;;22184:21:1;22241:2;22221:18;;;22214:30;22280:34;22260:18;;;22253:62;-1:-1:-1;;;22331:18:1;;;22324:40;22381:19;;48810:115:0;22174:232:1;48810:115:0;681:10;48934:28;;;;:14;:28;;;;;:40;;48966:8;;48934:28;:40;;48966:8;;48934:40;:::i;:::-;;;;-1:-1:-1;48983:33:0;;-1:-1:-1;681:10:0;48993:12;601:98;48983:33;49023:42;49056:8;49036:17;;:28;;;;:::i;32052:394::-;32150:13;32191:16;32199:7;35173:12;;-1:-1:-1;35163:22:0;35086:105;32191:16;32175:97;;;;-1:-1:-1;;;32175:97:0;;17082:2:1;32175:97:0;;;17064:21:1;17121:2;17101:18;;;17094:30;17160:34;17140:18;;;17133:62;-1:-1:-1;;;17211:18:1;;;17204:45;17266:19;;32175:97:0;17054:237:1;32175:97:0;32281:21;32305:10;:8;:10::i;:::-;32281:34;;32360:1;32342:7;32336:21;:25;:104;;;;;;;;;;;;;;;;;32397:7;32406:18;:7;:16;:18::i;:::-;32380:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32336:104;32322:118;32052:394;-1:-1:-1;;;32052:394:0:o;51480:107::-;51538:7;51561:20;51575:5;51561:13;:20::i;2625:192::-;1771:7;1798:6;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;8811:2:1;2706:73:0::1;::::0;::::1;8793:21:1::0;8850:2;8830:18;;;8823:30;8889:34;8869:18;;;8862:62;-1:-1:-1;;;8940:18:1;;;8933:36;8986:19;;2706:73:0::1;8783:228:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;:::-;2625:192:::0;:::o;38773:172::-;38870:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38870:29:0;-1:-1:-1;;;;;38870:29:0;;;;;;;;;38911:28;;38870:24;;38911:28;;;;;;;38773:172;;;:::o;37138:1529::-;37235:35;37273:20;37285:7;37273:11;:20::i;:::-;37344:18;;37235:58;;-1:-1:-1;37302:22:0;;-1:-1:-1;;;;;37328:34:0;681:10;-1:-1:-1;;;;;37328:34:0;;:81;;;-1:-1:-1;681:10:0;37373:20;37385:7;37373:11;:20::i;:::-;-1:-1:-1;;;;;37373:36:0;;37328:81;:142;;;-1:-1:-1;37437:18:0;;37420:50;;681:10;33866:186;:::i;37420:50::-;37302:169;;37496:17;37480:101;;;;-1:-1:-1;;;37480:101:0;;17853:2:1;37480:101:0;;;17835:21:1;17892:2;17872:18;;;17865:30;17931:34;17911:18;;;17904:62;-1:-1:-1;;;17982:18:1;;;17975:48;18040:19;;37480:101:0;17825:240:1;37480:101:0;37628:4;-1:-1:-1;;;;;37606:26:0;:13;:18;;;-1:-1:-1;;;;;37606:26:0;;37590:98;;;;-1:-1:-1;;;37590:98:0;;16314:2:1;37590:98:0;;;16296:21:1;16353:2;16333:18;;;16326:30;16392:34;16372:18;;;16365:62;-1:-1:-1;;;16443:18:1;;;16436:36;16489:19;;37590:98:0;16286:228:1;37590:98:0;-1:-1:-1;;;;;37703:16:0;;37695:66;;;;-1:-1:-1;;;37695:66:0;;11717:2:1;37695:66:0;;;11699:21:1;11756:2;11736:18;;;11729:30;11795:34;11775:18;;;11768:62;-1:-1:-1;;;11846:18:1;;;11839:35;11891:19;;37695:66:0;11689:227:1;37695:66:0;37870:49;37887:1;37891:7;37900:13;:18;;;37870:8;:49::i;:::-;-1:-1:-1;;;;;37928:18:0;;;;;;:12;:18;;;;;:31;;37958:1;;37928:18;:31;;37958:1;;-1:-1:-1;;;;;37928:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37928:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37966:16:0;;-1:-1:-1;37966:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37966:16:0;;:29;;-1:-1:-1;;37966:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37966:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38025:43:0;;;;;;;;-1:-1:-1;;;;;38025:43:0;;;;;;38051:15;38025:43;;;;;;;;;-1:-1:-1;38002:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38002:66:0;-1:-1:-1;;;;;;38002:66:0;;;;;;;;;;;38318:11;38014:7;-1:-1:-1;38318:11:0;:::i;:::-;38381:1;38340:24;;;:11;:24;;;;;:29;38296:33;;-1:-1:-1;;;;;;38340:29:0;38336:236;;38398:20;38406:11;35173:12;;-1:-1:-1;35163:22:0;35086:105;38398:20;38394:171;;;38458:97;;;;;;;;38485:18;;-1:-1:-1;;;;;38458:97:0;;;;;;38516:28;;;;38458:97;;;;;;;;;;-1:-1:-1;38431:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38431:124:0;-1:-1:-1;;;;;;38431:124:0;;;;;;;;;;;;38394:171;38604:7;38600:2;-1:-1:-1;;;;;38585:27:0;38594:4;-1:-1:-1;;;;;38585:27:0;;;;;;;;;;;38619:42;37228:1439;;;37138:1529;;;:::o;35197:98::-;35262:27;35272:2;35276:8;35262:27;;;;;;;;;;;;:9;:27::i;39099:846::-;39189:24;;39228:12;39220:49;;;;-1:-1:-1;;;39220:49:0;;14734:2:1;39220:49:0;;;14716:21:1;14773:2;14753:18;;;14746:30;14812:26;14792:18;;;14785:54;14856:18;;39220:49:0;14706:174:1;39220:49:0;39276:16;39326:1;39295:28;39315:8;39295:17;:28;:::i;:::-;:32;;;;:::i;:::-;39276:51;-1:-1:-1;39349:18:0;39366:1;39349:14;:18;:::i;:::-;39338:8;:29;39334:81;;;39389:18;39406:1;39389:14;:18;:::i;:::-;39378:29;;39334:81;39530:17;39538:8;35173:12;;-1:-1:-1;35163:22:0;35086:105;39530:17;39522:68;;;;-1:-1:-1;;;39522:68:0;;23028:2:1;39522:68:0;;;23010:21:1;23067:2;23047:18;;;23040:30;23106:34;23086:18;;;23079:62;-1:-1:-1;;;23157:18:1;;;23150:36;23203:19;;39522:68:0;23000:228:1;39522:68:0;39614:17;39597:297;39638:8;39633:1;:13;39597:297;;39697:1;39666:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;39666:19:0;39662:225;;39712:31;39746:14;39758:1;39746:11;:14::i;:::-;39788:89;;;;;;;;39815:14;;-1:-1:-1;;;;;39788:89:0;;;;;;39842:24;;;;39788:89;;;;;;;;;;-1:-1:-1;39771:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;39771:106:0;-1:-1:-1;;;;;;39771:106:0;;;;;;;;;;;;-1:-1:-1;39662:225:0;39648:3;;;;:::i;:::-;;;;39597:297;;;-1:-1:-1;39927:12:0;:8;39938:1;39927:12;:::i;:::-;39900:24;:39;-1:-1:-1;;;39099:846:0:o;49686:206::-;49759:5;49746:9;:18;;49738:53;;;;-1:-1:-1;;;49738:53:0;;19857:2:1;49738:53:0;;;19839:21:1;19896:2;19876:18;;;19869:30;-1:-1:-1;;;19915:18:1;;;19908:52;19977:18;;49738:53:0;19829:172:1;49738:53:0;49814:5;49802:9;:17;49798:89;;;681:10;49830:49;49861:17;49873:5;49861:9;:17;:::i;:::-;49830:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14191:220;14249:7;14273:6;14269:20;;-1:-1:-1;14288:1:0;14281:8;;14269:20;14300:9;14312:5;14316:1;14312;:5;:::i;:::-;14300:17;-1:-1:-1;14345:1:0;14336:5;14340:1;14300:17;14336:5;:::i;:::-;:10;14328:56;;;;-1:-1:-1;;;14328:56:0;;15912:2:1;14328:56:0;;;15894:21:1;15951:2;15931:18;;;15924:30;15990:34;15970:18;;;15963:62;-1:-1:-1;;;16041:18:1;;;16034:31;16082:19;;14328:56:0;15884:223:1;14889:153:0;14947:7;14979:1;14975;:5;14967:44;;;;-1:-1:-1;;;14967:44:0;;13953:2:1;14967:44:0;;;13935:21:1;13992:2;13972:18;;;13965:30;14031:28;14011:18;;;14004:56;14077:18;;14967:44:0;13925:176:1;14967:44:0;15029:5;15033:1;15029;:5;:::i;13774:158::-;13832:7;13865:1;13860;:6;;13852:49;;;;-1:-1:-1;;;13852:49:0;;13594:2:1;13852:49:0;;;13576:21:1;13633:2;13613:18;;;13606:30;13672:32;13652:18;;;13645:60;13722:18;;13852:49:0;13566:180:1;13852:49:0;13919:5;13923:1;13919;:5;:::i;46307:863::-;46430:4;46483:12;46525:5;46532:6;46540:8;46508:41;;;;;;;;;6910:19:1;;;6967:2;6963:15;;;;-1:-1:-1;;6959:53:1;6954:2;6945:12;;6938:75;7038:2;7029:12;;7022:28;7075:2;7066:12;;6900:184;46508:41:0;;;;-1:-1:-1;;46508:41:0;;;;;;;;;46498:52;;46508:41;46498:52;;;;;-1:-1:-1;46576:5:0;46561:12;46592:292;46615:5;:12;46611:1;:16;;;46592:292;;;46654:4;46661;46654:11;46670:1;46653:18;46649:200;;;46726:5;46732:1;46726:8;;;;;;;;;;:::i;:::-;;;;;;;46736:4;46709:32;;;;;;;;6155:19:1;;;6199:2;6190:12;;6183:28;6236:2;6227:12;;6145:100;46709:32:0;;;;;;;;;;;;;46699:43;;;;;;46692:50;;46649:200;;;46817:4;46823:5;46829:1;46823:8;;;;;;;;;;:::i;:::-;;;;;;;46800:32;;;;;;;;6155:19:1;;;6199:2;6190:12;;6183:28;6236:2;6227:12;;6145:100;46800:32:0;;;;;;;;;;;;;46790:43;;;;;;46783:50;;46649:200;46863:9;46871:1;46863:9;;:::i;:::-;;-1:-1:-1;46629:3:0;;;;:::i;:::-;;;;46592:292;;;;46963:6;46959:179;46979:17;:24;46975:28;;46959:179;;;47046:17;47064:1;47046:20;;;;;;;;:::i;:::-;;;;;;;;;47038:4;:28;47034:93;;;47107:4;47100:11;;;;;;;47034:93;47005:3;;;;:::i;:::-;;;;46959:179;;;;47157:5;47150:12;;;;46307:863;;;;;;;:::o;30899:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31016:16:0;31024:7;35173:12;;-1:-1:-1;35163:22:0;35086:105;31016:16;31008:71;;;;-1:-1:-1;;;31008:71:0;;9218:2:1;31008:71:0;;;9200:21:1;9257:2;9237:18;;;9230:30;9296:34;9276:18;;;9269:62;-1:-1:-1;;;9347:18:1;;;9340:40;9397:19;;31008:71:0;9190:232:1;31008:71:0;31088:26;31136:12;31125:7;:23;31121:93;;31180:22;31190:12;31180:7;:22;:::i;:::-;:26;;31205:1;31180:26;:::i;:::-;31159:47;;31121:93;31242:7;31222:212;31259:18;31251:4;:26;31222:212;;31296:31;31330:17;;;:11;:17;;;;;;;;;31296:51;;;;;;;;;-1:-1:-1;;;;;31296:51:0;;;;;-1:-1:-1;;;31296:51:0;;;;;;;;;;;;31360:28;31356:71;;31408:9;30899:606;-1:-1:-1;;;;30899:606:0:o;31356:71::-;-1:-1:-1;31279:6:0;;;;:::i;:::-;;;;31222:212;;;-1:-1:-1;31442:57:0;;-1:-1:-1;;;31442:57:0;;23795:2:1;31442:57:0;;;23777:21:1;23834:2;23814:18;;;23807:30;23873:34;23853:18;;;23846:62;-1:-1:-1;;;23924:18:1;;;23917:45;23979:19;;31442:57:0;23767:237:1;2825:173:0;2881:16;2900:6;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;2950:40;;2900:6;;;;;;;2950:40;;2881:16;2950:40;2870:128;2825:173;:::o;40488:690::-;40625:4;-1:-1:-1;;;;;40642:13:0;;4009:20;4057:8;40638:535;;40681:72;;-1:-1:-1;;;40681:72:0;;-1:-1:-1;;;;;40681:36:0;;;;;:72;;681:10;;40732:4;;40738:7;;40747:5;;40681:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40681:72:0;;;;;;;;-1:-1:-1;;40681:72:0;;;;;;;;;;;;:::i;:::-;;;40668:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40912:13:0;;40908:215;;40945:61;;-1:-1:-1;;;40945:61:0;;;;;;;:::i;40908:215::-;41091:6;41085:13;41076:6;41072:2;41068:15;41061:38;40668:464;-1:-1:-1;;;;;;40803:55:0;-1:-1:-1;;;40803:55:0;;-1:-1:-1;40796:62:0;;40638:535;-1:-1:-1;41161:4:0;41154:11;;45334:877;45549:39;;;;;;;6910:19:1;;;6967:2;6963:15;;;-1:-1:-1;;6959:53:1;6945:12;;;6938:75;45474:1:0;7029:12:1;;;;7022:28;;;45549:39:0;;;;;;;;;;7066:12:1;;;;45549:39:0;;;45539:50;;;;;-1:-1:-1;;45474:1:0;6910:19:1;-1:-1:-1;45631:292:0;45654:5;:12;45650:1;:16;;;45631:292;;;45693:4;45700;45693:11;45709:1;45692:18;45688:200;;;45765:5;45771:1;45765:8;;;;;;;;;;:::i;:::-;;;;;;;45775:4;45748:32;;;;;;;;6155:19:1;;;6199:2;6190:12;;6183:28;6236:2;6227:12;;6145:100;45748:32:0;;;;;;;;;;;;;45738:43;;;;;;45731:50;;45688:200;;;45856:4;45862:5;45868:1;45862:8;;;;;;;;;;:::i;:::-;;;;;;;45839:32;;;;;;;;6155:19:1;;;6199:2;6190:12;;6183:28;6236:2;6227:12;;6145:100;45839:32:0;;;;;;;;;;;;;45829:43;;;;;;45822:50;;45688:200;45902:9;45910:1;45902:9;;:::i;:::-;;-1:-1:-1;45668:3:0;;;;:::i;:::-;;;;45631:292;;;;46002:6;45998:181;46018:18;:25;46014:29;;45998:181;;;46086:18;46105:1;46086:21;;;;;;;;:::i;:::-;;;;;;;;;46078:4;:29;46074:94;;;46148:4;46141:11;;;;;;;;46074:94;46045:3;;;;:::i;:::-;;;;45998:181;;;-1:-1:-1;46198:5:0;;45334:877;-1:-1:-1;;;;;;;45334:877:0:o;50612:108::-;50672:13;50701;50694:20;;;;;:::i;11026:723::-;11082:13;11303:10;11299:53;;-1:-1:-1;;11330:10:0;;;;;;;;;;;;-1:-1:-1;;;11330:10:0;;;;;11026:723::o;11299:53::-;11377:5;11362:12;11418:78;11425:9;;11418:78;;11451:8;;;;:::i;:::-;;-1:-1:-1;11474:10:0;;-1:-1:-1;11482:2:0;11474:10;;:::i;:::-;;;11418:78;;;11506:19;11538:6;11528:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11528:17:0;;11506:39;;11556:154;11563:10;;11556:154;;11590:11;11600:1;11590:11;;:::i;:::-;;-1:-1:-1;11659:10:0;11667:2;11659:5;:10;:::i;:::-;11646:24;;:2;:24;:::i;:::-;11633:39;;11616:6;11623;11616:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11616:56:0;;;;;;;;-1:-1:-1;11687:11:0;11696:2;11687:11;;:::i;:::-;;;11556:154;;30653:240;30714:7;-1:-1:-1;;;;;30746:19:0;;30730:102;;;;-1:-1:-1;;;30730:102:0;;13176:2:1;30730:102:0;;;13158:21:1;13215:2;13195:18;;;13188:30;13254:34;13234:18;;;13227:62;-1:-1:-1;;;13305:18:1;;;13298:47;13362:19;;30730:102:0;13148:239:1;30730:102:0;-1:-1:-1;;;;;;30854:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30854:32:0;;-1:-1:-1;;;;;30854:32:0;;30653:240::o;35634:1272::-;35762:12;;-1:-1:-1;;;;;35789:16:0;;35781:62;;;;-1:-1:-1;;;35781:62:0;;20911:2:1;35781:62:0;;;20893:21:1;20950:2;20930:18;;;20923:30;20989:34;20969:18;;;20962:62;-1:-1:-1;;;21040:18:1;;;21033:31;21081:19;;35781:62:0;20883:223:1;35781:62:0;35980:21;35988:12;35173;;-1:-1:-1;35163:22:0;35086:105;35980:21;35979:22;35971:64;;;;-1:-1:-1;;;35971:64:0;;20208:2:1;35971:64:0;;;20190:21:1;20247:2;20227:18;;;20220:30;20286:31;20266:18;;;20259:59;20335:18;;35971:64:0;20180:179:1;35971:64:0;36062:12;36050:8;:24;;36042:71;;;;-1:-1:-1;;;36042:71:0;;24625:2:1;36042:71:0;;;24607:21:1;24664:2;24644:18;;;24637:30;24703:34;24683:18;;;24676:62;-1:-1:-1;;;24754:18:1;;;24747:32;24796:19;;36042:71:0;24597:224:1;36042:71:0;-1:-1:-1;;;;;36225:16:0;;36192:30;36225:16;;;:12;:16;;;;;;;;;36192:49;;;;;;;;;-1:-1:-1;;;;;36192:49:0;;;;;-1:-1:-1;;;36192:49:0;;;;;;;;;;;36267:119;;;;;;;;36287:19;;36192:49;;36267:119;;;36287:39;;36317:8;;36287:39;:::i;:::-;-1:-1:-1;;;;;36267:119:0;;;;;36370:8;36335:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36267:119:0;;;;;;-1:-1:-1;;;;;36248:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36248:138:0;;;;;;;;;;;;36421:43;;;;;;;;;;;36447:15;36421:43;;;;;;;;36393:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36393:71:0;-1:-1:-1;;;;;;36393:71:0;;;;;;;;;;;;;;;;;;36405:12;;36517:281;36541:8;36537:1;:12;36517:281;;;36570:38;;36595:12;;-1:-1:-1;;;;;36570:38:0;;;36587:1;;36570:38;;36587:1;;36570:38;36635:59;36666:1;36670:2;36674:12;36688:5;36635:22;:59::i;:::-;36617:150;;;;-1:-1:-1;;;36617:150:0;;;;;;;:::i;:::-;36776:14;;;;:::i;:::-;;;;36551:3;;;;;:::i;:::-;;;;36517:281;;;-1:-1:-1;36806:12:0;:27;;;36840:60;50146: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:160::-;257:20;;313:13;;306:21;296:32;;286:2;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:2;;;485:1;482;475:12;437:2;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:2;;;693:1;690;683:12;645:2;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;635:173;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:2;;;975:1;972;965:12;927:2;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;917:224;;;;;:::o;1146:980::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:2;;;1335:1;1332;1325:12;1286:2;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:2;1427:38;1461:2;1450:9;1446:18;1427:38;:::i;:::-;1417:48;;1512:2;1501:9;1497:18;1484:32;1474:42;;1567:2;1556:9;1552:18;1539:32;1590:18;1631:2;1623:6;1620:14;1617:2;;;1647:1;1644;1637:12;1617:2;1685:6;1674:9;1670:22;1660:32;;1730:7;1723:4;1719:2;1715:13;1711:27;1701:2;;1752:1;1749;1742:12;1701:2;1788;1775:16;1810:2;1806;1803:10;1800:2;;;1816:18;;:::i;:::-;1858:53;1901:2;1882:13;;-1:-1:-1;;1878:27:1;1874:36;;1858:53;:::i;:::-;1845:66;;1934:2;1927:5;1920:17;1974:7;1969:2;1964;1960;1956:11;1952:20;1949:33;1946:2;;;1995:1;1992;1985:12;1946:2;2050;2045;2041;2037:11;2032:2;2025:5;2021:14;2008:45;2094:1;2089:2;2084;2077:5;2073:14;2069:23;2062:34;;2115:5;2105:15;;;;;1276:850;;;;;;;:::o;2131:254::-;2196:6;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:2;;;2273:1;2270;2263:12;2225:2;2296:29;2315:9;2296:29;:::i;:::-;2286:39;;2344:35;2375:2;2364:9;2360:18;2344:35;:::i;2390:254::-;2458:6;2466;2519:2;2507:9;2498:7;2494:23;2490:32;2487:2;;;2535:1;2532;2525:12;2487:2;2558:29;2577:9;2558:29;:::i;:::-;2548:39;2634:2;2619:18;;;;2606:32;;-1:-1:-1;;;2477:167:1:o;2649:254::-;2714:6;2722;2775:2;2763:9;2754:7;2750:23;2746:32;2743:2;;;2791:1;2788;2781:12;2743:2;2814:26;2830:9;2814:26;:::i;2908:180::-;2967:6;3020:2;3008:9;2999:7;2995:23;2991:32;2988:2;;;3036:1;3033;3026:12;2988:2;-1:-1:-1;3059:23:1;;2978:110;-1:-1:-1;2978:110:1:o;3093:245::-;3151:6;3204:2;3192:9;3183:7;3179:23;3175:32;3172:2;;;3220:1;3217;3210:12;3172:2;3259:9;3246:23;3278:30;3302:5;3278:30;:::i;3343:249::-;3412:6;3465:2;3453:9;3444:7;3440:23;3436:32;3433:2;;;3481:1;3478;3471:12;3433:2;3513:9;3507:16;3532:30;3556:5;3532:30;:::i;3597:592::-;3668:6;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:2;;;3745:1;3742;3735:12;3697:2;3785:9;3772:23;3814:18;3855:2;3847:6;3844:14;3841:2;;;3871:1;3868;3861:12;3841:2;3909:6;3898:9;3894:22;3884:32;;3954:7;3947:4;3943:2;3939:13;3935:27;3925:2;;3976:1;3973;3966:12;3925:2;4016;4003:16;4042:2;4034:6;4031:14;4028:2;;;4058:1;4055;4048:12;4028:2;4103:7;4098:2;4089:6;4085:2;4081:15;4077:24;4074:37;4071:2;;;4124:1;4121;4114:12;4071:2;4155;4147:11;;;;;4177:6;;-1:-1:-1;3687:502:1;;-1:-1:-1;;;;3687:502:1:o;4379:254::-;4447:6;4455;4508:2;4496:9;4487:7;4483:23;4479:32;4476:2;;;4524:1;4521;4514:12;4476:2;4560:9;4547:23;4537:33;;4589:38;4623:2;4612:9;4608:18;4589:38;:::i;4638:1093::-;4740:6;4748;4756;4809:2;4797:9;4788:7;4784:23;4780:32;4777:2;;;4825:1;4822;4815:12;4777:2;4861:9;4848:23;4838:33;;4890:2;4939;4928:9;4924:18;4911:32;4901:42;;4994:2;4983:9;4979:18;4966:32;5017:18;5058:2;5050:6;5047:14;5044:2;;;5074:1;5071;5064:12;5044:2;5112:6;5101:9;5097:22;5087:32;;5157:7;5150:4;5146:2;5142:13;5138:27;5128:2;;5179:1;5176;5169:12;5128:2;5215;5202:16;5237:2;5233;5230:10;5227:2;;;5243:18;;:::i;:::-;5289:2;5286:1;5282:10;5272:20;;5312:28;5336:2;5332;5328:11;5312:28;:::i;:::-;5374:15;;;5405:12;;;;5437:11;;;5467;;;5463:20;;5460:33;-1:-1:-1;5457:2:1;;;5506:1;5503;5496:12;5457:2;5528:1;5519:10;;5538:163;5552:2;5549:1;5546:9;5538:163;;;5609:17;;5597:30;;5570:1;5563:9;;;;;5647:12;;;;5679;;5538:163;;;5542:3;5720:5;5710:15;;;;;;;;4767:964;;;;;:::o;5736:257::-;5777:3;5815:5;5809:12;5842:6;5837:3;5830:19;5858:63;5914:6;5907:4;5902:3;5898:14;5891:4;5884:5;5880:16;5858:63;:::i;:::-;5975:2;5954:15;-1:-1:-1;;5950:29:1;5941:39;;;;5982:4;5937:50;;5785:208;-1:-1:-1;;5785:208:1:o;6250:470::-;6429:3;6467:6;6461:13;6483:53;6529:6;6524:3;6517:4;6509:6;6505:17;6483:53;:::i;:::-;6599:13;;6558:16;;;;6621:57;6599:13;6558:16;6655:4;6643:17;;6621:57;:::i;:::-;6694:20;;6437:283;-1:-1:-1;;;;6437:283:1:o;7297:488::-;-1:-1:-1;;;;;7566:15:1;;;7548:34;;7618:15;;7613:2;7598:18;;7591:43;7665:2;7650:18;;7643:34;;;7713:3;7708:2;7693:18;;7686:31;;;7491:4;;7734:45;;7759:19;;7751:6;7734:45;:::i;:::-;7726:53;7500:285;-1:-1:-1;;;;;;7500:285:1:o;7982:219::-;8131:2;8120:9;8113:21;8094:4;8151:44;8191:2;8180:9;8176:18;8168:6;8151:44;:::i;16519:356::-;16721:2;16703:21;;;16740:18;;;16733:30;16799:34;16794:2;16779:18;;16772:62;16866:2;16851:18;;16693:182::o;18070:352::-;18272:2;18254:21;;;18311:2;18291:18;;;18284:30;18350;18345:2;18330:18;;18323:58;18413:2;18398:18;;18244:178::o;19235:415::-;19437:2;19419:21;;;19476:2;19456:18;;;19449:30;19515:34;19510:2;19495:18;;19488:62;-1:-1:-1;;;19581:2:1;19566:18;;19559:49;19640:3;19625:19;;19409:241::o;21519:476::-;21721:2;21703:21;;;21760:2;21740:18;;;21733:30;21799:34;21794:2;21779:18;;21772:62;21870:34;21865:2;21850:18;;21843:62;-1:-1:-1;;;21936:3:1;21921:19;;21914:39;21985:3;21970:19;;21693:302::o;25373:275::-;25444:2;25438:9;25509:2;25490:13;;-1:-1:-1;;25486:27:1;25474:40;;25544:18;25529:34;;25565:22;;;25526:62;25523:2;;;25591:18;;:::i;:::-;25627:2;25620:22;25418:230;;-1:-1:-1;25418:230:1:o;25653:253::-;25693:3;-1:-1:-1;;;;;25782:2:1;25779:1;25775:10;25812:2;25809:1;25805:10;25843:3;25839:2;25835:12;25830:3;25827:21;25824:2;;;25851:18;;:::i;25911:128::-;25951:3;25982:1;25978:6;25975:1;25972:13;25969:2;;;25988:18;;:::i;:::-;-1:-1:-1;26024:9:1;;25959:80::o;26044:120::-;26084:1;26110;26100:2;;26115:18;;:::i;:::-;-1:-1:-1;26149:9:1;;26090:74::o;26169:168::-;26209:7;26275:1;26271;26267:6;26263:14;26260:1;26257:21;26252:1;26245:9;26238:17;26234:45;26231:2;;;26282:18;;:::i;:::-;-1:-1:-1;26322:9:1;;26221:116::o;26342:246::-;26382:4;-1:-1:-1;;;;;26495:10:1;;;;26465;;26517:12;;;26514:2;;;26532:18;;:::i;:::-;26569:13;;26391:197;-1:-1:-1;;;26391:197:1:o;26593:125::-;26633:4;26661:1;26658;26655:8;26652:2;;;26666:18;;:::i;:::-;-1:-1:-1;26703:9:1;;26642:76::o;26723:258::-;26795:1;26805:113;26819:6;26816:1;26813:13;26805:113;;;26895:11;;;26889:18;26876:11;;;26869:39;26841:2;26834:10;26805:113;;;26936:6;26933:1;26930:13;26927:2;;;-1:-1:-1;;26971:1:1;26953:16;;26946:27;26776:205::o;26986:136::-;27025:3;27053:5;27043:2;;27062:18;;:::i;:::-;-1:-1:-1;;;27098:18:1;;27033:89::o;27127:380::-;27206:1;27202:12;;;;27249;;;27270:2;;27324:4;27316:6;27312:17;27302:27;;27270:2;27377;27369:6;27366:14;27346:18;27343:38;27340:2;;;27423:10;27418:3;27414:20;27411:1;27404:31;27458:4;27455:1;27448:15;27486:4;27483:1;27476:15;27340:2;;27182:325;;;:::o;27512:197::-;27550:3;27578:6;27619:2;27612:5;27608:14;27646:2;27637:7;27634:15;27631:2;;;27652:18;;:::i;:::-;27701:1;27688:15;;27558:151;-1:-1:-1;;;27558:151:1:o;27714:135::-;27753:3;-1:-1:-1;;27774:17:1;;27771:2;;;27794:18;;:::i;:::-;-1:-1:-1;27841:1:1;27830:13;;27761:88::o;27854:112::-;27886:1;27912;27902:2;;27917:18;;:::i;:::-;-1:-1:-1;27951:9:1;;27892:74::o;27971:127::-;28032:10;28027:3;28023:20;28020:1;28013:31;28063:4;28060:1;28053:15;28087:4;28084:1;28077:15;28103:127;28164:10;28159:3;28155:20;28152:1;28145:31;28195:4;28192:1;28185:15;28219:4;28216:1;28209:15;28235:127;28296:10;28291:3;28287:20;28284:1;28277:31;28327:4;28324:1;28317:15;28351:4;28348:1;28341:15;28367:127;28428:10;28423:3;28419:20;28416:1;28409:31;28459:4;28456:1;28449:15;28483:4;28480:1;28473:15;28499:131;-1:-1:-1;;;;;;28573:32:1;;28563:43;;28553:2;;28620:1;28617;28610:12

Swarm Source

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