ETH Price: $3,088.73 (+0.88%)
Gas: 5 Gwei

Token

Infinity Pass (IPASS)
 

Overview

Max Total Supply

500 IPASS

Holders

218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 IPASS
0xf3a280eE8048047217fE93ae04028f3d21c97b90
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:
InfinityPass

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 12: InfinityPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

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

contract InfinityPass is Ownable , ERC721A { 
  using Strings for uint256;
 
  bool public hasMintStarted = false;

  uint8 public MAX_MINT_PER_TX = 3;
  uint64 public MAX_PASS = 1000;
  uint256 public Mint_Price = 0.01 ether;
  string private _baseTokenURI;

  mapping(address => bool) private FreeMinted;

  constructor() 
  ERC721A("Infinity Pass", "IPASS" , MAX_MINT_PER_TX, MAX_PASS) { 
  }

  function mint(uint8 quantity) public payable { 
    require(totalSupply() + quantity <= MAX_PASS, "Soldout");
    require(hasMintStarted == true, "Mint not live");
    require(quantity <= MAX_MINT_PER_TX, "Exceed Max Mint"); 
    require(msg.value >= Mint_Price * quantity, "Value Insufficient");
    
    _safeMint(msg.sender, quantity);
  } 

  function mint_free() public { 
    require(totalSupply() <= 100, "Free Mint Unavailable");
    require(hasMintStarted == true, "Mint not live");
    require(!FreeMinted[msg.sender], "Not Available");

    _safeMint(msg.sender, 1);
    FreeMinted[msg.sender] = true;
  } 
  
  function getPrice() public view returns (uint256){
        return Mint_Price;
  }

  function FlipMintState() public onlyOwner {
    hasMintStarted = !hasMintStarted;
  }

  function setSupply(uint64 mintSupply) external onlyOwner {
    MAX_PASS = mintSupply;
  }

  function setMintPerTx(uint8 mintQty) external onlyOwner {
    MAX_MINT_PER_TX = mintQty;
  }

  function setPrice(uint256 price) external onlyOwner {
    Mint_Price = price;
  }
  
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }
  
  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function withdrawAll() external onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "No money");
    _withdraw(msg.sender, address(this).balance);
  }

  function _withdraw(address _address, uint256 _amount) private {
    (bool success, ) = _address.call{ value: _amount }("");
    require(success, "Transfer failed");
  }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12: 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 private 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 5 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 12: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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":[],"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":"FlipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PASS","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Mint_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasMintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_free","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint8","name":"mintQty","type":"uint8"}],"name":"setMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintSupply","type":"uint64"}],"name":"setSupply","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001819055600855600980546001600160501b0319166303e80300179055662386f26fc10000600a553480156200003c57600080fd5b50604080518082018252600d81526c496e66696e697479205061737360981b60208083019190915282518084019093526005835264495041535360d81b90830152600954909190610100810460ff16906201000090046001600160401b0316620000ad620000a73390565b620001ba565b600081116200011a5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017c5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000111565b8351620001919060029060208701906200020a565b508251620001a79060039060208601906200020a565b5060a09190915260805250620002ed9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021890620002b0565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600181811c90821680620002c557607f821691505b60208210811415620002e757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161244a6200031e60003960008181611684015281816116ae0152611b7601526000505061244a6000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610553578063ed9cfe731461059c578063f2fde38b146105da578063fe43973f146105fa57600080fd5b8063a22cb465146104dd578063b7e7da6a146104fd578063b88d4fde14610513578063c87b56dd1461053357600080fd5b80638ecad721116100d15780638ecad7211461046257806391b7f5ed1461049357806395d89b41146104b357806398d5fdca146104c857600080fd5b8063715018a6146104055780637896bb0a1461041a578063853828b61461042f5780638da5cb5b1461044457600080fd5b806330985c9c1161017a5780636352211e116101495780636352211e1461039857806367768ceb146103b85780636ecd2306146103d257806370a08231146103e557600080fd5b806330985c9c1461031857806342842e0e146103385780634f6ccce71461035857806355f804b31461037857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632b01e4fa146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611e39565b61060f565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261067c565b6040516102149190611eae565b34801561024b57600080fd5b5061025f61025a366004611ec1565b61070e565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ef6565b61079e565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f20565b6108b6565b3480156102e457600080fd5b506102976102f3366004611f5c565b6108c1565b34801561030457600080fd5b506102aa610313366004611ef6565b610916565b34801561032457600080fd5b50610297610333366004611f85565b610a8e565b34801561034457600080fd5b50610297610353366004611f20565b610ad4565b34801561036457600080fd5b506102aa610373366004611ec1565b610aef565b34801561038457600080fd5b50610297610393366004611fa8565b610b58565b3480156103a457600080fd5b5061025f6103b3366004611ec1565b610b8e565b3480156103c457600080fd5b506009546102089060ff1681565b6102976103e0366004611f85565b610ba0565b3480156103f157600080fd5b506102aa610400366004612019565b610cfe565b34801561041157600080fd5b50610297610d8f565b34801561042657600080fd5b50610297610dc5565b34801561043b57600080fd5b50610297610ed4565b34801561045057600080fd5b506000546001600160a01b031661025f565b34801561046e57600080fd5b5060095461048190610100900460ff1681565b60405160ff9091168152602001610214565b34801561049f57600080fd5b506102976104ae366004611ec1565b610f41565b3480156104bf57600080fd5b50610232610f70565b3480156104d457600080fd5b50600a546102aa565b3480156104e957600080fd5b506102976104f8366004612034565b610f7f565b34801561050957600080fd5b506102aa600a5481565b34801561051f57600080fd5b5061029761052e366004612086565b611044565b34801561053f57600080fd5b5061023261054e366004611ec1565b61107d565b34801561055f57600080fd5b5061020861056e366004612161565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506009546105c2906201000090046001600160401b031681565b6040516001600160401b039091168152602001610214565b3480156105e657600080fd5b506102976105f5366004612019565b61114a565b34801561060657600080fd5b506102976111e2565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506001600160e01b0319821663780e9d6360e01b145b8061067657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461068b90612194565b80601f01602080910402602001604051908101604052809291908181526020018280546106b790612194565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071b826001541190565b6107825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a982610b8e565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610779565b336001600160a01b03821614806108345750610834813361056e565b6108a65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610779565b6108b1838383611220565b505050565b6108b183838361127c565b6000546001600160a01b031633146108eb5760405162461bcd60e51b8152600401610779906121cf565b600980546001600160401b03909216620100000269ffffffffffffffff000019909216919091179055565b600061092183610cfe565b821061097a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610779565b600061098560015490565b905060008060005b83811015610a2e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109df57805192505b876001600160a01b0316836001600160a01b03161415610a1b5786841415610a0d5750935061067692505050565b83610a178161221a565b9450505b5080610a268161221a565b91505061098d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610779565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610779906121cf565b6009805460ff9092166101000261ff0019909216919091179055565b6108b183838360405180602001604052806000815250611044565b6000610afa60015490565b8210610b545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610779565b5090565b6000546001600160a01b03163314610b825760405162461bcd60e51b8152600401610779906121cf565b6108b1600b8383611d93565b6000610b9982611602565b5192915050565b6009546001600160401b03620100009091041660ff8216610bc060015490565b610bca9190612235565b1115610c025760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610779565b60095460ff161515600114610c495760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610779565b60095460ff61010090910481169082161115610c995760405162461bcd60e51b815260206004820152600f60248201526e115e18d959590813585e08135a5b9d608a1b6044820152606401610779565b8060ff16600a54610caa919061224d565b341015610cee5760405162461bcd60e51b815260206004820152601260248201527115985b1d5948125b9cdd59999a58da595b9d60721b6044820152606401610779565b610cfb338260ff166117ab565b50565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610779565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610db95760405162461bcd60e51b8152600401610779906121cf565b610dc360006117c9565b565b6064610dd060015490565b1115610e165760405162461bcd60e51b815260206004820152601560248201527446726565204d696e7420556e617661696c61626c6560581b6044820152606401610779565b60095460ff161515600114610e5d5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610779565b336000908152600c602052604090205460ff1615610ead5760405162461bcd60e51b815260206004820152600d60248201526c4e6f7420417661696c61626c6560981b6044820152606401610779565b610eb83360016117ab565b336000908152600c60205260409020805460ff19166001179055565b6000546001600160a01b03163314610efe5760405162461bcd60e51b8152600401610779906121cf565b4780610f375760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610779565b610cfb3347611819565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b8152600401610779906121cf565b600a55565b60606003805461068b90612194565b6001600160a01b038216331415610fd85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610779565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61104f84848461127c565b61105b848484846118ae565b6110775760405162461bcd60e51b81526004016107799061226c565b50505050565b606061108a826001541190565b6110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b60006110f86119ad565b905060008151116111185760405180602001604052806000815250611143565b80611122846119bc565b6040516020016111339291906122bf565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111745760405162461bcd60e51b8152600401610779906121cf565b6001600160a01b0381166111d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b610cfb816117c9565b6000546001600160a01b0316331461120c5760405162461bcd60e51b8152600401610779906121cf565b6009805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128782611602565b80519091506000906001600160a01b0316336001600160a01b031614806112be5750336112b38461070e565b6001600160a01b0316145b806112d0575081516112d0903361056e565b90508061133a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610779565b846001600160a01b031682600001516001600160a01b0316146113ae5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610779565b6001600160a01b0384166114125760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610779565b6114226000848460000151611220565b6001600160a01b03851660009081526005602052604081208054600192906114549084906001600160801b03166122ee565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926114a091859116612316565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611527846001612235565b6000818152600460205260409020549091506001600160a01b03166115b857611551816001541190565b156115b85760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611621826001541190565b6116805760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610779565b60007f000000000000000000000000000000000000000000000000000000000000000083106116e1576116d37f000000000000000000000000000000000000000000000000000000000000000084612338565b6116de906001612235565b90505b825b81811061174a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561173757949350505050565b50806117428161234f565b9150506116e3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610779565b6117c5828260405180602001604052806000815250611ab9565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50509050806108b15760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610779565b60006001600160a01b0384163b156119a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118f2903390899088908890600401612366565b6020604051808303816000875af192505050801561192d575060408051601f3d908101601f1916820190925261192a918101906123a3565b60015b611987573d80801561195b576040519150601f19603f3d011682016040523d82523d6000602084013e611960565b606091505b50805161197f5760405162461bcd60e51b81526004016107799061226c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a5565b5060015b949350505050565b6060600b805461068b90612194565b6060816119e05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0a57806119f48161221a565b9150611a039050600a836123d6565b91506119e4565b6000816001600160401b03811115611a2457611a24612070565b6040519080825280601f01601f191660200182016040528015611a4e576020820181803683370190505b5090505b84156119a557611a63600183612338565b9150611a70600a866123ea565b611a7b906030612235565b60f81b818381518110611a9057611a906123fe565b60200101906001600160f81b031916908160001a905350611ab2600a866123d6565b9450611a52565b6001546001600160a01b038416611b1c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610779565b611b27816001541190565b15611b745760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610779565b7f0000000000000000000000000000000000000000000000000000000000000000831115611bef5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610779565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c4b908790612316565b6001600160801b03168152602001858360200151611c699190612316565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d885760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d4c60008884886118ae565b611d685760405162461bcd60e51b81526004016107799061226c565b81611d728161221a565b9250508080611d809061221a565b915050611cff565b5060018190556115fa565b828054611d9f90612194565b90600052602060002090601f016020900481019282611dc15760008555611e07565b82601f10611dda5782800160ff19823516178555611e07565b82800160010185558215611e07579182015b82811115611e07578235825591602001919060010190611dec565b50610b549291505b80821115610b545760008155600101611e0f565b6001600160e01b031981168114610cfb57600080fd5b600060208284031215611e4b57600080fd5b813561114381611e23565b60005b83811015611e71578181015183820152602001611e59565b838111156110775750506000910152565b60008151808452611e9a816020860160208601611e56565b601f01601f19169290920160200192915050565b6020815260006111436020830184611e82565b600060208284031215611ed357600080fd5b5035919050565b80356001600160a01b0381168114611ef157600080fd5b919050565b60008060408385031215611f0957600080fd5b611f1283611eda565b946020939093013593505050565b600080600060608486031215611f3557600080fd5b611f3e84611eda565b9250611f4c60208501611eda565b9150604084013590509250925092565b600060208284031215611f6e57600080fd5b81356001600160401b038116811461114357600080fd5b600060208284031215611f9757600080fd5b813560ff8116811461114357600080fd5b60008060208385031215611fbb57600080fd5b82356001600160401b0380821115611fd257600080fd5b818501915085601f830112611fe657600080fd5b813581811115611ff557600080fd5b86602082850101111561200757600080fd5b60209290920196919550909350505050565b60006020828403121561202b57600080fd5b61114382611eda565b6000806040838503121561204757600080fd5b61205083611eda565b91506020830135801515811461206557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561209c57600080fd5b6120a585611eda565b93506120b360208601611eda565b92506040850135915060608501356001600160401b03808211156120d657600080fd5b818701915087601f8301126120ea57600080fd5b8135818111156120fc576120fc612070565b604051601f8201601f19908116603f0116810190838211818310171561212457612124612070565b816040528281528a602084870101111561213d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561217457600080fd5b61217d83611eda565b915061218b60208401611eda565b90509250929050565b600181811c908216806121a857607f821691505b602082108114156121c957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561222e5761222e612204565b5060010190565b6000821982111561224857612248612204565b500190565b600081600019048311821515161561226757612267612204565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516122d1818460208801611e56565b8351908301906122e5818360208801611e56565b01949350505050565b60006001600160801b038381169083168181101561230e5761230e612204565b039392505050565b60006001600160801b038083168185168083038211156122e5576122e5612204565b60008282101561234a5761234a612204565b500390565b60008161235e5761235e612204565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239990830184611e82565b9695505050505050565b6000602082840312156123b557600080fd5b815161114381611e23565b634e487b7160e01b600052601260045260246000fd5b6000826123e5576123e56123c0565b500490565b6000826123f9576123f96123c0565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201f1b1dba523d10da6688e07df8959dda498bc79dd8e18799a0728d1e11870bcc64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610553578063ed9cfe731461059c578063f2fde38b146105da578063fe43973f146105fa57600080fd5b8063a22cb465146104dd578063b7e7da6a146104fd578063b88d4fde14610513578063c87b56dd1461053357600080fd5b80638ecad721116100d15780638ecad7211461046257806391b7f5ed1461049357806395d89b41146104b357806398d5fdca146104c857600080fd5b8063715018a6146104055780637896bb0a1461041a578063853828b61461042f5780638da5cb5b1461044457600080fd5b806330985c9c1161017a5780636352211e116101495780636352211e1461039857806367768ceb146103b85780636ecd2306146103d257806370a08231146103e557600080fd5b806330985c9c1461031857806342842e0e146103385780634f6ccce71461035857806355f804b31461037857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632b01e4fa146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611e39565b61060f565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261067c565b6040516102149190611eae565b34801561024b57600080fd5b5061025f61025a366004611ec1565b61070e565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611ef6565b61079e565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f20565b6108b6565b3480156102e457600080fd5b506102976102f3366004611f5c565b6108c1565b34801561030457600080fd5b506102aa610313366004611ef6565b610916565b34801561032457600080fd5b50610297610333366004611f85565b610a8e565b34801561034457600080fd5b50610297610353366004611f20565b610ad4565b34801561036457600080fd5b506102aa610373366004611ec1565b610aef565b34801561038457600080fd5b50610297610393366004611fa8565b610b58565b3480156103a457600080fd5b5061025f6103b3366004611ec1565b610b8e565b3480156103c457600080fd5b506009546102089060ff1681565b6102976103e0366004611f85565b610ba0565b3480156103f157600080fd5b506102aa610400366004612019565b610cfe565b34801561041157600080fd5b50610297610d8f565b34801561042657600080fd5b50610297610dc5565b34801561043b57600080fd5b50610297610ed4565b34801561045057600080fd5b506000546001600160a01b031661025f565b34801561046e57600080fd5b5060095461048190610100900460ff1681565b60405160ff9091168152602001610214565b34801561049f57600080fd5b506102976104ae366004611ec1565b610f41565b3480156104bf57600080fd5b50610232610f70565b3480156104d457600080fd5b50600a546102aa565b3480156104e957600080fd5b506102976104f8366004612034565b610f7f565b34801561050957600080fd5b506102aa600a5481565b34801561051f57600080fd5b5061029761052e366004612086565b611044565b34801561053f57600080fd5b5061023261054e366004611ec1565b61107d565b34801561055f57600080fd5b5061020861056e366004612161565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a857600080fd5b506009546105c2906201000090046001600160401b031681565b6040516001600160401b039091168152602001610214565b3480156105e657600080fd5b506102976105f5366004612019565b61114a565b34801561060657600080fd5b506102976111e2565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506001600160e01b0319821663780e9d6360e01b145b8061067657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461068b90612194565b80601f01602080910402602001604051908101604052809291908181526020018280546106b790612194565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071b826001541190565b6107825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a982610b8e565b9050806001600160a01b0316836001600160a01b031614156108185760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610779565b336001600160a01b03821614806108345750610834813361056e565b6108a65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610779565b6108b1838383611220565b505050565b6108b183838361127c565b6000546001600160a01b031633146108eb5760405162461bcd60e51b8152600401610779906121cf565b600980546001600160401b03909216620100000269ffffffffffffffff000019909216919091179055565b600061092183610cfe565b821061097a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610779565b600061098560015490565b905060008060005b83811015610a2e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109df57805192505b876001600160a01b0316836001600160a01b03161415610a1b5786841415610a0d5750935061067692505050565b83610a178161221a565b9450505b5080610a268161221a565b91505061098d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610779565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610779906121cf565b6009805460ff9092166101000261ff0019909216919091179055565b6108b183838360405180602001604052806000815250611044565b6000610afa60015490565b8210610b545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610779565b5090565b6000546001600160a01b03163314610b825760405162461bcd60e51b8152600401610779906121cf565b6108b1600b8383611d93565b6000610b9982611602565b5192915050565b6009546001600160401b03620100009091041660ff8216610bc060015490565b610bca9190612235565b1115610c025760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610779565b60095460ff161515600114610c495760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610779565b60095460ff61010090910481169082161115610c995760405162461bcd60e51b815260206004820152600f60248201526e115e18d959590813585e08135a5b9d608a1b6044820152606401610779565b8060ff16600a54610caa919061224d565b341015610cee5760405162461bcd60e51b815260206004820152601260248201527115985b1d5948125b9cdd59999a58da595b9d60721b6044820152606401610779565b610cfb338260ff166117ab565b50565b60006001600160a01b038216610d6a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610779565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610db95760405162461bcd60e51b8152600401610779906121cf565b610dc360006117c9565b565b6064610dd060015490565b1115610e165760405162461bcd60e51b815260206004820152601560248201527446726565204d696e7420556e617661696c61626c6560581b6044820152606401610779565b60095460ff161515600114610e5d5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610779565b336000908152600c602052604090205460ff1615610ead5760405162461bcd60e51b815260206004820152600d60248201526c4e6f7420417661696c61626c6560981b6044820152606401610779565b610eb83360016117ab565b336000908152600c60205260409020805460ff19166001179055565b6000546001600160a01b03163314610efe5760405162461bcd60e51b8152600401610779906121cf565b4780610f375760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610779565b610cfb3347611819565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b8152600401610779906121cf565b600a55565b60606003805461068b90612194565b6001600160a01b038216331415610fd85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610779565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61104f84848461127c565b61105b848484846118ae565b6110775760405162461bcd60e51b81526004016107799061226c565b50505050565b606061108a826001541190565b6110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b60006110f86119ad565b905060008151116111185760405180602001604052806000815250611143565b80611122846119bc565b6040516020016111339291906122bf565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111745760405162461bcd60e51b8152600401610779906121cf565b6001600160a01b0381166111d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b610cfb816117c9565b6000546001600160a01b0316331461120c5760405162461bcd60e51b8152600401610779906121cf565b6009805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128782611602565b80519091506000906001600160a01b0316336001600160a01b031614806112be5750336112b38461070e565b6001600160a01b0316145b806112d0575081516112d0903361056e565b90508061133a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610779565b846001600160a01b031682600001516001600160a01b0316146113ae5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610779565b6001600160a01b0384166114125760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610779565b6114226000848460000151611220565b6001600160a01b03851660009081526005602052604081208054600192906114549084906001600160801b03166122ee565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926114a091859116612316565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611527846001612235565b6000818152600460205260409020549091506001600160a01b03166115b857611551816001541190565b156115b85760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611621826001541190565b6116805760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610779565b60007f000000000000000000000000000000000000000000000000000000000000000383106116e1576116d37f000000000000000000000000000000000000000000000000000000000000000384612338565b6116de906001612235565b90505b825b81811061174a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561173757949350505050565b50806117428161234f565b9150506116e3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610779565b6117c5828260405180602001604052806000815250611ab9565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50509050806108b15760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610779565b60006001600160a01b0384163b156119a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118f2903390899088908890600401612366565b6020604051808303816000875af192505050801561192d575060408051601f3d908101601f1916820190925261192a918101906123a3565b60015b611987573d80801561195b576040519150601f19603f3d011682016040523d82523d6000602084013e611960565b606091505b50805161197f5760405162461bcd60e51b81526004016107799061226c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a5565b5060015b949350505050565b6060600b805461068b90612194565b6060816119e05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0a57806119f48161221a565b9150611a039050600a836123d6565b91506119e4565b6000816001600160401b03811115611a2457611a24612070565b6040519080825280601f01601f191660200182016040528015611a4e576020820181803683370190505b5090505b84156119a557611a63600183612338565b9150611a70600a866123ea565b611a7b906030612235565b60f81b818381518110611a9057611a906123fe565b60200101906001600160f81b031916908160001a905350611ab2600a866123d6565b9450611a52565b6001546001600160a01b038416611b1c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610779565b611b27816001541190565b15611b745760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610779565b7f0000000000000000000000000000000000000000000000000000000000000003831115611bef5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610779565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c4b908790612316565b6001600160801b03168152602001858360200151611c699190612316565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d885760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d4c60008884886118ae565b611d685760405162461bcd60e51b81526004016107799061226c565b81611d728161221a565b9250508080611d809061221a565b915050611cff565b5060018190556115fa565b828054611d9f90612194565b90600052602060002090601f016020900481019282611dc15760008555611e07565b82601f10611dda5782800160ff19823516178555611e07565b82800160010185558215611e07579182015b82811115611e07578235825591602001919060010190611dec565b50610b549291505b80821115610b545760008155600101611e0f565b6001600160e01b031981168114610cfb57600080fd5b600060208284031215611e4b57600080fd5b813561114381611e23565b60005b83811015611e71578181015183820152602001611e59565b838111156110775750506000910152565b60008151808452611e9a816020860160208601611e56565b601f01601f19169290920160200192915050565b6020815260006111436020830184611e82565b600060208284031215611ed357600080fd5b5035919050565b80356001600160a01b0381168114611ef157600080fd5b919050565b60008060408385031215611f0957600080fd5b611f1283611eda565b946020939093013593505050565b600080600060608486031215611f3557600080fd5b611f3e84611eda565b9250611f4c60208501611eda565b9150604084013590509250925092565b600060208284031215611f6e57600080fd5b81356001600160401b038116811461114357600080fd5b600060208284031215611f9757600080fd5b813560ff8116811461114357600080fd5b60008060208385031215611fbb57600080fd5b82356001600160401b0380821115611fd257600080fd5b818501915085601f830112611fe657600080fd5b813581811115611ff557600080fd5b86602082850101111561200757600080fd5b60209290920196919550909350505050565b60006020828403121561202b57600080fd5b61114382611eda565b6000806040838503121561204757600080fd5b61205083611eda565b91506020830135801515811461206557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561209c57600080fd5b6120a585611eda565b93506120b360208601611eda565b92506040850135915060608501356001600160401b03808211156120d657600080fd5b818701915087601f8301126120ea57600080fd5b8135818111156120fc576120fc612070565b604051601f8201601f19908116603f0116810190838211818310171561212457612124612070565b816040528281528a602084870101111561213d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561217457600080fd5b61217d83611eda565b915061218b60208401611eda565b90509250929050565b600181811c908216806121a857607f821691505b602082108114156121c957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561222e5761222e612204565b5060010190565b6000821982111561224857612248612204565b500190565b600081600019048311821515161561226757612267612204565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516122d1818460208801611e56565b8351908301906122e5818360208801611e56565b01949350505050565b60006001600160801b038381169083168181101561230e5761230e612204565b039392505050565b60006001600160801b038083168185168083038211156122e5576122e5612204565b60008282101561234a5761234a612204565b500390565b60008161235e5761235e612204565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239990830184611e82565b9695505050505050565b6000602082840312156123b557600080fd5b815161114381611e23565b634e487b7160e01b600052601260045260246000fd5b6000826123e5576123e56123c0565b500490565b6000826123f9576123f96123c0565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201f1b1dba523d10da6688e07df8959dda498bc79dd8e18799a0728d1e11870bcc64736f6c634300080c0033

