ETH Price: $3,309.63 (-3.21%)
Gas: 17 Gwei

Token

Haze Monkey Society (HAZE)
 

Overview

Max Total Supply

1,128 HAZE

Holders

454

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HAZE
0x6944b473bff2fe13359b4f734ede6183de2afd17
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:
HazeMonkey

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 13: HazeMonkey.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";

contract HazeMonkey is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable maxPerAddressDuringMint;
    uint256 public immutable amountForDevs;

    struct SaleConfig {
        uint32 publicSaleStartTime;
        uint64 presalePrice;
        uint64 publicPrice;
    }

    SaleConfig public saleConfig;

    mapping(address => uint256) public presaleList;

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        uint256 amountForDevs_
    ) ERC721A("Haze Monkey Society", "HAZE", maxBatchSize_, collectionSize_) {
        maxPerAddressDuringMint = maxBatchSize_;
        amountForDevs = amountForDevs_;
        require(
            amountForDevs_ <= collectionSize_,
            "larger collection size needed"
        );
    }

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

    function presaleMint(uint256 quantity) external payable callerIsUser {
        uint256 price = uint256(saleConfig.presalePrice * quantity) ;
        require(price != 0, "presaleList sale has not begun yet");
        require(presaleList[msg.sender] > 0, "not eligible for presaleList mint");
        require(quantity <= presaleList[msg.sender], "Max amount already minted");
        require(totalSupply() + quantity <= collectionSize, "reached max supply");

        presaleList[msg.sender] = presaleList[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(price);
    }

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        uint256 publicPrice = uint256(config.publicPrice);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

        require(
            isPublicSaleOn(publicPrice, publicSaleStartTime),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

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

    function setSaleConfig(
        uint64 presaleListPriceWei,
        uint64 publicPriceWei,
        uint32 publicSaleStartTime
    ) external onlyOwner {
        saleConfig = SaleConfig(
            publicSaleStartTime,
            presaleListPriceWei,
            publicPriceWei
        );
    }

    function isPublicSaleOn(uint256 publicPriceWei, uint256 publicSaleStartTime)
        public
        view
        returns (bool)
    {
        return publicPriceWei != 0 && block.timestamp >= publicSaleStartTime;
    }

    function seedPresalelist(
        address[] memory addresses,
        uint256 numSlots
    ) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            presaleList[addresses[i]] = numSlots;
        }
    }

    // For marketing etc.
    function devMint(uint256 quantity) 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(msg.sender, 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;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 12 of 13: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","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":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","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":"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":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","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":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"presalePrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numSlots","type":"uint256"}],"name":"seedPresalelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"presaleListPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setSaleConfig","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b506040516200342e3803806200342e8339810160408190526200003f9162000318565b6040518060400160405280601381526020017f48617a65204d6f6e6b657920536f6369657479000000000000000000000000008152506040518060400160405280600481526020016348415a4560e01b8152508484620000ae620000a86200021e60201b60201c565b62000222565b600081116200011b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000112565b83516200019290600290602087019062000272565b508251620001a890600390602086019062000272565b5060a0919091526080525050600160095560c083905260e081905281811115620002155760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000112565b50505062000384565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002809062000347565b90600052602060002090601f016020900481019282620002a45760008555620002ef565b82601f10620002bf57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ef578251825591602001919060010190620002d2565b50620002fd92915062000301565b5090565b5b80821115620002fd576000815560010162000302565b6000806000606084860312156200032e57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200035c57607f821691505b602082108114156200037e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161302a62000404600039600081816107080152610d20015260008181610471015261140c015260008181610db601528181610e4401528181610e7c0152818161205c0152818161208601526126630152600081816113940152818161179c01528181611e470152611e79015261302a6000f3fe6080604052600436106102045760003560e01c80638bc35c2f11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e6811461064d578063e985e9c51461066d578063f2fde38b146106b6578063f5f7c80c146106d6578063fbe1aa51146106f657600080fd5b8063c87b56dd146105e4578063c9b298f114610604578063d7224ba014610617578063dbcad76f1461062d57600080fd5b806395d89b41116100e757806395d89b4114610567578063a22cb4651461057c578063ac4460021461059c578063b3ab66b0146105b1578063b88d4fde146105c457600080fd5b80638bc35c2f1461045f5780638da5cb5b1461049357806390aa0b0f146104b15780639231ab2a1461051957600080fd5b80632d20fb601161019b5780634f6ccce71161016a5780634f6ccce7146103ca57806355f804b3146103ea5780636352211e1461040a57806370a082311461042a578063715018a61461044a57600080fd5b80632d20fb601461034a5780632f745c591461036a578063375a069a1461038a57806342842e0e146103aa57600080fd5b806312fb92e0116101d757806312fb92e0146102ba57806318160ddd146102f55780631dc4a6261461030a57806323b872dd1461032a57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612bfb565b61072a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610797565b6040516102359190612dc9565b34801561026c57600080fd5b5061028061027b366004612ca7565b610829565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612b17565b6108b9565b005b3480156102c657600080fd5b506102e76102d5366004612991565b600b6020526000908152604090205481565b604051908152602001610235565b34801561030157600080fd5b506001546102e7565b34801561031657600080fd5b506102b8610325366004612ce2565b6109d1565b34801561033657600080fd5b506102b86103453660046129df565b610a92565b34801561035657600080fd5b506102b8610365366004612ca7565b610a9d565b34801561037657600080fd5b506102e7610385366004612b17565b610b4e565b34801561039657600080fd5b506102b86103a5366004612ca7565b610cd6565b3480156103b657600080fd5b506102b86103c53660046129df565b610eb2565b3480156103d657600080fd5b506102e76103e5366004612ca7565b610ecd565b3480156103f657600080fd5b506102b8610405366004612c35565b610f36565b34801561041657600080fd5b50610280610425366004612ca7565b610f8a565b34801561043657600080fd5b506102e7610445366004612991565b610f9c565b34801561045657600080fd5b506102b861102d565b34801561046b57600080fd5b506102e77f000000000000000000000000000000000000000000000000000000000000000081565b34801561049f57600080fd5b506000546001600160a01b0316610280565b3480156104bd57600080fd5b50600a546104ec9063ffffffff81169067ffffffffffffffff6401000000008204811691600160601b90041683565b6040805163ffffffff909416845267ffffffffffffffff9283166020850152911690820152606001610235565b34801561052557600080fd5b50610539610534366004612ca7565b611081565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610235565b34801561057357600080fd5b5061025361109e565b34801561058857600080fd5b506102b8610597366004612adb565b6110ad565b3480156105a857600080fd5b506102b8611172565b6102b86105bf366004612ca7565b6112aa565b3480156105d057600080fd5b506102b86105df366004612a1b565b6114af565b3480156105f057600080fd5b506102536105ff366004612ca7565b61152e565b6102b8610612366004612ca7565b611609565b34801561062357600080fd5b506102e760085481565b34801561063957600080fd5b50610229610648366004612cc0565b611857565b34801561065957600080fd5b506102e7610668366004612991565b61186c565b34801561067957600080fd5b506102296106883660046129ac565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c257600080fd5b506102b86106d1366004612991565b611877565b3480156106e257600080fd5b506102b86106f1366004612b41565b611930565b34801561070257600080fd5b506102e77f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061075b57506001600160e01b03198216635b5e139f60e01b145b8061077657506001600160e01b0319821663780e9d6360e01b145b8061079157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a690612efc565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612efc565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b6000610836826001541190565b61089d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c482610f8a565b9050806001600160a01b0316836001600160a01b031614156109335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610894565b336001600160a01b038216148061094f575061094f8133610688565b6109c15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610894565b6109cc8383836119da565b505050565b6000546001600160a01b03163314610a195760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6040805160608101825263ffffffff9290921680835267ffffffffffffffff94851660208401819052939094169101819052600a80546bffffffffffffffffffffffff19169093176401000000009092029190911773ffffffffffffffff0000000000000000000000001916600160601b909102179055565b6109cc838383611a43565b6000546001600160a01b03163314610ae55760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b60026009541415610b385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610894565b6002600955610b4681611dd6565b506001600955565b6000610b5983610f9c565b8210610bb25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610894565b6000610bbd60015490565b905060008060005b83811015610c67576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1857805192505b876001600160a01b0316836001600160a01b03161415610c545786841415610c465750935061079192505050565b83610c5081612f37565b9450505b5080610c5f81612f37565b915050610bc5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610894565b6000546001600160a01b03163314610d1e5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b7f000000000000000000000000000000000000000000000000000000000000000081610d4960015490565b610d539190612e2f565b1115610db15760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610894565b610ddb7f000000000000000000000000000000000000000000000000000000000000000082612f52565b15610e3d5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610894565b6000610e697f000000000000000000000000000000000000000000000000000000000000000083612e47565b905060005b818110156109cc57610ea0337f0000000000000000000000000000000000000000000000000000000000000000611fc0565b80610eaa81612f37565b915050610e6e565b6109cc838383604051806020016040528060008152506114af565b6000610ed860015490565b8210610f325760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610894565b5090565b6000546001600160a01b03163314610f7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6109cc600c83836128cd565b6000610f9582611fda565b5192915050565b60006001600160a01b0382166110085760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610894565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146110755760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b61107f6000612192565b565b604080518082019091526000808252602082015261079182611fda565b6060600380546107a690612efc565b6001600160a01b0382163314156111065760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610894565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111ba5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6002600954141561120d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610894565b6002600955604051600090339047908381818185875af1925050503d8060008114611254576040519150601f19603f3d011682016040523d82523d6000602084013e611259565b606091505b5050905080610b465760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610894565b3233146112f95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610894565b60408051606081018252600a5463ffffffff811680835267ffffffffffffffff640100000000830481166020850152600160601b9092049091169282018390529091906113468282611857565b6113925760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610894565b7f0000000000000000000000000000000000000000000000000000000000000000846113bd60015490565b6113c79190612e2f565b111561140a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610894565b7f0000000000000000000000000000000000000000000000000000000000000000846114353361186c565b61143f9190612e2f565b111561148d5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610894565b6114973385611fc0565b6114a96114a48584612e5b565b6121ef565b50505050565b6114ba848484611a43565b6114c68484848461227d565b6114a95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b606061153b826001541190565b6115ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610894565b60006115b76123d7565b905060008151116115d75760405180602001604052806000815250611602565b806115e1846123e6565b6040516020016115f2929190612d5e565b6040516020818303038152906040525b9392505050565b3233146116585760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610894565b600a5460009061167b908390640100000000900467ffffffffffffffff16612e5b565b9050806116d55760405162461bcd60e51b815260206004820152602260248201527f70726573616c654c6973742073616c6520686173206e6f7420626567756e2079604482015261195d60f21b6064820152608401610894565b336000908152600b602052604090205461173b5760405162461bcd60e51b815260206004820152602160248201527f6e6f7420656c696769626c6520666f722070726573616c654c697374206d696e6044820152601d60fa1b6064820152608401610894565b336000908152600b602052604090205482111561179a5760405162461bcd60e51b815260206004820152601960248201527f4d617820616d6f756e7420616c7265616479206d696e746564000000000000006044820152606401610894565b7f0000000000000000000000000000000000000000000000000000000000000000826117c560015490565b6117cf9190612e2f565b11156118125760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610894565b336000908152600b602052604090205461182d908390612ea2565b336000818152600b602052604090209190915561184a9083611fc0565b611853816121ef565b5050565b60008215801590611602575050421015919050565b6000610791826124fc565b6000546001600160a01b031633146118bf5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6001600160a01b0381166119245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610894565b61192d81612192565b50565b6000546001600160a01b031633146119785760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b60005b82518110156109cc5781600b600085848151811061199b5761199b612f92565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806119d290612f37565b91505061197b565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a4e82611fda565b80519091506000906001600160a01b0316336001600160a01b03161480611a85575033611a7a84610829565b6001600160a01b0316145b80611a9757508151611a979033610688565b905080611b0c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610894565b846001600160a01b031682600001516001600160a01b031614611b805760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610894565b6001600160a01b038416611be45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610894565b611bf460008484600001516119da565b6001600160a01b0385166000908152600560205260408120805460019290611c269084906001600160801b0316612e7a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611c7291859116612e0d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611cfa846001612e2f565b6000818152600460205260409020549091506001600160a01b0316611d8c57611d24816001541190565b15611d8c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611e265760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610894565b60006001611e348484612e2f565b611e3e9190612ea2565b9050611e6b60017f0000000000000000000000000000000000000000000000000000000000000000612ea2565b811115611ea057611e9d60017f0000000000000000000000000000000000000000000000000000000000000000612ea2565b90505b611eab816001541190565b611f065760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610894565b815b818111611fac576000818152600460205260409020546001600160a01b0316611f9a576000611f3682611fda565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611fa481612f37565b915050611f08565b50611fb8816001612e2f565b600855505050565b6118538282604051806020016040528060008152506125a6565b6040805180820190915260008082526020820152611ff9826001541190565b6120585760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610894565b60007f000000000000000000000000000000000000000000000000000000000000000083106120b9576120ab7f000000000000000000000000000000000000000000000000000000000000000084612ea2565b6120b6906001612e2f565b90505b825b818110612123576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561211057949350505050565b508061211b81612ee5565b9150506120bb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610894565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8034101561223f5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610894565b8034111561192d57336108fc6122558334612ea2565b6040518115909202916000818181858888f19350505050158015611853573d6000803e3d6000fd5b60006001600160a01b0384163b156123cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122c1903390899088908890600401612d8d565b602060405180830381600087803b1580156122db57600080fd5b505af192505050801561230b575060408051601f3d908101601f1916820190925261230891810190612c18565b60015b6123b1573d808015612339576040519150601f19603f3d011682016040523d82523d6000602084013e61233e565b606091505b5080516123a95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123cf565b5060015b949350505050565b6060600c80546107a690612efc565b60608161240a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612434578061241e81612f37565b915061242d9050600a83612e47565b915061240e565b60008167ffffffffffffffff81111561244f5761244f612fa8565b6040519080825280601f01601f191660200182016040528015612479576020820181803683370190505b5090505b84156123cf5761248e600183612ea2565b915061249b600a86612f52565b6124a6906030612e2f565b60f81b8183815181106124bb576124bb612f92565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124f5600a86612e47565b945061247d565b60006001600160a01b03821661257a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610894565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166126095760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610894565b612614816001541190565b156126615760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610894565b7f00000000000000000000000000000000000000000000000000000000000000008311156126dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610894565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612738908790612e0d565b6001600160801b031681526020018583602001516127569190612e0d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128c25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461283a600088848861227d565b6128a25760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b816128ac81612f37565b92505080806128ba90612f37565b9150506127ed565b506001819055611dce565b8280546128d990612efc565b90600052602060002090601f0160209004810192826128fb5760008555612941565b82601f106129145782800160ff19823516178555612941565b82800160010185558215612941579182015b82811115612941578235825591602001919060010190612926565b50610f329291505b80821115610f325760008155600101612949565b80356001600160a01b038116811461297457600080fd5b919050565b803567ffffffffffffffff8116811461297457600080fd5b6000602082840312156129a357600080fd5b6116028261295d565b600080604083850312156129bf57600080fd5b6129c88361295d565b91506129d66020840161295d565b90509250929050565b6000806000606084860312156129f457600080fd5b6129fd8461295d565b9250612a0b6020850161295d565b9150604084013590509250925092565b60008060008060808587031215612a3157600080fd5b612a3a8561295d565b93506020612a4981870161295d565b935060408601359250606086013567ffffffffffffffff80821115612a6d57600080fd5b818801915088601f830112612a8157600080fd5b813581811115612a9357612a93612fa8565b612aa5601f8201601f19168501612ddc565b91508082528984828501011115612abb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612aee57600080fd5b612af78361295d565b915060208301358015158114612b0c57600080fd5b809150509250929050565b60008060408385031215612b2a57600080fd5b612b338361295d565b946020939093013593505050565b60008060408385031215612b5457600080fd5b823567ffffffffffffffff80821115612b6c57600080fd5b818501915085601f830112612b8057600080fd5b8135602082821115612b9457612b94612fa8565b8160051b9250612ba5818401612ddc565b8281528181019085830185870184018b1015612bc057600080fd5b600096505b84871015612bea57612bd68161295d565b835260019690960195918301918301612bc5565b509997909101359750505050505050565b600060208284031215612c0d57600080fd5b813561160281612fbe565b600060208284031215612c2a57600080fd5b815161160281612fbe565b60008060208385031215612c4857600080fd5b823567ffffffffffffffff80821115612c6057600080fd5b818501915085601f830112612c7457600080fd5b813581811115612c8357600080fd5b866020828501011115612c9557600080fd5b60209290920196919550909350505050565b600060208284031215612cb957600080fd5b5035919050565b60008060408385031215612cd357600080fd5b50508035926020909101359150565b600080600060608486031215612cf757600080fd5b612d0084612979565b9250612d0e60208501612979565b9150604084013563ffffffff81168114612d2757600080fd5b809150509250925092565b60008151808452612d4a816020860160208601612eb9565b601f01601f19169290920160200192915050565b60008351612d70818460208801612eb9565b835190830190612d84818360208801612eb9565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612dbf6080830184612d32565b9695505050505050565b6020815260006116026020830184612d32565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0557612e05612fa8565b604052919050565b60006001600160801b03808316818516808303821115612d8457612d84612f66565b60008219821115612e4257612e42612f66565b500190565b600082612e5657612e56612f7c565b500490565b6000816000190483118215151615612e7557612e75612f66565b500290565b60006001600160801b0383811690831681811015612e9a57612e9a612f66565b039392505050565b600082821015612eb457612eb4612f66565b500390565b60005b83811015612ed4578181015183820152602001612ebc565b838111156114a95750506000910152565b600081612ef457612ef4612f66565b506000190190565b600181811c90821680612f1057607f821691505b60208210811415612f3157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f4b57612f4b612f66565b5060010190565b600082612f6157612f61612f7c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e80978fafac938c07fc899a539197061764c519d6454bb082e3f92d75124cb3564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000010680000000000000000000000000000000000000000000000000000000000000046

Deployed Bytecode

0x6080604052600436106102045760003560e01c80638bc35c2f11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e6811461064d578063e985e9c51461066d578063f2fde38b146106b6578063f5f7c80c146106d6578063fbe1aa51146106f657600080fd5b8063c87b56dd146105e4578063c9b298f114610604578063d7224ba014610617578063dbcad76f1461062d57600080fd5b806395d89b41116100e757806395d89b4114610567578063a22cb4651461057c578063ac4460021461059c578063b3ab66b0146105b1578063b88d4fde146105c457600080fd5b80638bc35c2f1461045f5780638da5cb5b1461049357806390aa0b0f146104b15780639231ab2a1461051957600080fd5b80632d20fb601161019b5780634f6ccce71161016a5780634f6ccce7146103ca57806355f804b3146103ea5780636352211e1461040a57806370a082311461042a578063715018a61461044a57600080fd5b80632d20fb601461034a5780632f745c591461036a578063375a069a1461038a57806342842e0e146103aa57600080fd5b806312fb92e0116101d757806312fb92e0146102ba57806318160ddd146102f55780631dc4a6261461030a57806323b872dd1461032a57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004612bfb565b61072a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610797565b6040516102359190612dc9565b34801561026c57600080fd5b5061028061027b366004612ca7565b610829565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612b17565b6108b9565b005b3480156102c657600080fd5b506102e76102d5366004612991565b600b6020526000908152604090205481565b604051908152602001610235565b34801561030157600080fd5b506001546102e7565b34801561031657600080fd5b506102b8610325366004612ce2565b6109d1565b34801561033657600080fd5b506102b86103453660046129df565b610a92565b34801561035657600080fd5b506102b8610365366004612ca7565b610a9d565b34801561037657600080fd5b506102e7610385366004612b17565b610b4e565b34801561039657600080fd5b506102b86103a5366004612ca7565b610cd6565b3480156103b657600080fd5b506102b86103c53660046129df565b610eb2565b3480156103d657600080fd5b506102e76103e5366004612ca7565b610ecd565b3480156103f657600080fd5b506102b8610405366004612c35565b610f36565b34801561041657600080fd5b50610280610425366004612ca7565b610f8a565b34801561043657600080fd5b506102e7610445366004612991565b610f9c565b34801561045657600080fd5b506102b861102d565b34801561046b57600080fd5b506102e77f000000000000000000000000000000000000000000000000000000000000000a81565b34801561049f57600080fd5b506000546001600160a01b0316610280565b3480156104bd57600080fd5b50600a546104ec9063ffffffff81169067ffffffffffffffff6401000000008204811691600160601b90041683565b6040805163ffffffff909416845267ffffffffffffffff9283166020850152911690820152606001610235565b34801561052557600080fd5b50610539610534366004612ca7565b611081565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610235565b34801561057357600080fd5b5061025361109e565b34801561058857600080fd5b506102b8610597366004612adb565b6110ad565b3480156105a857600080fd5b506102b8611172565b6102b86105bf366004612ca7565b6112aa565b3480156105d057600080fd5b506102b86105df366004612a1b565b6114af565b3480156105f057600080fd5b506102536105ff366004612ca7565b61152e565b6102b8610612366004612ca7565b611609565b34801561062357600080fd5b506102e760085481565b34801561063957600080fd5b50610229610648366004612cc0565b611857565b34801561065957600080fd5b506102e7610668366004612991565b61186c565b34801561067957600080fd5b506102296106883660046129ac565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c257600080fd5b506102b86106d1366004612991565b611877565b3480156106e257600080fd5b506102b86106f1366004612b41565b611930565b34801561070257600080fd5b506102e77f000000000000000000000000000000000000000000000000000000000000004681565b60006001600160e01b031982166380ac58cd60e01b148061075b57506001600160e01b03198216635b5e139f60e01b145b8061077657506001600160e01b0319821663780e9d6360e01b145b8061079157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a690612efc565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612efc565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b6000610836826001541190565b61089d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c482610f8a565b9050806001600160a01b0316836001600160a01b031614156109335760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610894565b336001600160a01b038216148061094f575061094f8133610688565b6109c15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610894565b6109cc8383836119da565b505050565b6000546001600160a01b03163314610a195760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6040805160608101825263ffffffff9290921680835267ffffffffffffffff94851660208401819052939094169101819052600a80546bffffffffffffffffffffffff19169093176401000000009092029190911773ffffffffffffffff0000000000000000000000001916600160601b909102179055565b6109cc838383611a43565b6000546001600160a01b03163314610ae55760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b60026009541415610b385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610894565b6002600955610b4681611dd6565b506001600955565b6000610b5983610f9c565b8210610bb25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610894565b6000610bbd60015490565b905060008060005b83811015610c67576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c1857805192505b876001600160a01b0316836001600160a01b03161415610c545786841415610c465750935061079192505050565b83610c5081612f37565b9450505b5080610c5f81612f37565b915050610bc5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610894565b6000546001600160a01b03163314610d1e5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b7f000000000000000000000000000000000000000000000000000000000000004681610d4960015490565b610d539190612e2f565b1115610db15760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610894565b610ddb7f000000000000000000000000000000000000000000000000000000000000000a82612f52565b15610e3d5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610894565b6000610e697f000000000000000000000000000000000000000000000000000000000000000a83612e47565b905060005b818110156109cc57610ea0337f000000000000000000000000000000000000000000000000000000000000000a611fc0565b80610eaa81612f37565b915050610e6e565b6109cc838383604051806020016040528060008152506114af565b6000610ed860015490565b8210610f325760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610894565b5090565b6000546001600160a01b03163314610f7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6109cc600c83836128cd565b6000610f9582611fda565b5192915050565b60006001600160a01b0382166110085760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610894565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146110755760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b61107f6000612192565b565b604080518082019091526000808252602082015261079182611fda565b6060600380546107a690612efc565b6001600160a01b0382163314156111065760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610894565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111ba5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6002600954141561120d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610894565b6002600955604051600090339047908381818185875af1925050503d8060008114611254576040519150601f19603f3d011682016040523d82523d6000602084013e611259565b606091505b5050905080610b465760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610894565b3233146112f95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610894565b60408051606081018252600a5463ffffffff811680835267ffffffffffffffff640100000000830481166020850152600160601b9092049091169282018390529091906113468282611857565b6113925760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610894565b7f0000000000000000000000000000000000000000000000000000000000001068846113bd60015490565b6113c79190612e2f565b111561140a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610894565b7f000000000000000000000000000000000000000000000000000000000000000a846114353361186c565b61143f9190612e2f565b111561148d5760405162461bcd60e51b815260206004820152601660248201527f63616e206e6f74206d696e742074686973206d616e79000000000000000000006044820152606401610894565b6114973385611fc0565b6114a96114a48584612e5b565b6121ef565b50505050565b6114ba848484611a43565b6114c68484848461227d565b6114a95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b606061153b826001541190565b6115ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610894565b60006115b76123d7565b905060008151116115d75760405180602001604052806000815250611602565b806115e1846123e6565b6040516020016115f2929190612d5e565b6040516020818303038152906040525b9392505050565b3233146116585760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610894565b600a5460009061167b908390640100000000900467ffffffffffffffff16612e5b565b9050806116d55760405162461bcd60e51b815260206004820152602260248201527f70726573616c654c6973742073616c6520686173206e6f7420626567756e2079604482015261195d60f21b6064820152608401610894565b336000908152600b602052604090205461173b5760405162461bcd60e51b815260206004820152602160248201527f6e6f7420656c696769626c6520666f722070726573616c654c697374206d696e6044820152601d60fa1b6064820152608401610894565b336000908152600b602052604090205482111561179a5760405162461bcd60e51b815260206004820152601960248201527f4d617820616d6f756e7420616c7265616479206d696e746564000000000000006044820152606401610894565b7f0000000000000000000000000000000000000000000000000000000000001068826117c560015490565b6117cf9190612e2f565b11156118125760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610894565b336000908152600b602052604090205461182d908390612ea2565b336000818152600b602052604090209190915561184a9083611fc0565b611853816121ef565b5050565b60008215801590611602575050421015919050565b6000610791826124fc565b6000546001600160a01b031633146118bf5760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b6001600160a01b0381166119245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610894565b61192d81612192565b50565b6000546001600160a01b031633146119785760405162461bcd60e51b81526020600482018190526024820152600080516020612fd58339815191526044820152606401610894565b60005b82518110156109cc5781600b600085848151811061199b5761199b612f92565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806119d290612f37565b91505061197b565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a4e82611fda565b80519091506000906001600160a01b0316336001600160a01b03161480611a85575033611a7a84610829565b6001600160a01b0316145b80611a9757508151611a979033610688565b905080611b0c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610894565b846001600160a01b031682600001516001600160a01b031614611b805760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610894565b6001600160a01b038416611be45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610894565b611bf460008484600001516119da565b6001600160a01b0385166000908152600560205260408120805460019290611c269084906001600160801b0316612e7a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611c7291859116612e0d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611cfa846001612e2f565b6000818152600460205260409020549091506001600160a01b0316611d8c57611d24816001541190565b15611d8c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611e265760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610894565b60006001611e348484612e2f565b611e3e9190612ea2565b9050611e6b60017f0000000000000000000000000000000000000000000000000000000000001068612ea2565b811115611ea057611e9d60017f0000000000000000000000000000000000000000000000000000000000001068612ea2565b90505b611eab816001541190565b611f065760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610894565b815b818111611fac576000818152600460205260409020546001600160a01b0316611f9a576000611f3682611fda565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611fa481612f37565b915050611f08565b50611fb8816001612e2f565b600855505050565b6118538282604051806020016040528060008152506125a6565b6040805180820190915260008082526020820152611ff9826001541190565b6120585760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610894565b60007f000000000000000000000000000000000000000000000000000000000000000a83106120b9576120ab7f000000000000000000000000000000000000000000000000000000000000000a84612ea2565b6120b6906001612e2f565b90505b825b818110612123576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561211057949350505050565b508061211b81612ee5565b9150506120bb565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610894565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8034101561223f5760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610894565b8034111561192d57336108fc6122558334612ea2565b6040518115909202916000818181858888f19350505050158015611853573d6000803e3d6000fd5b60006001600160a01b0384163b156123cb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122c1903390899088908890600401612d8d565b602060405180830381600087803b1580156122db57600080fd5b505af192505050801561230b575060408051601f3d908101601f1916820190925261230891810190612c18565b60015b6123b1573d808015612339576040519150601f19603f3d011682016040523d82523d6000602084013e61233e565b606091505b5080516123a95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123cf565b5060015b949350505050565b6060600c80546107a690612efc565b60608161240a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612434578061241e81612f37565b915061242d9050600a83612e47565b915061240e565b60008167ffffffffffffffff81111561244f5761244f612fa8565b6040519080825280601f01601f191660200182016040528015612479576020820181803683370190505b5090505b84156123cf5761248e600183612ea2565b915061249b600a86612f52565b6124a6906030612e2f565b60f81b8183815181106124bb576124bb612f92565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506124f5600a86612e47565b945061247d565b60006001600160a01b03821661257a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610894565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166126095760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610894565b612614816001541190565b156126615760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610894565b7f000000000000000000000000000000000000000000000000000000000000000a8311156126dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610894565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612738908790612e0d565b6001600160801b031681526020018583602001516127569190612e0d565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128c25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461283a600088848861227d565b6128a25760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610894565b816128ac81612f37565b92505080806128ba90612f37565b9150506127ed565b506001819055611dce565b8280546128d990612efc565b90600052602060002090601f0160209004810192826128fb5760008555612941565b82601f106129145782800160ff19823516178555612941565b82800160010185558215612941579182015b82811115612941578235825591602001919060010190612926565b50610f329291505b80821115610f325760008155600101612949565b80356001600160a01b038116811461297457600080fd5b919050565b803567ffffffffffffffff8116811461297457600080fd5b6000602082840312156129a357600080fd5b6116028261295d565b600080604083850312156129bf57600080fd5b6129c88361295d565b91506129d66020840161295d565b90509250929050565b6000806000606084860312156129f457600080fd5b6129fd8461295d565b9250612a0b6020850161295d565b9150604084013590509250925092565b60008060008060808587031215612a3157600080fd5b612a3a8561295d565b93506020612a4981870161295d565b935060408601359250606086013567ffffffffffffffff80821115612a6d57600080fd5b818801915088601f830112612a8157600080fd5b813581811115612a9357612a93612fa8565b612aa5601f8201601f19168501612ddc565b91508082528984828501011115612abb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612aee57600080fd5b612af78361295d565b915060208301358015158114612b0c57600080fd5b809150509250929050565b60008060408385031215612b2a57600080fd5b612b338361295d565b946020939093013593505050565b60008060408385031215612b5457600080fd5b823567ffffffffffffffff80821115612b6c57600080fd5b818501915085601f830112612b8057600080fd5b8135602082821115612b9457612b94612fa8565b8160051b9250612ba5818401612ddc565b8281528181019085830185870184018b1015612bc057600080fd5b600096505b84871015612bea57612bd68161295d565b835260019690960195918301918301612bc5565b509997909101359750505050505050565b600060208284031215612c0d57600080fd5b813561160281612fbe565b600060208284031215612c2a57600080fd5b815161160281612fbe565b60008060208385031215612c4857600080fd5b823567ffffffffffffffff80821115612c6057600080fd5b818501915085601f830112612c7457600080fd5b813581811115612c8357600080fd5b866020828501011115612c9557600080fd5b60209290920196919550909350505050565b600060208284031215612cb957600080fd5b5035919050565b60008060408385031215612cd357600080fd5b50508035926020909101359150565b600080600060608486031215612cf757600080fd5b612d0084612979565b9250612d0e60208501612979565b9150604084013563ffffffff81168114612d2757600080fd5b809150509250925092565b60008151808452612d4a816020860160208601612eb9565b601f01601f19169290920160200192915050565b60008351612d70818460208801612eb9565b835190830190612d84818360208801612eb9565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612dbf6080830184612d32565b9695505050505050565b6020815260006116026020830184612d32565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0557612e05612fa8565b604052919050565b60006001600160801b03808316818516808303821115612d8457612d84612f66565b60008219821115612e4257612e42612f66565b500190565b600082612e5657612e56612f7c565b500490565b6000816000190483118215151615612e7557612e75612f66565b500290565b60006001600160801b0383811690831681811015612e9a57612e9a612f66565b039392505050565b600082821015612eb457612eb4612f66565b500390565b60005b83811015612ed4578181015183820152602001612ebc565b838111156114a95750506000910152565b600081612ef457612ef4612f66565b506000190190565b600181811c90821680612f1057607f821691505b60208210811415612f3157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f4b57612f4b612f66565b5060010190565b600082612f6157612f61612f7c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461192d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e80978fafac938c07fc899a539197061764c519d6454bb082e3f92d75124cb3564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000010680000000000000000000000000000000000000000000000000000000000000046

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 4200
Arg [2] : amountForDevs_ (uint256): 70

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001068
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000046


Deployed Bytecode Sourcemap

163:4687:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;7637:14:13;;7630:22;7612:41;;7600:2;7585:18;3826:358:3;;;;;;;;5490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6889:55:13;;;6871:74;;6859:2;6844:18;6955:200:3;6725:226:13;6533:369:3;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;484:46:4;;;;;;;;;;-1:-1:-1;484:46:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;22109:25:13;;;22097:2;22082:18;484:46:4;21963:177:13;2432:92:3;;;;;;;;;;-1:-1:-1;2507:12:3;;2432:92;;2647:295:4;;;;;;;;;;-1:-1:-1;2647:295:4;;;;;:::i;:::-;;:::i;7773:136:3:-;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;4414:150:4:-;;;;;;;;;;-1:-1:-1;4414:150:4;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;3439:489:4:-;;;;;;;;;;-1:-1:-1;3439:489:4;;;;;:::i;:::-;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;2588:174::-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;4110:104:4:-;;;;;;;;;;-1:-1:-1;4110:104:4;;;;;:::i;:::-;;:::i;5320:116:3:-;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;4235:208::-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;226:48:4:-;;;;;;;;;;;;;;;1029:85:10;;;;;;;;;;-1:-1:-1;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;1029:85;;449:28:4;;;;;;;;;;-1:-1:-1;449:28:4;;;;;;;;;;;;;;;-1:-1:-1;;;449:28:4;;;;;;;;;22371:10:13;22359:23;;;22341:42;;22402:18;22456:15;;;22451:2;22436:18;;22429:43;22508:15;;22488:18;;;22481:43;22329:2;22314:18;449:28:4;22145:385:13;4687:161:4;;;;;;;;;;-1:-1:-1;4687:161:4;;;;;:::i;:::-;;:::i;:::-;;;;21805:13:13;;-1:-1:-1;;;;;21801:62:13;21783:81;;21924:4;21912:17;;;21906:24;21932:18;21902:49;21880:20;;;21873:79;;;;21756:18;4687:161:4;21575:383:13;5638:96:3;;;;;;;;;;;;;:::i;7214:269::-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;4220:188:4:-;;;;;;;;;;;;;:::i;1676:740::-;;;;;;:::i;:::-;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;5792:377::-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;1067:603:4:-;;;;;;:::i;:::-;;:::i;12446:43:3:-;;;;;;;;;;;;;;;;2948:217:4;;;;;;;;;;-1:-1:-1;2948:217:4;;;;;:::i;:::-;;:::i;4570:111::-;;;;;;;;;;-1:-1:-1;4570:111:4;;;;;:::i;:::-;;:::i;7541:178:3:-;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178;1911:198:10;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;3171:236:4:-;;;;;;;;;;-1:-1:-1;3171:236:4;;;;;:::i;:::-;;:::i;280:38::-;;;;;;;;;;;;;;;3826:358:3;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;-1:-1:-1;;;;;;;;;;937:40:2;;;4143:36:3;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;7046:16;7038:74;;;;-1:-1:-1;;;7038:74:3;;20557:2:13;7038:74:3;;;20539:21:13;20596:2;20576:18;;;20569:30;20635:34;20615:18;;;20608:62;-1:-1:-1;;;20686:18:13;;;20679:43;20739:19;;7038:74:3;;;;;;;;;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;15921:2:13;6647:58:3;;;15903:21:13;15960:2;15940:18;;;15933:30;15999:34;15979:18;;;15972:62;-1:-1:-1;;;16050:18:13;;;16043:32;16092:19;;6647:58:3;15719:398:13;6647:58:3;719:10:1;-1:-1:-1;;;;;6727:21:3;;;;:62;;-1:-1:-1;6752:37:3;6769:5;719:10:1;7541:178:3;:::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;11311:2:13;6712:150:3;;;11293:21:13;11350:2;11330:18;;;11323:30;11389:34;11369:18;;;11362:62;11460:27;11440:18;;;11433:55;11505:19;;6712:150:3;11109:421:13;6712:150:3;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6595:307;6533:369;;:::o;2647:295:4:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;2821:114:4::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;2808:10:::1;:127:::0;;-1:-1:-1;;2808:127:4;;;;;;;::::1;::::0;;;::::1;-1:-1:-1::0;;2808:127:4::1;-1:-1:-1::0;;;2808:127:4;;::::1;;::::0;;2647:295::o;7773:136:3:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;4414:150:4:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;1744:1:11::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:11;;19781:2:13;2317:63:11::1;::::0;::::1;19763:21:13::0;19820:2;19800:18;;;19793:30;19859:33;19839:18;;;19832:61;19910:18;;2317:63:11::1;19579:355:13::0;2317:63:11::1;1744:1;2455:7;:18:::0;4529:28:4::2;4548:8:::0;4529:18:::2;:28::i;:::-;-1:-1:-1::0;1701:1:11::1;2628:7;:22:::0;4414:150:4:o;3046:721:3:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;8090:2:13;3168:71:3;;;8072:21:13;8129:2;8109:18;;;8102:30;8168:34;8148:18;;;8141:62;-1:-1:-1;;;8219:18:13;;;8212:32;8261:19;;3168:71:3;7888:398:13;3168:71:3;3245:22;3270:13;2507:12;;;2432:92;3270:13;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:3;;-1:-1:-1;;;3706:56:3;;18959:2:13;3706:56:3;;;18941:21:13;18998:2;18978:18;;;18971:30;19037:34;19017:18;;;19010:62;19108:16;19088:18;;;19081:44;19142:19;;3706:56:3;18757:410:13;3439:489:4;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;3552:13:4::1;3540:8;3524:13;2507:12:3::0;;;2432:92;3524:13:4::1;:24;;;;:::i;:::-;:41;;3503:127;;;::::0;-1:-1:-1;;;3503:127:4;;18551:2:13;3503:127:4::1;::::0;::::1;18533:21:13::0;18590:2;18570:18;;;18563:30;18629:34;18609:18;;;18602:62;-1:-1:-1;;;18680:18:13;;;18673:37;18727:19;;3503:127:4::1;18349:403:13::0;3503:127:4::1;3661:23;3672:12;3661:8:::0;:23:::1;:::i;:::-;:28:::0;3640:119:::1;;;::::0;-1:-1:-1;;;3640:119:4;;9311:2:13;3640:119:4::1;::::0;::::1;9293:21:13::0;9350:2;9330:18;;;9323:30;9389:34;9369:18;;;9362:62;-1:-1:-1;;;9440:18:13;;;9433:42;9492:19;;3640:119:4::1;9109:408:13::0;3640:119:4::1;3769:17;3789:23;3800:12;3789:8:::0;:23:::1;:::i;:::-;3769:43;;3827:9;3822:100;3846:9;3842:1;:13;3822:100;;;3876:35;3886:10;3898:12;3876:9;:35::i;:::-;3857:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3822:100;;7967:151:3::0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;2588:174::-;2655:7;2686:13;2507:12;;;2432:92;2686:13;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;9724:2:13;2670:69:3;;;9706:21:13;9763:2;9743:18;;;9736:30;9802:34;9782:18;;;9775:62;-1:-1:-1;;;9853:18:13;;;9846:33;9896:19;;2670:69:3;9522:399:13;2670:69:3;-1:-1:-1;2752:5:3;2588:174::o;4110:104:4:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;4184:23:4::1;:13;4200:7:::0;;4184:23:::1;:::i;5320:116:3:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;4235:208::-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;12492:2:13;4314:75:3;;;12474:21:13;12531:2;12511:18;;;12504:30;12570:34;12550:18;;;12543:62;-1:-1:-1;;;12621:18:13;;;12614:41;12672:19;;4314:75:3;12290:407:13;4314:75:3;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1661:101:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4687:161:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;4821:20:4;4833:7;4821:11;:20::i;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;7214:269::-;-1:-1:-1;;;;;7304:24:3;;719:10:1;7304:24:3;;7296:63;;;;-1:-1:-1;;;7296:63:3;;14789:2:13;7296:63:3;;;14771:21:13;14828:2;14808:18;;;14801:30;14867:28;14847:18;;;14840:56;14913:18;;7296:63:3;14587:350:13;7296:63:3;719:10:1;7366:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7366:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;7430:48;;7612:41:13;;;7366:42:3;;719:10:1;7430:48:3;;7585:18:13;7430:48:3;;;;;;;7214:269;;:::o;4220:188:4:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;1744:1:11::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:11;;19781:2:13;2317:63:11::1;::::0;::::1;19763:21:13::0;19820:2;19800:18;;;19793:30;19859:33;19839:18;;;19832:61;19910:18;;2317:63:11::1;19579:355:13::0;2317:63:11::1;1744:1;2455:7;:18:::0;4306:49:4::2;::::0;4288:12:::2;::::0;4306:10:::2;::::0;4329:21:::2;::::0;4288:12;4306:49;4288:12;4306:49;4329:21;4306:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:68;;;4373:7;4365:36;;;::::0;-1:-1:-1;;;4365:36:4;;16324:2:13;4365:36:4::2;::::0;::::2;16306:21:13::0;16363:2;16343:18;;;16336:30;16402:18;16382;;;16375:46;16438:18;;4365:36:4::2;16122:340:13::0;1676:740:4;985:9;998:10;985:23;977:66;;;;-1:-1:-1;;;977:66:4;;10952:2:13;977:66:4;;;10934:21:13;10991:2;10971:18;;;10964:30;11030:32;11010:18;;;11003:60;11080:18;;977:66:4;10750:354:13;977:66:4;1758:37:::1;::::0;;::::1;::::0;::::1;::::0;;1785:10:::1;1758:37:::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;1758:37:4;;::::1;::::0;;::::1;::::0;;;;;;;;;1961:48:::1;1758:37:::0;;1961:14:::1;:48::i;:::-;1940:124;;;::::0;-1:-1:-1;;;1940:124:4;;15563:2:13;1940:124:4::1;::::0;::::1;15545:21:13::0;15602:2;15582:18;;;15575:30;15641:31;15621:18;;;15614:59;15690:18;;1940:124:4::1;15361:353:13::0;1940:124:4::1;2123:14;2111:8;2095:13;2507:12:3::0;;;2432:92;2095:13:4::1;:24;;;;:::i;:::-;:42;;2074:107;;;::::0;-1:-1:-1;;;2074:107:4;;13258:2:13;2074:107:4::1;::::0;::::1;13240:21:13::0;13297:2;13277:18;;;13270:30;-1:-1:-1;;;13316:18:13;;;13309:48;13374:18;;2074:107:4::1;13056:342:13::0;2074:107:4::1;2251:23;2239:8;2212:24;2225:10;2212:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;2191:131;;;::::0;-1:-1:-1;;;2191:131:4;;18200:2:13;2191:131:4::1;::::0;::::1;18182:21:13::0;18239:2;18219:18;;;18212:30;18278:24;18258:18;;;18251:52;18320:18;;2191:131:4::1;17998:346:13::0;2191:131:4::1;2332:31;2342:10;2354:8;2332:9;:31::i;:::-;2373:36;2386:22;2400:8:::0;2386:11;:22:::1;:::i;:::-;2373:12;:36::i;:::-;1748:668;;;1676:740:::0;:::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;16669:2:13;8341:130:3;;;16651:21:13;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:13;;;16791:49;16857:19;;8341:130:3;16467:415:13;5792:377:3;5885:13;5923:16;5931:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:3;;14373:2:13;5908:94:3;;;14355:21:13;14412:2;14392:18;;;14385:30;14451:34;14431:18;;;14424:62;14522:17;14502:18;;;14495:45;14557:19;;5908:94:3;14171:411:13;5908:94:3;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;1067:603:4:-;985:9;998:10;985:23;977:66;;;;-1:-1:-1;;;977:66:4;;10952:2:13;977:66:4;;;10934:21:13;10991:2;10971:18;;;10964:30;11030:32;11010:18;;;11003:60;11080:18;;977:66:4;10750:354:13;977:66:4;1170:10:::1;:23:::0;1146:13:::1;::::0;1170:34:::1;::::0;1196:8;;1170:23;;::::1;;;:34;:::i;:::-;1146:59:::0;-1:-1:-1;1224:10:4;1216:57:::1;;;::::0;-1:-1:-1;;;1216:57:4;;20971:2:13;1216:57:4::1;::::0;::::1;20953:21:13::0;21010:2;20990:18;;;20983:30;21049:34;21029:18;;;21022:62;-1:-1:-1;;;21100:18:13;;;21093:32;21142:19;;1216:57:4::1;20769:398:13::0;1216:57:4::1;1303:10;1317:1;1291:23:::0;;;:11:::1;:23;::::0;;;;;1283:73:::1;;;::::0;-1:-1:-1;;;1283:73:4;;12090:2:13;1283:73:4::1;::::0;::::1;12072:21:13::0;12129:2;12109:18;;;12102:30;12168:34;12148:18;;;12141:62;-1:-1:-1;;;12219:18:13;;;12212:31;12260:19;;1283:73:4::1;11888:397:13::0;1283:73:4::1;1398:10;1386:23;::::0;;;:11:::1;:23;::::0;;;;;1374:35;::::1;;1366:73;;;::::0;-1:-1:-1;;;1366:73:4;;12904:2:13;1366:73:4::1;::::0;::::1;12886:21:13::0;12943:2;12923:18;;;12916:30;12982:27;12962:18;;;12955:55;13027:18;;1366:73:4::1;12702:349:13::0;1366:73:4::1;1485:14;1473:8;1457:13;2507:12:3::0;;;2432:92;1457:13:4::1;:24;;;;:::i;:::-;:42;;1449:73;;;::::0;-1:-1:-1;;;1449:73:4;;13258:2:13;1449:73:4::1;::::0;::::1;13240:21:13::0;13297:2;13277:18;;;13270:30;-1:-1:-1;;;13316:18:13;;;13309:48;13374:18;;1449:73:4::1;13056:342:13::0;1449:73:4::1;1571:10;1559:23;::::0;;;:11:::1;:23;::::0;;;;;:34:::1;::::0;1585:8;;1559:34:::1;:::i;:::-;1545:10;1533:23;::::0;;;:11:::1;:23;::::0;;;;:60;;;;1603:31:::1;::::0;1625:8;1603:9:::1;:31::i;:::-;1644:19;1657:5;1644:12;:19::i;:::-;1136:534;1067:603:::0;:::o;2948:217::-;3070:4;3097:19;;;;;:61;;-1:-1:-1;;3120:15:4;:38;;;3090:68;-1:-1:-1;2948:217:4:o;4570:111::-;4628:7;4654:20;4668:5;4654:13;:20::i;1911:198:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;8493:2:13;1991:73:10::1;::::0;::::1;8475:21:13::0;8532:2;8512:18;;;8505:30;8571:34;8551:18;;;8544:62;-1:-1:-1;;;8622:18:13;;;8615:36;8668:19;;1991:73:10::1;8291:402:13::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;3171:236:4:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;14012:2:13;1233:68:10;;;13994:21:13;;;14031:18;;;14024:30;-1:-1:-1;;;;;;;;;;;14070:18:13;;;14063:62;14142:18;;1233:68:10;13810:356:13;1233:68:10;3298:9:4::1;3293:108;3317:9;:16;3313:1;:20;3293:108;;;3382:8;3354:11;:25;3366:9;3376:1;3366:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3354:25:4::1;-1:-1:-1::0;;;;;3354:25:4::1;;;;;;;;;;;;:36;;;;3335:3;;;;;:::i;:::-;;;;3293:108;;12277:165:3::0;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10893:18;;10786:58;;-1:-1:-1;10851:22:3;;-1:-1:-1;;;;;10877:34:3;719:10:1;-1:-1:-1;;;;;10877:34:3;;:80;;;-1:-1:-1;719:10:1;10921:20:3;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;719:10:1;7541:178:3;:::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;15144:2:13;11025:98:3;;;15126:21:13;15183:2;15163:18;;;15156:30;15222:34;15202:18;;;15195:62;15293:20;15273:18;;;15266:48;15331:19;;11025:98:3;14942:414:13;11025:98:3;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;13605:2:13;11130:95:3;;;13587:21:13;13644:2;13624:18;;;13617:30;13683:34;13663:18;;;13656:62;-1:-1:-1;;;13734:18:13;;;13727:36;13780:19;;11130:95:3;13403:402:13;11130:95:3;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;10128:2:13;11231:66:3;;;10110:21:13;10167:2;10147:18;;;10140:30;10206:34;10186:18;;;10179:62;-1:-1:-1;;;10257:18:13;;;10250:35;10302:19;;11231:66:3;9926:401:13;11231:66:3;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;;11578:15;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;;;11529:66:3;;;;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;8792:12;;-1:-1:-1;8782:22:3;8706:103;11919:20;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;11978:94;;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11951:121:3;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;10780:1398;;;10694:1484;;;:::o;12589:827::-;12678:24;;12716:12;12708:49;;;;-1:-1:-1;;;12708:49:3;;11737:2:13;12708:49:3;;;11719:21:13;11776:2;11756:18;;;11749:30;11815:26;11795:18;;;11788:54;11859:18;;12708:49:3;11535:348:13;12708:49:3;12763:16;12813:1;12782:28;12802:8;12782:17;:28;:::i;:::-;:32;;;;:::i;:::-;12763:51;-1:-1:-1;12835:18:3;12852:1;12835:14;:18;:::i;:::-;12824:8;:29;12820:79;;;12874:18;12891:1;12874:14;:18;:::i;:::-;12863:29;;12820:79;13012:17;13020:8;8792:12;;-1:-1:-1;8782:22:3;8706:103;13012:17;13004:68;;;;-1:-1:-1;;;13004:68:3;;19374:2:13;13004:68:3;;;19356:21:13;19413:2;19393:18;;;19386:30;19452:34;19432:18;;;19425:62;-1:-1:-1;;;19503:18:13;;;19496:36;19549:19;;13004:68:3;19172:402:13;13004:68:3;13095:17;13078:289;13119:8;13114:1;:13;13078:289;;13177:1;13146:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;13146:19:3;13142:219;;13191:31;13225:14;13237:1;13225:11;:14::i;:::-;13266:86;;;;;;;;13292:14;;-1:-1:-1;;;;;13266:86:3;;;;;;13318:24;;;;13266:86;;;;;;;;;;-1:-1:-1;13249:14:3;;;:11;:14;;;;;;;:103;;;;;;;;;-1:-1:-1;;;13249:103:3;-1:-1:-1;;;;;;13249:103:3;;;;;;;;;;;;-1:-1:-1;13142:219:3;13129:3;;;;:::i;:::-;;;;13078:289;;;-1:-1:-1;13399:12:3;:8;13410:1;13399:12;:::i;:::-;13372:24;:39;-1:-1:-1;;;12589:827:3:o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:3;4805:7;8792:12;;-1:-1:-1;8782:22:3;8706:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:3;;8900:2:13;4789:71:3;;;8882:21:13;8939:2;8919:18;;;8912:30;8978:34;8958:18;;;8951:62;-1:-1:-1;;;9029:18:13;;;9022:40;9079:19;;4789:71:3;8698:406:13;4789:71:3;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;;;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:3:o;5128:69::-;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:3;;-1:-1:-1;;;5209:57:3;;20141:2:13;5209:57:3;;;20123:21:13;20180:2;20160:18;;;20153:30;20219:34;20199:18;;;20192:62;20290:17;20270:18;;;20263:45;20325:19;;5209:57:3;19939:411:13;2263:187:10;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;2371:17:10;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;2422:219:4:-;2498:5;2485:9;:18;;2477:53;;;;-1:-1:-1;;;2477:53:4;;17089:2:13;2477:53:4;;;17071:21:13;17128:2;17108:18;;;17101:30;17167:24;17147:18;;;17140:52;17209:18;;2477:53:4;16887:346:13;2477:53:4;2556:5;2544:9;:17;2540:95;;;2585:10;2577:47;2606:17;2618:5;2606:9;:17;:::i;:::-;2577:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13947:667:3;14079:4;-1:-1:-1;;;;;14095:13:3;;1087:20:0;1133:8;14091:519:3;;14132:72;;-1:-1:-1;;;14132:72:3;;-1:-1:-1;;;;;14132:36:3;;;;;:72;;719:10:1;;14183:4:3;;14189:7;;14198:5;;14132:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;16669:2:13;14391:61:3;;;16651:21:13;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:13;;;16791:49;16857:19;;14391:61:3;16467:415:13;14355:209:3;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;3992:112:4:-;4052:13;4084;4077:20;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;4447:234:3;4508:7;-1:-1:-1;;;;;4538:19:3;;4523:99;;;;-1:-1:-1;;;4523:99:3;;10534:2:13;4523:99:3;;;10516:21:13;10573:2;10553:18;;;10546:30;10612:34;10592:18;;;10585:62;10683:19;10663:18;;;10656:47;10720:19;;4523:99:3;10332:413:13;4523:99:3;-1:-1:-1;;;;;;4643:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:3;;-1:-1:-1;;;;;4643:32:3;;4447:234::o;9235:1239::-;9358:12;;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;17798:2:13;9376:62:3;;;17780:21:13;17837:2;17817:18;;;17810:30;17876:34;17856:18;;;17849:62;-1:-1:-1;;;17927:18:13;;;17920:31;17968:19;;9376:62:3;17596:397:13;9376:62:3;9573:21;9581:12;8792;;-1:-1:-1;8782:22:3;8706:103;9573:21;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;17440:2:13;9564:64:3;;;17422:21:13;17479:2;17459:18;;;17452:30;17518:31;17498:18;;;17491:59;17567:18;;9564:64:3;17238:353:13;9564:64:3;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;21374:2:13;9634:71:3;;;21356:21:13;21413:2;21393:18;;;21386:30;21452:34;21432:18;;;21425:62;-1:-1:-1;;;21503:18:13;;;21496:32;21545:19;;9634:71:3;21172:398:13;9634:71:3;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9835:135:3;;;;;;;;;;;;10004:43;;;;;;;;;;;10030:15;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;16669:2:13;10194:147:3;;;16651:21:13;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:13;;;16791:49;16857:19;;10194:147:3;16467:415:13;10194:147:3;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;1676:740:4;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:13;82:20;;-1:-1:-1;;;;;131:54:13;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:171::-;282:20;;342:18;331:30;;321:41;;311:69;;376:1;373;366:12;391:186;450:6;503:2;491:9;482:7;478:23;474:32;471:52;;;519:1;516;509:12;471:52;542:29;561:9;542:29;:::i;582:260::-;650:6;658;711:2;699:9;690:7;686:23;682:32;679:52;;;727:1;724;717:12;679:52;750:29;769:9;750:29;:::i;:::-;740:39;;798:38;832:2;821:9;817:18;798:38;:::i;:::-;788:48;;582:260;;;;;:::o;847:328::-;924:6;932;940;993:2;981:9;972:7;968:23;964:32;961:52;;;1009:1;1006;999:12;961:52;1032:29;1051:9;1032:29;:::i;:::-;1022:39;;1080:38;1114:2;1103:9;1099:18;1080:38;:::i;:::-;1070:48;;1165:2;1154:9;1150:18;1137:32;1127:42;;847:328;;;;;:::o;1180:980::-;1275:6;1283;1291;1299;1352:3;1340:9;1331:7;1327:23;1323:33;1320:53;;;1369:1;1366;1359:12;1320:53;1392:29;1411:9;1392:29;:::i;:::-;1382:39;;1440:2;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1546:2;1535:9;1531:18;1518:32;1508:42;;1601:2;1590:9;1586:18;1573:32;1624:18;1665:2;1657:6;1654:14;1651:34;;;1681:1;1678;1671:12;1651:34;1719:6;1708:9;1704:22;1694:32;;1764:7;1757:4;1753:2;1749:13;1745:27;1735:55;;1786:1;1783;1776:12;1735:55;1822:2;1809:16;1844:2;1840;1837:10;1834:36;;;1850:18;;:::i;:::-;1892:53;1935:2;1916:13;;-1:-1:-1;;1912:27:13;1908:36;;1892:53;:::i;:::-;1879:66;;1968:2;1961:5;1954:17;2008:7;2003:2;1998;1994;1990:11;1986:20;1983:33;1980:53;;;2029:1;2026;2019:12;1980:53;2084:2;2079;2075;2071:11;2066:2;2059:5;2055:14;2042:45;2128:1;2123:2;2118;2111:5;2107:14;2103:23;2096:34;;2149:5;2139:15;;;;;1180:980;;;;;;;:::o;2165:347::-;2230:6;2238;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;2330:29;2349:9;2330:29;:::i;:::-;2320:39;;2409:2;2398:9;2394:18;2381:32;2456:5;2449:13;2442:21;2435:5;2432:32;2422:60;;2478:1;2475;2468:12;2422:60;2501:5;2491:15;;;2165:347;;;;;:::o;2517:254::-;2585:6;2593;2646:2;2634:9;2625:7;2621:23;2617:32;2614:52;;;2662:1;2659;2652:12;2614:52;2685:29;2704:9;2685:29;:::i;:::-;2675:39;2761:2;2746:18;;;;2733:32;;-1:-1:-1;;;2517:254:13:o;2776:1033::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2986:9;2973:23;3015:18;3056:2;3048:6;3045:14;3042:34;;;3072:1;3069;3062:12;3042:34;3110:6;3099:9;3095:22;3085:32;;3155:7;3148:4;3144:2;3140:13;3136:27;3126:55;;3177:1;3174;3167:12;3126:55;3213:2;3200:16;3235:4;3258:2;3254;3251:10;3248:36;;;3264:18;;:::i;:::-;3310:2;3307:1;3303:10;3293:20;;3333:28;3357:2;3353;3349:11;3333:28;:::i;:::-;3395:15;;;3426:12;;;;3458:11;;;3488;;;3484:20;;3481:33;-1:-1:-1;3478:53:13;;;3527:1;3524;3517:12;3478:53;3549:1;3540:10;;3559:169;3573:2;3570:1;3567:9;3559:169;;;3630:23;3649:3;3630:23;:::i;:::-;3618:36;;3591:1;3584:9;;;;;3674:12;;;;3706;;3559:169;;;-1:-1:-1;3747:5:13;3784:18;;;;3771:32;;-1:-1:-1;;;;;;;2776:1033:13:o;3814:245::-;3872:6;3925:2;3913:9;3904:7;3900:23;3896:32;3893:52;;;3941:1;3938;3931:12;3893:52;3980:9;3967:23;3999:30;4023:5;3999:30;:::i;4064:249::-;4133:6;4186:2;4174:9;4165:7;4161:23;4157:32;4154:52;;;4202:1;4199;4192:12;4154:52;4234:9;4228:16;4253:30;4277:5;4253:30;:::i;4318:592::-;4389:6;4397;4450:2;4438:9;4429:7;4425:23;4421:32;4418:52;;;4466:1;4463;4456:12;4418:52;4506:9;4493:23;4535:18;4576:2;4568:6;4565:14;4562:34;;;4592:1;4589;4582:12;4562:34;4630:6;4619:9;4615:22;4605:32;;4675:7;4668:4;4664:2;4660:13;4656:27;4646:55;;4697:1;4694;4687:12;4646:55;4737:2;4724:16;4763:2;4755:6;4752:14;4749:34;;;4779:1;4776;4769:12;4749:34;4824:7;4819:2;4810:6;4806:2;4802:15;4798:24;4795:37;4792:57;;;4845:1;4842;4835:12;4792:57;4876:2;4868:11;;;;;4898:6;;-1:-1:-1;4318:592:13;;-1:-1:-1;;;;4318:592:13:o;4915:180::-;4974:6;5027:2;5015:9;5006:7;5002:23;4998:32;4995:52;;;5043:1;5040;5033:12;4995:52;-1:-1:-1;5066:23:13;;4915:180;-1:-1:-1;4915:180:13:o;5100:248::-;5168:6;5176;5229:2;5217:9;5208:7;5204:23;5200:32;5197:52;;;5245:1;5242;5235:12;5197:52;-1:-1:-1;;5268:23:13;;;5338:2;5323:18;;;5310:32;;-1:-1:-1;5100:248:13:o;5353:420::-;5427:6;5435;5443;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5535:28;5553:9;5535:28;:::i;:::-;5525:38;;5582:37;5615:2;5604:9;5600:18;5582:37;:::i;:::-;5572:47;;5669:2;5658:9;5654:18;5641:32;5713:10;5706:5;5702:22;5695:5;5692:33;5682:61;;5739:1;5736;5729:12;5682:61;5762:5;5752:15;;;5353:420;;;;;:::o;5778:257::-;5819:3;5857:5;5851:12;5884:6;5879:3;5872:19;5900:63;5956:6;5949:4;5944:3;5940:14;5933:4;5926:5;5922:16;5900:63;:::i;:::-;6017:2;5996:15;-1:-1:-1;;5992:29:13;5983:39;;;;6024:4;5979:50;;5778:257;-1:-1:-1;;5778:257:13:o;6040:470::-;6219:3;6257:6;6251:13;6273:53;6319:6;6314:3;6307:4;6299:6;6295:17;6273:53;:::i;:::-;6389:13;;6348:16;;;;6411:57;6389:13;6348:16;6445:4;6433:17;;6411:57;:::i;:::-;6484:20;;6040:470;-1:-1:-1;;;;6040:470:13:o;6956:511::-;7150:4;-1:-1:-1;;;;;7260:2:13;7252:6;7248:15;7237:9;7230:34;7312:2;7304:6;7300:15;7295:2;7284:9;7280:18;7273:43;;7352:6;7347:2;7336:9;7332:18;7325:34;7395:3;7390:2;7379:9;7375:18;7368:31;7416:45;7456:3;7445:9;7441:19;7433:6;7416:45;:::i;:::-;7408:53;6956:511;-1:-1:-1;;;;;;6956:511:13:o;7664:219::-;7813:2;7802:9;7795:21;7776:4;7833:44;7873:2;7862:9;7858:18;7850:6;7833:44;:::i;22535:275::-;22606:2;22600:9;22671:2;22652:13;;-1:-1:-1;;22648:27:13;22636:40;;22706:18;22691:34;;22727:22;;;22688:62;22685:88;;;22753:18;;:::i;:::-;22789:2;22782:22;22535:275;;-1:-1:-1;22535:275:13:o;22815:253::-;22855:3;-1:-1:-1;;;;;22944:2:13;22941:1;22937:10;22974:2;22971:1;22967:10;23005:3;23001:2;22997:12;22992:3;22989:21;22986:47;;;23013:18;;:::i;23073:128::-;23113:3;23144:1;23140:6;23137:1;23134:13;23131:39;;;23150:18;;:::i;:::-;-1:-1:-1;23186:9:13;;23073:128::o;23206:120::-;23246:1;23272;23262:35;;23277:18;;:::i;:::-;-1:-1:-1;23311:9:13;;23206:120::o;23331:168::-;23371:7;23437:1;23433;23429:6;23425:14;23422:1;23419:21;23414:1;23407:9;23400:17;23396:45;23393:71;;;23444:18;;:::i;:::-;-1:-1:-1;23484:9:13;;23331:168::o;23504:246::-;23544:4;-1:-1:-1;;;;;23657:10:13;;;;23627;;23679:12;;;23676:38;;;23694:18;;:::i;:::-;23731:13;;23504:246;-1:-1:-1;;;23504:246:13:o;23755:125::-;23795:4;23823:1;23820;23817:8;23814:34;;;23828:18;;:::i;:::-;-1:-1:-1;23865:9:13;;23755:125::o;23885:258::-;23957:1;23967:113;23981:6;23978:1;23975:13;23967:113;;;24057:11;;;24051:18;24038:11;;;24031:39;24003:2;23996:10;23967:113;;;24098:6;24095:1;24092:13;24089:48;;;-1:-1:-1;;24133:1:13;24115:16;;24108:27;23885:258::o;24148:136::-;24187:3;24215:5;24205:39;;24224:18;;:::i;:::-;-1:-1:-1;;;24260:18:13;;24148:136::o;24289:380::-;24368:1;24364:12;;;;24411;;;24432:61;;24486:4;24478:6;24474:17;24464:27;;24432:61;24539:2;24531:6;24528:14;24508:18;24505:38;24502:161;;;24585:10;24580:3;24576:20;24573:1;24566:31;24620:4;24617:1;24610:15;24648:4;24645:1;24638:15;24502:161;;24289:380;;;:::o;24674:135::-;24713:3;-1:-1:-1;;24734:17:13;;24731:43;;;24754:18;;:::i;:::-;-1:-1:-1;24801:1:13;24790:13;;24674:135::o;24814:112::-;24846:1;24872;24862:35;;24877:18;;:::i;:::-;-1:-1:-1;24911:9:13;;24814:112::o;24931:127::-;24992:10;24987:3;24983:20;24980:1;24973:31;25023:4;25020:1;25013:15;25047:4;25044:1;25037:15;25063:127;25124:10;25119:3;25115:20;25112:1;25105:31;25155:4;25152:1;25145:15;25179:4;25176:1;25169:15;25195:127;25256:10;25251:3;25247:20;25244:1;25237:31;25287:4;25284:1;25277:15;25311:4;25308:1;25301:15;25327:127;25388:10;25383:3;25379:20;25376:1;25369:31;25419:4;25416:1;25409:15;25443:4;25440:1;25433:15;25459:131;-1:-1:-1;;;;;;25533:32:13;;25523:43;;25513:71;;25580:1;25577;25570:12

Swarm Source

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