Deployed Bytecode Sourcemap

132:2112:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:370:3;;;;;;;;;;-1:-1:-1;3947:370:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3947:370:3;;;;;;;;5673:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7198:204::-;;;;;;;;;;-1:-1:-1;7198:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7198:204:3;1528:203:12;6761:379:3;;;;;;;;;;-1:-1:-1;6761:379:3;;;;;:::i;:::-;;:::i;:::-;;2508:94;;;;;;;;;;-1:-1:-1;2584:12:3;;2508:94;;;2319:25:12;;;2307:2;2292:18;2508:94:3;2173:177:12;8048:142:3;;;;;;;;;;-1:-1:-1;8048:142:3;;;;;:::i;:::-;;:::i;1370:91:9:-;;;;;;;;;;-1:-1:-1;1370:91:9;;;;;:::i;:::-;;:::i;3139:744:3:-;;;;;;;;;;-1:-1:-1;3139:744:3;;;;;:::i;:::-;;:::i;1467:94:9:-;;;;;;;;;;-1:-1:-1;1467:94:9;;;;;:::i;:::-;;:::i;8253:157:3:-;;;;;;;;;;-1:-1:-1;8253:157:3;;;;;:::i;:::-;;:::i;2671:177::-;;;;;;;;;;-1:-1:-1;2671:177:3;;;;;:::i;:::-;;:::i;1774:100:9:-;;;;;;;;;;-1:-1:-1;1774:100:9;;;;;:::i;:::-;;:::i;5496:118:3:-;;;;;;;;;;-1:-1:-1;5496:118:3;;;;;:::i;:::-;;:::i;214:34:9:-;;;;;;;;;;-1:-1:-1;214:34:9;;;;;;;;547:349;;;;;;:::i;:::-;;:::i;4373:211:3:-;;;;;;;;;;-1:-1:-1;4373:211:3;;;;;:::i;:::-;;:::i;1648:94:10:-;;;;;;;;;;;;;:::i;903:276:9:-;;;;;;;;;;;;;:::i;1880:184::-;;;;;;;;;;;;;:::i;997:87:10:-;;;;;;;;;;-1:-1:-1;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;997:87;;255:32:9;;;;;;;;;;-1:-1:-1;255:32:9;;;;;;;;;;;;;;4211:4:12;4199:17;;;4181:36;;4169:2;4154:18;255:32:9;4039:184:12;1567:83:9;;;;;;;;;;-1:-1:-1;1567:83:9;;;;;:::i;:::-;;:::i;5828:98:3:-;;;;;;;;;;;;;:::i;1188:83:9:-;;;;;;;;;;-1:-1:-1;1255:10:9;;1188:83;;7466:274:3;;;;;;;;;;-1:-1:-1;7466:274:3;;;;;:::i;:::-;;:::i;326:38:9:-;;;;;;;;;;;;;;;;8473:311:3;;;;;;;;;;-1:-1:-1;8473:311:3;;;;;:::i;:::-;;:::i;5989:394::-;;;;;;;;;;-1:-1:-1;5989:394:3;;;;;:::i;:::-;;:::i;7803:186::-;;;;;;;;;;-1:-1:-1;7803:186:3;;;;;:::i;:::-;-1:-1:-1;;;;;7948:25:3;;;7925:4;7948:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7803:186;292:29:9;;;;;;;;;;-1:-1:-1;292:29:9;;;;;;;-1:-1:-1;;;;;292:29:9;;;;;;-1:-1:-1;;;;;6282:31:12;;;6264:50;;6252:2;6237:18;292:29:9;6120:200:12;1897:192:10;;;;;;;;;;-1:-1:-1;1897:192:10;;;;;:::i;:::-;;:::i;1277:87:9:-;;;;;;;;;;;;;:::i;3947:370:3:-;4074:4;-1:-1:-1;;;;;;4104:40:3;;-1:-1:-1;;;4104:40:3;;:99;;-1:-1:-1;;;;;;;4155:48:3;;-1:-1:-1;;;4155:48:3;4104:99;:160;;;-1:-1:-1;;;;;;;4214:50:3;;-1:-1:-1;;;4214:50:3;4104:160;:207;;;-1:-1:-1;;;;;;;;;;961:40:2;;;4275:36:3;4090:221;3947:370;-1:-1:-1;;3947:370:3:o;5673:94::-;5727:13;5756:5;5749:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5673:94;:::o;7198:204::-;7266:7;7290:16;7298:7;9110:12;;-1:-1:-1;9100:22:3;9023:105;7290:16;7282:74;;;;-1:-1:-1;;;7282:74:3;;6912:2:12;7282:74:3;;;6894:21:12;6951:2;6931:18;;;6924:30;6990:34;6970:18;;;6963:62;-1:-1:-1;;;7041:18:12;;;7034:43;7094:19;;7282:74:3;;;;;;;;;-1:-1:-1;7372:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7372:24:3;;7198:204::o;6761:379::-;6830:13;6846:24;6862:7;6846:15;:24::i;:::-;6830:40;;6891:5;-1:-1:-1;;;;;6885:11:3;:2;-1:-1:-1;;;;;6885:11:3;;;6877:58;;;;-1:-1:-1;;;6877:58:3;;7326:2:12;6877:58:3;;;7308:21:12;7365:2;7345:18;;;7338:30;7404:34;7384:18;;;7377:62;-1:-1:-1;;;7455:18:12;;;7448:32;7497:19;;6877:58:3;7124:398:12;6877:58:3;736:10:1;-1:-1:-1;;;;;6960:21:3;;;;:62;;-1:-1:-1;6985:37:3;7002:5;736:10:1;7803:186:3;:::i;6985:37::-;6944:153;;;;-1:-1:-1;;;6944:153:3;;7729:2:12;6944:153:3;;;7711:21:12;7768:2;7748:18;;;7741:30;7807:34;7787:18;;;7780:62;7878:27;7858:18;;;7851:55;7923:19;;6944:153:3;7527:421:12;6944:153:3;7106:28;7115:2;7119:7;7128:5;7106:8;:28::i;:::-;6823:317;6761:379;;:::o;8048:142::-;8156:28;8166:4;8172:2;8176:7;8156:9;:28::i;1370:91:9:-;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1434:8:9::1;:21:::0;;-1:-1:-1;;;;;1434:21:9;;::::1;::::0;::::1;-1:-1:-1::0;;1434:21:9;;::::1;::::0;;;::::1;::::0;;1370:91::o;3139:744:3:-;3248:7;3283:16;3293:5;3283:9;:16::i;:::-;3275:5;:24;3267:71;;;;-1:-1:-1;;;3267:71:3;;8516:2:12;3267:71:3;;;8498:21:12;8555:2;8535:18;;;8528:30;8594:34;8574:18;;;8567:62;-1:-1:-1;;;8645:18:12;;;8638:32;8687:19;;3267:71:3;8314:398:12;3267:71:3;3345:22;3370:13;2584:12;;;2508:94;3370:13;3345:38;;3390:19;3420:25;3470:9;3465:350;3489:14;3485:1;:18;3465:350;;;3519:31;3553:14;;;:11;:14;;;;;;;;;3519:48;;;;;;;;;-1:-1:-1;;;;;3519:48:3;;;;;-1:-1:-1;;;3519:48:3;;;-1:-1:-1;;;;;3519:48:3;;;;;;;;3580:28;3576:89;;3641:14;;;-1:-1:-1;3576:89:3;3698:5;-1:-1:-1;;;;;3677:26:3;:17;-1:-1:-1;;;;;3677:26:3;;3673:135;;;3735:5;3720:11;:20;3716:59;;;-1:-1:-1;3762:1:3;-1:-1:-1;3755:8:3;;-1:-1:-1;;;3755:8:3;3716:59;3785:13;;;;:::i;:::-;;;;3673:135;-1:-1:-1;3505:3:3;;;;:::i;:::-;;;;3465:350;;;-1:-1:-1;3821:56:3;;-1:-1:-1;;;3821:56:3;;9191:2:12;3821:56:3;;;9173:21:12;9230:2;9210:18;;;9203:30;9269:34;9249:18;;;9242:62;-1:-1:-1;;;9320:18:12;;;9313:44;9374:19;;3821:56:3;8989:410:12;1467:94:9;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1530:15:9::1;:25:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;1530:25:9;;::::1;::::0;;;::::1;::::0;;1467:94::o;8253:157:3:-;8365:39;8382:4;8388:2;8392:7;8365:39;;;;;;;;;;;;:16;:39::i;2671:177::-;2738:7;2770:13;2584:12;;;2508:94;2770:13;2762:5;:21;2754:69;;;;-1:-1:-1;;;2754:69:3;;9606:2:12;2754:69:3;;;9588:21:12;9645:2;9625:18;;;9618:30;9684:34;9664:18;;;9657:62;-1:-1:-1;;;9735:18:12;;;9728:33;9778:19;;2754:69:3;9404:399:12;2754:69:3;-1:-1:-1;2837:5:3;2671:177::o;1774:100:9:-;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1845:23:9::1;:13;1861:7:::0;;1845:23:::1;:::i;5496:118:3:-:0;5560:7;5583:20;5595:7;5583:11;:20::i;:::-;:25;;5496:118;-1:-1:-1;;5496:118:3:o;547:349:9:-;636:8;;-1:-1:-1;;;;;636:8:9;;;;;608:24;;;:13;2584:12:3;;;2508:94;608:13:9;:24;;;;:::i;:::-;:36;;600:56;;;;-1:-1:-1;;;600:56:9;;10143:2:12;600:56:9;;;10125:21:12;10182:1;10162:18;;;10155:29;-1:-1:-1;;;10200:18:12;;;10193:37;10247:18;;600:56:9;9941:330:12;600:56:9;671:14;;;;:22;;:14;:22;663:48;;;;-1:-1:-1;;;663:48:9;;10478:2:12;663:48:9;;;10460:21:12;10517:2;10497:18;;;10490:30;-1:-1:-1;;;10536:18:12;;;10529:43;10589:18;;663:48:9;10276:337:12;663:48:9;738:15;;;;;;;;;726:27;;;;;718:55;;;;-1:-1:-1;;;718:55:9;;10820:2:12;718:55:9;;;10802:21:12;10859:2;10839:18;;;10832:30;-1:-1:-1;;;10878:18:12;;;10871:45;10933:18;;718:55:9;10618:339:12;718:55:9;815:8;802:21;;:10;;:21;;;;:::i;:::-;789:9;:34;;781:65;;;;-1:-1:-1;;;781:65:9;;11337:2:12;781:65:9;;;11319:21:12;11376:2;11356:18;;;11349:30;-1:-1:-1;;;11395:18:12;;;11388:48;11453:18;;781:65:9;11135:342:12;781:65:9;859:31;869:10;881:8;859:31;;:9;:31::i;:::-;547:349;:::o;4373:211:3:-;4437:7;-1:-1:-1;;;;;4461:19:3;;4453:75;;;;-1:-1:-1;;;4453:75:3;;11684:2:12;4453:75:3;;;11666:21:12;11723:2;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;-1:-1:-1;;;11813:18:12;;;11806:41;11864:19;;4453:75:3;11482:407:12;4453:75:3;-1:-1:-1;;;;;;4550:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4550:27:3;;4373:211::o;1648:94:10:-;1043:7;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;903:276:9:-;964:3;947:13;2584:12:3;;;2508:94;947:13:9;:20;;939:54;;;;-1:-1:-1;;;939:54:9;;12096:2:12;939:54:9;;;12078:21:12;12135:2;12115:18;;;12108:30;-1:-1:-1;;;12154:18:12;;;12147:51;12215:18;;939:54:9;11894:345:12;939:54:9;1008:14;;;;:22;;:14;:22;1000:48;;;;-1:-1:-1;;;1000:48:9;;10478:2:12;1000:48:9;;;10460:21:12;10517:2;10497:18;;;10490:30;-1:-1:-1;;;10536:18:12;;;10529:43;10589:18;;1000:48:9;10276:337:12;1000:48:9;1075:10;1064:22;;;;:10;:22;;;;;;;;1063:23;1055:49;;;;-1:-1:-1;;;1055:49:9;;12446:2:12;1055:49:9;;;12428:21:12;12485:2;12465:18;;;12458:30;-1:-1:-1;;;12504:18:12;;;12497:43;12557:18;;1055:49:9;12244:337:12;1055:49:9;1113:24;1123:10;1135:1;1113:9;:24::i;:::-;1155:10;1144:22;;;;:10;:22;;;;;:29;;-1:-1:-1;;1144:29:9;1169:4;1144:29;;;903:276::o;1880:184::-;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1947:21:9::1;1983:11:::0;1975:32:::1;;;::::0;-1:-1:-1;;;1975:32:9;;12788:2:12;1975:32:9::1;::::0;::::1;12770:21:12::0;12827:1;12807:18;;;12800:29;-1:-1:-1;;;12845:18:12;;;12838:38;12893:18;;1975:32:9::1;12586:331:12::0;1975:32:9::1;2014:44;2024:10;2036:21;2014:9;:44::i;1567:83::-:0;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1626:10:9::1;:18:::0;1567:83::o;5828:98:3:-;5884:13;5913:7;5906:14;;;;;:::i;7466:274::-;-1:-1:-1;;;;;7557:24:3;;736:10:1;7557:24:3;;7549:63;;;;-1:-1:-1;;;7549:63:3;;13124:2:12;7549:63:3;;;13106:21:12;13163:2;13143:18;;;13136:30;13202:28;13182:18;;;13175:56;13248:18;;7549:63:3;12922:350:12;7549:63:3;736:10:1;7621:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7621:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7621:53:3;;;;;;;;;;7686:48;;540:41:12;;;7621:42:3;;736:10:1;7686:48:3;;513:18:12;7686:48:3;;;;;;;7466:274;;:::o;8473:311::-;8610:28;8620:4;8626:2;8630:7;8610:9;:28::i;:::-;8661:48;8684:4;8690:2;8694:7;8703:5;8661:22;:48::i;:::-;8645:133;;;;-1:-1:-1;;;8645:133:3;;;;;;;:::i;:::-;8473:311;;;;:::o;5989:394::-;6087:13;6128:16;6136:7;9110:12;;-1:-1:-1;9100:22:3;9023:105;6128:16;6112:97;;;;-1:-1:-1;;;6112:97:3;;13899:2:12;6112:97:3;;;13881:21:12;13938:2;13918:18;;;13911:30;13977:34;13957:18;;;13950:62;-1:-1:-1;;;14028:18:12;;;14021:45;14083:19;;6112:97:3;13697:411:12;6112:97:3;6218:21;6242:10;:8;:10::i;:::-;6218:34;;6297:1;6279:7;6273:21;:25;:104;;;;;;;;;;;;;;;;;6334:7;6343:18;:7;:16;:18::i;:::-;6317:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6273:104;6259:118;5989:394;-1:-1:-1;;;5989:394:3:o;1897:192:10:-;1043:7;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1986:22:10;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:10;;14790:2:12;1978:73:10::1;::::0;::::1;14772:21:12::0;14829:2;14809:18;;;14802:30;14868:34;14848:18;;;14841:62;-1:-1:-1;;;14919:18:12;;;14912:36;14965:19;;1978:73:10::1;14588:402:12::0;1978:73:10::1;2062:19;2072:8;2062:9;:19::i;1277:87:9:-:0;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;736:10:1;1217:23:10;1209:68;;;;-1:-1:-1;;;1209:68:10;;;;;;;:::i;:::-;1344:14:9::1;::::0;;-1:-1:-1;;1326:32:9;::::1;1344:14;::::0;;::::1;1343:15;1326:32;::::0;;1277:87::o;12710:172:3:-;12807:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12807:29:3;-1:-1:-1;;;;;12807:29:3;;;;;;;;;12848:28;;12807:24;;12848:28;;;;;;;12710:172;;;:::o;11075:1529::-;11172:35;11210:20;11222:7;11210:11;:20::i;:::-;11281:18;;11172:58;;-1:-1:-1;11239:22:3;;-1:-1:-1;;;;;11265:34:3;736:10:1;-1:-1:-1;;;;;11265:34:3;;:81;;;-1:-1:-1;736:10:1;11310:20:3;11322:7;11310:11;:20::i;:::-;-1:-1:-1;;;;;11310:36:3;;11265:81;:142;;;-1:-1:-1;11374:18:3;;11357:50;;736:10:1;7803:186:3;:::i;11357:50::-;11239:169;;11433:17;11417:101;;;;-1:-1:-1;;;11417:101:3;;15197:2:12;11417:101:3;;;15179:21:12;15236:2;15216:18;;;15209:30;15275:34;15255:18;;;15248:62;-1:-1:-1;;;15326:18:12;;;15319:48;15384:19;;11417:101:3;14995:414:12;11417:101:3;11565:4;-1:-1:-1;;;;;11543:26:3;:13;:18;;;-1:-1:-1;;;;;11543:26:3;;11527:98;;;;-1:-1:-1;;;11527:98:3;;15616:2:12;11527:98:3;;;15598:21:12;15655:2;15635:18;;;15628:30;15694:34;15674:18;;;15667:62;-1:-1:-1;;;15745:18:12;;;15738:36;15791:19;;11527:98:3;15414:402:12;11527:98:3;-1:-1:-1;;;;;11640:16:3;;11632:66;;;;-1:-1:-1;;;11632:66:3;;16023:2:12;11632:66:3;;;16005:21:12;16062:2;16042:18;;;16035:30;16101:34;16081:18;;;16074:62;-1:-1:-1;;;16152:18:12;;;16145:35;16197:19;;11632:66:3;15821:401:12;11632:66:3;11807:49;11824:1;11828:7;11837:13;:18;;;11807:8;:49::i;:::-;-1:-1:-1;;;;;11865:18:3;;;;;;:12;:18;;;;;:31;;11895:1;;11865:18;:31;;11895:1;;-1:-1:-1;;;;;11865:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11865:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11903:16:3;;-1:-1:-1;11903:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11903:16:3;;:29;;-1:-1:-1;;11903:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11903:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11962:43:3;;;;;;;;-1:-1:-1;;;;;11962:43:3;;;;;-1:-1:-1;;;;;11988:15:3;11962:43;;;;;;;;;-1:-1:-1;11939:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11939:66:3;-1:-1:-1;;;;;;11939:66:3;;;;;;;;;;;12255:11;11951:7;-1:-1:-1;12255:11:3;:::i;:::-;12318:1;12277:24;;;:11;:24;;;;;:29;12233:33;;-1:-1:-1;;;;;;12277:29:3;12273:236;;12335:20;12343:11;9110:12;;-1:-1:-1;9100:22:3;9023:105;12335:20;12331:171;;;12395:97;;;;;;;;12422:18;;-1:-1:-1;;;;;12395:97:3;;;;;;12453:28;;;;-1:-1:-1;;;;;12395:97:3;;;;;;;;;-1:-1:-1;12368:24:3;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;12368:124:3;-1:-1:-1;;;;;;12368:124:3;;;;;;;;;;;;12331:171;12541:7;12537:2;-1:-1:-1;;;;;12522:27:3;12531:4;-1:-1:-1;;;;;12522:27:3;;;;;;;;;;;12556:42;11165:1439;;;11075:1529;;;:::o;4836:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;4953:16:3;4961:7;9110:12;;-1:-1:-1;9100:22:3;9023:105;4953:16;4945:71;;;;-1:-1:-1;;;4945:71:3;;16938:2:12;4945:71:3;;;16920:21:12;16977:2;16957:18;;;16950:30;17016:34;16996:18;;;16989:62;-1:-1:-1;;;17067:18:12;;;17060:40;17117:19;;4945:71:3;16736:406:12;4945:71:3;5025:26;5073:12;5062:7;:23;5058:93;;5117:22;5127:12;5117:7;:22;:::i;:::-;:26;;5142:1;5117:26;:::i;:::-;5096:47;;5058:93;5179:7;5159:212;5196:18;5188:4;:26;5159:212;;5233:31;5267:17;;;:11;:17;;;;;;;;;5233:51;;;;;;;;;-1:-1:-1;;;;;5233:51:3;;;;;-1:-1:-1;;;5233:51:3;;;-1:-1:-1;;;;;5233:51:3;;;;;;;;5297:28;5293:71;;5345:9;4836:606;-1:-1:-1;;;;4836:606:3:o;5293:71::-;-1:-1:-1;5216:6:3;;;;:::i;:::-;;;;5159:212;;;-1:-1:-1;5379:57:3;;-1:-1:-1;;;5379:57:3;;17620:2:12;5379:57:3;;;17602:21:12;17659:2;17639:18;;;17632:30;17698:34;17678:18;;;17671:62;-1:-1:-1;;;17749:18:12;;;17742:45;17804:19;;5379:57:3;17418:411:12;9134:98:3;9199:27;9209:2;9213:8;9199:27;;;;;;;;;;;;:9;:27::i;:::-;9134:98;;:::o;2097:173:10:-;2153:16;2172:6;;-1:-1:-1;;;;;2189:17:10;;;-1:-1:-1;;;;;;2189:17:10;;;;;;2222:40;;2172:6;;;;;;;2222:40;;2153:16;2222:40;2142:128;2097:173;:::o;2070:171:9:-;2140:12;2158:8;-1:-1:-1;;;;;2158:13:9;2180:7;2158:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2139:54;;;2208:7;2200:35;;;;-1:-1:-1;;;2200:35:9;;18246:2:12;2200:35:9;;;18228:21:12;18285:2;18265:18;;;18258:30;-1:-1:-1;;;18304:18:12;;;18297:45;18359:18;;2200:35:9;18044:339:12;14426:690:3;14563:4;-1:-1:-1;;;;;14580:13:3;;1120:20:0;1168:8;14576:535:3;;14619:72;;-1:-1:-1;;;14619:72:3;;-1:-1:-1;;;;;14619:36:3;;;;;:72;;736:10:1;;14670:4:3;;14676:7;;14685:5;;14619:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14619:72:3;;;;;;;;-1:-1:-1;;14619:72:3;;;;;;;;;;;;:::i;:::-;;;14606:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14850:13:3;;14846:215;;14883:61;;-1:-1:-1;;;14883:61:3;;;;;;;:::i;14846:215::-;15029:6;15023:13;15014:6;15010:2;15006:15;14999:38;14606:464;-1:-1:-1;;;;;;14741:55:3;-1:-1:-1;;;14741:55:3;;-1:-1:-1;14734:62:3;;14576:535;-1:-1:-1;15099:4:3;14576:535;14426:690;;;;;;:::o;1658:108:9:-;1718:13;1747;1740:20;;;;;:::i;342:723:11:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:11;;;;;;;;;;;;-1:-1:-1;;;646:10:11;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:11;;-1:-1:-1;798:2:11;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:11;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:11;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:11;;;;;;;;-1:-1:-1;1003:11:11;1012:2;1003:11;;:::i;:::-;;;872:154;;9571:1272:3;9699:12;;-1:-1:-1;;;;;9726:16:3;;9718:62;;;;-1:-1:-1;;;9718:62:3;;19844:2:12;9718:62:3;;;19826:21:12;19883:2;19863:18;;;19856:30;19922:34;19902:18;;;19895:62;-1:-1:-1;;;19973:18:12;;;19966:31;20014:19;;9718:62:3;19642:397:12;9718:62:3;9917:21;9925:12;9110;;-1:-1:-1;9100:22:3;9023:105;9917:21;9916:22;9908:64;;;;-1:-1:-1;;;9908:64:3;;20246:2:12;9908:64:3;;;20228:21:12;20285:2;20265:18;;;20258:30;20324:31;20304:18;;;20297:59;20373:18;;9908:64:3;20044:353:12;9908:64:3;9999:12;9987:8;:24;;9979:71;;;;-1:-1:-1;;;9979:71:3;;20604:2:12;9979:71:3;;;20586:21:12;20643:2;20623:18;;;20616:30;20682:34;20662:18;;;20655:62;-1:-1:-1;;;20733:18:12;;;20726:32;20775:19;;9979:71:3;20402:398:12;9979:71:3;-1:-1:-1;;;;;10162:16:3;;10129:30;10162:16;;;:12;:16;;;;;;;;;10129:49;;;;;;;;;-1:-1:-1;;;;;10129:49:3;;;;;-1:-1:-1;;;10129:49:3;;;;;;;;;;;10204:119;;;;;;;;10224:19;;10129:49;;10204:119;;;10224:39;;10254:8;;10224:39;:::i;:::-;-1:-1:-1;;;;;10204:119:3;;;;;10307:8;10272:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10204:119:3;;;;;;-1:-1:-1;;;;;10185:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;10185:138:3;;;;;;;;;;;;10358:43;;;;;;;;;;-1:-1:-1;;;;;10384:15:3;10358:43;;;;;;;;10330:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10330:71:3;-1:-1:-1;;;;;;10330:71:3;;;;;;;;;;;;;;;;;;10342:12;;10454:281;10478:8;10474:1;:12;10454:281;;;10507:38;;10532:12;;-1:-1:-1;;;;;10507:38:3;;;10524:1;;10507:38;;10524:1;;10507:38;10572:59;10603:1;10607:2;10611:12;10625:5;10572:22;:59::i;:::-;10554:150;;;;-1:-1:-1;;;10554:150:3;;;;;;;:::i;:::-;10713:14;;;;:::i;:::-;;;;10488:3;;;;;:::i;:::-;;;;10454:281;;;-1:-1:-1;10743:12:3;:27;;;10777:60;8473:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:12;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:12;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:12:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:12;;1343:180;-1:-1:-1;1343:180:12:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:12;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:12:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:284::-;2746:6;2799:2;2787:9;2778:7;2774:23;2770:32;2767:52;;;2815:1;2812;2805:12;2767:52;2854:9;2841:23;-1:-1:-1;;;;;2897:5:12;2893:30;2886:5;2883:41;2873:69;;2938:1;2935;2928:12;2977:269;3034:6;3087:2;3075:9;3066:7;3062:23;3058:32;3055:52;;;3103:1;3100;3093:12;3055:52;3142:9;3129:23;3192:4;3185:5;3181:16;3174:5;3171:27;3161:55;;3212:1;3209;3202:12;3251:592;3322:6;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3439:9;3426:23;-1:-1:-1;;;;;3509:2:12;3501:6;3498:14;3495:34;;;3525:1;3522;3515:12;3495:34;3563:6;3552:9;3548:22;3538:32;;3608:7;3601:4;3597:2;3593:13;3589:27;3579:55;;3630:1;3627;3620:12;3579:55;3670:2;3657:16;3696:2;3688:6;3685:14;3682:34;;;3712:1;3709;3702:12;3682:34;3757:7;3752:2;3743:6;3739:2;3735:15;3731:24;3728:37;3725:57;;;3778:1;3775;3768:12;3725:57;3809:2;3801:11;;;;;3831:6;;-1:-1:-1;3251:592:12;;-1:-1:-1;;;;3251:592:12:o;3848:186::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:29;4018:9;3999:29;:::i;4228:347::-;4293:6;4301;4354:2;4342:9;4333:7;4329:23;4325:32;4322:52;;;4370:1;4367;4360:12;4322:52;4393:29;4412:9;4393:29;:::i;:::-;4383:39;;4472:2;4461:9;4457:18;4444:32;4519:5;4512:13;4505:21;4498:5;4495:32;4485:60;;4541:1;4538;4531:12;4485:60;4564:5;4554:15;;;4228:347;;;;;:::o;4580:127::-;4641:10;4636:3;4632:20;4629:1;4622:31;4672:4;4669:1;4662:15;4696:4;4693:1;4686:15;4712:1138;4807:6;4815;4823;4831;4884:3;4872:9;4863:7;4859:23;4855:33;4852:53;;;4901:1;4898;4891:12;4852:53;4924:29;4943:9;4924:29;:::i;:::-;4914:39;;4972:38;5006:2;4995:9;4991:18;4972:38;:::i;:::-;4962:48;;5057:2;5046:9;5042:18;5029:32;5019:42;;5112:2;5101:9;5097:18;5084:32;-1:-1:-1;;;;;5176:2:12;5168:6;5165:14;5162:34;;;5192:1;5189;5182:12;5162:34;5230:6;5219:9;5215:22;5205:32;;5275:7;5268:4;5264:2;5260:13;5256:27;5246:55;;5297:1;5294;5287:12;5246:55;5333:2;5320:16;5355:2;5351;5348:10;5345:36;;;5361:18;;:::i;:::-;5436:2;5430:9;5404:2;5490:13;;-1:-1:-1;;5486:22:12;;;5510:2;5482:31;5478:40;5466:53;;;5534:18;;;5554:22;;;5531:46;5528:72;;;5580:18;;:::i;:::-;5620:10;5616:2;5609:22;5655:2;5647:6;5640:18;5695:7;5690:2;5685;5681;5677:11;5673:20;5670:33;5667:53;;;5716:1;5713;5706:12;5667:53;5772:2;5767;5763;5759:11;5754:2;5746:6;5742:15;5729:46;5817:1;5812:2;5807;5799:6;5795:15;5791:24;5784:35;5838:6;5828:16;;;;;;;4712:1138;;;;;;;:::o;5855:260::-;5923:6;5931;5984:2;5972:9;5963:7;5959:23;5955:32;5952:52;;;6000:1;5997;5990:12;5952:52;6023:29;6042:9;6023:29;:::i;:::-;6013:39;;6071:38;6105:2;6094:9;6090:18;6071:38;:::i;:::-;6061:48;;5855:260;;;;;:::o;6325:380::-;6404:1;6400:12;;;;6447;;;6468:61;;6522:4;6514:6;6510:17;6500:27;;6468:61;6575:2;6567:6;6564:14;6544:18;6541:38;6538:161;;;6621:10;6616:3;6612:20;6609:1;6602:31;6656:4;6653:1;6646:15;6684:4;6681:1;6674:15;6538:161;;6325:380;;;:::o;7953:356::-;8155:2;8137:21;;;8174:18;;;8167:30;8233:34;8228:2;8213:18;;8206:62;8300:2;8285:18;;7953:356::o;8717:127::-;8778:10;8773:3;8769:20;8766:1;8759:31;8809:4;8806:1;8799:15;8833:4;8830:1;8823:15;8849:135;8888:3;-1:-1:-1;;8909:17:12;;8906:43;;;8929:18;;:::i;:::-;-1:-1:-1;8976:1:12;8965:13;;8849:135::o;9808:128::-;9848:3;9879:1;9875:6;9872:1;9869:13;9866:39;;;9885:18;;:::i;:::-;-1:-1:-1;9921:9:12;;9808:128::o;10962:168::-;11002:7;11068:1;11064;11060:6;11056:14;11053:1;11050:21;11045:1;11038:9;11031:17;11027:45;11024:71;;;11075:18;;:::i;:::-;-1:-1:-1;11115:9:12;;10962:168::o;13277:415::-;13479:2;13461:21;;;13518:2;13498:18;;;13491:30;13557:34;13552:2;13537:18;;13530:62;-1:-1:-1;;;13623:2:12;13608:18;;13601:49;13682:3;13667:19;;13277:415::o;14113:470::-;14292:3;14330:6;14324:13;14346:53;14392:6;14387:3;14380:4;14372:6;14368:17;14346:53;:::i;:::-;14462:13;;14421:16;;;;14484:57;14462:13;14421:16;14518:4;14506:17;;14484:57;:::i;:::-;14557:20;;14113:470;-1:-1:-1;;;;14113:470:12:o;16227:246::-;16267:4;-1:-1:-1;;;;;16380:10:12;;;;16350;;16402:12;;;16399:38;;;16417:18;;:::i;:::-;16454:13;;16227:246;-1:-1:-1;;;16227:246:12:o;16478:253::-;16518:3;-1:-1:-1;;;;;16607:2:12;16604:1;16600:10;16637:2;16634:1;16630:10;16668:3;16664:2;16660:12;16655:3;16652:21;16649:47;;;16676:18;;:::i;17147:125::-;17187:4;17215:1;17212;17209:8;17206:34;;;17220:18;;:::i;:::-;-1:-1:-1;17257:9:12;;17147:125::o;17277:136::-;17316:3;17344:5;17334:39;;17353:18;;:::i;:::-;-1:-1:-1;;;17389:18:12;;17277:136::o;18388:489::-;-1:-1:-1;;;;;18657:15:12;;;18639:34;;18709:15;;18704:2;18689:18;;18682:43;18756:2;18741:18;;18734:34;;;18804:3;18799:2;18784:18;;18777:31;;;18582:4;;18825:46;;18851:19;;18843:6;18825:46;:::i;:::-;18817:54;18388:489;-1:-1:-1;;;;;;18388:489:12:o;18882:249::-;18951:6;19004:2;18992:9;18983:7;18979:23;18975:32;18972:52;;;19020:1;19017;19010:12;18972:52;19052:9;19046:16;19071:30;19095:5;19071:30;:::i;19136:127::-;19197:10;19192:3;19188:20;19185:1;19178:31;19228:4;19225:1;19218:15;19252:4;19249:1;19242:15;19268:120;19308:1;19334;19324:35;;19339:18;;:::i;:::-;-1:-1:-1;19373:9:12;;19268:120::o;19393:112::-;19425:1;19451;19441:35;;19456:18;;:::i;:::-;-1:-1:-1;19490:9:12;;19393:112::o;19510:127::-;19571:10;19566:3;19562:20;19559:1;19552:31;19602:4;19599:1;19592:15;19626:4;19623:1;19616:15

Swarm Source

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