ETH Price: $3,282.52 (+1.12%)
Gas: 11 Gwei

Token

HighGas (HGAS)
 

Overview

Max Total Supply

1,420 HGAS

Holders

559

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xjpeg.eth
Balance
5 HGAS
0x0e90618baaa3b593adc21111c550d5750144adb2
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:
HighGas

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract HighGas is Ownable , ERC721A { 
  using Strings for uint256;

  bool public hasMintStarted = false;

  uint8 public FREE_QTY = 5;
  uint8 public MAX_MINT_PER_TX = 50;
  uint64 public MAX_HighGas = 10420;
  uint256 public Mint_Price = 0.01 ether;
  string private _baseTokenURI = "ipfs://Qme43wERM79oKQmj6zTNVbj8oTANuzm1tCwr3WMfHaBS9r/";

  mapping(address => uint8) private FreeMinted;

  constructor() 
  ERC721A("HighGas", "HGAS" , MAX_MINT_PER_TX, MAX_HighGas) { 
  }

  function mint(uint8 quantity) public payable { 
    require(totalSupply() + quantity <= MAX_HighGas, "Soldout");
    require(hasMintStarted == true, "Mint not live");
    if (totalSupply() < 420) {
      require(quantity <= FREE_QTY, "Exceed Free Max Mint");
      require(FreeMinted[msg.sender] + quantity <= FREE_QTY, "Exceed Free Max Limit");
      _safeMint(msg.sender, quantity);
      FreeMinted[msg.sender] += quantity;
    } else
    {
      require(quantity <= MAX_MINT_PER_TX, "Exceed Max Mint"); 
      require(msg.value >= Mint_Price * quantity, "Value Insufficient");
      _safeMint(msg.sender, quantity);
    }
  }
    
  function FlipMintState() public onlyOwner {
    hasMintStarted = !hasMintStarted;
  }

  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 setSupply(uint64 mintSupply) external onlyOwner {
    MAX_HighGas = mintSupply;
  }

  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 = 1;

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

  /**
   * @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(), ".json"))
        : "";
  }

  /**
   * @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 6 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 7 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 8 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 9 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 10 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":"FREE_QTY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FlipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_HighGas","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"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":"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"}]

600180556000600855600980546001600160581b0319166428b4320500179055662386f26fc10000600a55610120604052603660c081815290620027e160e03980516200005591600b916020909101906200022c565b503480156200006357600080fd5b5060408051808201825260078152664869676847617360c81b602080830191909152825180840190935260048352634847415360e01b9083015260095490919062010000810460ff1690630100000090046001600160401b0316620000cf620000c93390565b620001dc565b600081116200013c5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200019e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000133565b8351620001b39060029060208701906200022c565b508251620001c99060039060208601906200022c565b5060a091909152608052506200030e9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023a90620002d2565b90600052602060002090601f0160209004810192826200025e5760008555620002a9565b82601f106200027957805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a95782518255916020019190600101906200028c565b50620002b7929150620002bb565b5090565b5b80821115620002b75760008155600101620002bc565b600181811c90821680620002e757607f821691505b6020821081036200030857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124a26200033f6000396000818161169b015281816116c50152611b930152600050506124a26000f3fe6080604052600436106101d85760003560e01c806367768ceb1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610561578063e985e9c514610581578063f2fde38b146105ca578063fe43973f146105ea57600080fd5b806395d89b41146104f6578063a22cb4651461050b578063b7e7da6a1461052b578063b88d4fde1461054157600080fd5b8063853828b6116100d1578063853828b6146104835780638da5cb5b146104985780638ecad721146104b657806391b7f5ed146104d657600080fd5b806367768ceb146104215780636ecd23061461043b57806370a082311461044e578063715018a61461046e57600080fd5b80632b01e4fa1161017a57806342842e0e1161014957806342842e0e146103a15780634f6ccce7146103c157806355f804b3146103e15780636352211e1461040157600080fd5b80632b01e4fa146103025780632f745c5914610322578063307ace0a1461034257806330985c9c1461038157600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780631549b8e71461028e57806318160ddd146102bf57806323b872dd146102e257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e56565b6105ff565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761066c565b6040516102099190611ecb565b34801561024057600080fd5b5061025461024f366004611ede565b6106fe565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611f13565b61078e565b005b34801561029a57600080fd5b506009546102ad90610100900460ff1681565b60405160ff9091168152602001610209565b3480156102cb57600080fd5b506102d46108a5565b604051908152602001610209565b3480156102ee57600080fd5b5061028c6102fd366004611f3d565b6108ba565b34801561030e57600080fd5b5061028c61031d366004611f79565b6108c5565b34801561032e57600080fd5b506102d461033d366004611f13565b61091c565b34801561034e57600080fd5b5060095461036990630100000090046001600160401b031681565b6040516001600160401b039091168152602001610209565b34801561038d57600080fd5b5061028c61039c366004611fa2565b610a91565b3480156103ad57600080fd5b5061028c6103bc366004611f3d565b610ad9565b3480156103cd57600080fd5b506102d46103dc366004611ede565b610af4565b3480156103ed57600080fd5b5061028c6103fc366004611fc5565b610b5c565b34801561040d57600080fd5b5061025461041c366004611ede565b610b92565b34801561042d57600080fd5b506009546101fd9060ff1681565b61028c610449366004611fa2565b610ba4565b34801561045a57600080fd5b506102d4610469366004612036565b610e25565b34801561047a57600080fd5b5061028c610eb6565b34801561048f57600080fd5b5061028c610eec565b3480156104a457600080fd5b506000546001600160a01b0316610254565b3480156104c257600080fd5b506009546102ad9062010000900460ff1681565b3480156104e257600080fd5b5061028c6104f1366004611ede565b610f59565b34801561050257600080fd5b50610227610f88565b34801561051757600080fd5b5061028c610526366004612051565b610f97565b34801561053757600080fd5b506102d4600a5481565b34801561054d57600080fd5b5061028c61055c3660046120a3565b61105b565b34801561056d57600080fd5b5061022761057c366004611ede565b611094565b34801561058d57600080fd5b506101fd61059c36600461217e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b5061028c6105e5366004612036565b611161565b3480156105f657600080fd5b5061028c6111f9565b60006001600160e01b031982166380ac58cd60e01b148061063057506001600160e01b03198216635b5e139f60e01b145b8061064b57506001600160e01b0319821663780e9d6360e01b145b8061066657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461067b906121b1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906121b1565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b600061070b826001541190565b6107725760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079982610b92565b9050806001600160a01b0316836001600160a01b0316036108075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610769565b336001600160a01b03821614806108235750610823813361059c565b6108955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610769565b6108a0838383611237565b505050565b6000600180546108b59190612201565b905090565b6108a0838383611293565b6000546001600160a01b031633146108ef5760405162461bcd60e51b815260040161076990612218565b600980546001600160401b039092166301000000026affffffffffffffff00000019909216919091179055565b600061092783610e25565b82106109805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610769565b600061098a6108a5565b905060008060005b83811015610a31576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109e457805192505b876001600160a01b0316836001600160a01b031603610a1e57868403610a105750935061066692505050565b83610a1a8161224d565b9450505b5080610a298161224d565b915050610992565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610769565b6000546001600160a01b03163314610abb5760405162461bcd60e51b815260040161076990612218565b6009805460ff909216620100000262ff000019909216919091179055565b6108a08383836040518060200160405280600081525061105b565b6000610afe6108a5565b8210610b585760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610769565b5090565b6000546001600160a01b03163314610b865760405162461bcd60e51b815260040161076990612218565b6108a0600b8383611db0565b6000610b9d82611619565b5192915050565b600954630100000090046001600160401b031660ff8216610bc36108a5565b610bcd9190612266565b1115610c055760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610769565b60095460ff161515600114610c4c5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610769565b6101a4610c576108a5565b1015610d6f5760095460ff61010090910481169082161115610cb25760405162461bcd60e51b8152602060048201526014602482015273115e18d9595908119c99594813585e08135a5b9d60621b6044820152606401610769565b600954336000908152600c602052604090205460ff610100909204821691610cdc9184911661227e565b60ff161115610d255760405162461bcd60e51b8152602060048201526015602482015274115e18d9595908119c99594813585e08131a5b5a5d605a1b6044820152606401610769565b610d32338260ff166117c2565b336000908152600c602052604081208054839290610d5490849060ff1661227e565b92506101000a81548160ff021916908360ff16021790555050565b60095460ff6201000090910481169082161115610dc05760405162461bcd60e51b815260206004820152600f60248201526e115e18d959590813585e08135a5b9d608a1b6044820152606401610769565b8060ff16600a54610dd191906122a3565b341015610e155760405162461bcd60e51b815260206004820152601260248201527115985b1d5948125b9cdd59999a58da595b9d60721b6044820152606401610769565b610e22338260ff166117c2565b50565b60006001600160a01b038216610e915760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610769565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610ee05760405162461bcd60e51b815260040161076990612218565b610eea60006117e0565b565b6000546001600160a01b03163314610f165760405162461bcd60e51b815260040161076990612218565b4780610f4f5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610769565b610e223347611830565b6000546001600160a01b03163314610f835760405162461bcd60e51b815260040161076990612218565b600a55565b60606003805461067b906121b1565b336001600160a01b03831603610fef5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610769565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611066848484611293565b611072848484846118c5565b61108e5760405162461bcd60e51b8152600401610769906122c2565b50505050565b60606110a1826001541190565b6111055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b600061110f6119c7565b9050600081511161112f576040518060200160405280600081525061115a565b80611139846119d6565b60405160200161114a929190612315565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461118b5760405162461bcd60e51b815260040161076990612218565b6001600160a01b0381166111f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610e22816117e0565b6000546001600160a01b031633146112235760405162461bcd60e51b815260040161076990612218565b6009805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061129e82611619565b80519091506000906001600160a01b0316336001600160a01b031614806112d55750336112ca846106fe565b6001600160a01b0316145b806112e7575081516112e7903361059c565b9050806113515760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610769565b846001600160a01b031682600001516001600160a01b0316146113c55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610769565b6001600160a01b0384166114295760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610769565b6114396000848460000151611237565b6001600160a01b038516600090815260056020526040812080546001929061146b9084906001600160801b0316612354565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926114b79185911661237c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561153e846001612266565b6000818152600460205260409020549091506001600160a01b03166115cf57611568816001541190565b156115cf5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611638826001541190565b6116975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610769565b60007f000000000000000000000000000000000000000000000000000000000000000083106116f8576116ea7f000000000000000000000000000000000000000000000000000000000000000084612201565b6116f5906001612266565b90505b825b818110611761576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561174e57949350505050565b5080611759816123a7565b9150506116fa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610769565b6117dc828260405180602001604052806000815250611ad6565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b50509050806108a05760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610769565b60006001600160a01b0384163b156119bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119099033908990889088906004016123be565b6020604051808303816000875af1925050508015611944575060408051601f3d908101601f19168201909252611941918101906123fb565b60015b6119a1573d808015611972576040519150601f19603f3d011682016040523d82523d6000602084013e611977565b606091505b5080516000036119995760405162461bcd60e51b8152600401610769906122c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119bf565b5060015b949350505050565b6060600b805461067b906121b1565b6060816000036119fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a275780611a118161224d565b9150611a209050600a8361242e565b9150611a01565b6000816001600160401b03811115611a4157611a4161208d565b6040519080825280601f01601f191660200182016040528015611a6b576020820181803683370190505b5090505b84156119bf57611a80600183612201565b9150611a8d600a86612442565b611a98906030612266565b60f81b818381518110611aad57611aad612456565b60200101906001600160f81b031916908160001a905350611acf600a8661242e565b9450611a6f565b6001546001600160a01b038416611b395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610769565b611b44816001541190565b15611b915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610769565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c0c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610769565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c6890879061237c565b6001600160801b03168152602001858360200151611c86919061237c565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611da55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d6960008884886118c5565b611d855760405162461bcd60e51b8152600401610769906122c2565b81611d8f8161224d565b9250508080611d9d9061224d565b915050611d1c565b506001819055611611565b828054611dbc906121b1565b90600052602060002090601f016020900481019282611dde5760008555611e24565b82601f10611df75782800160ff19823516178555611e24565b82800160010185558215611e24579182015b82811115611e24578235825591602001919060010190611e09565b50610b589291505b80821115610b585760008155600101611e2c565b6001600160e01b031981168114610e2257600080fd5b600060208284031215611e6857600080fd5b813561115a81611e40565b60005b83811015611e8e578181015183820152602001611e76565b8381111561108e5750506000910152565b60008151808452611eb7816020860160208601611e73565b601f01601f19169290920160200192915050565b60208152600061115a6020830184611e9f565b600060208284031215611ef057600080fd5b5035919050565b80356001600160a01b0381168114611f0e57600080fd5b919050565b60008060408385031215611f2657600080fd5b611f2f83611ef7565b946020939093013593505050565b600080600060608486031215611f5257600080fd5b611f5b84611ef7565b9250611f6960208501611ef7565b9150604084013590509250925092565b600060208284031215611f8b57600080fd5b81356001600160401b038116811461115a57600080fd5b600060208284031215611fb457600080fd5b813560ff8116811461115a57600080fd5b60008060208385031215611fd857600080fd5b82356001600160401b0380821115611fef57600080fd5b818501915085601f83011261200357600080fd5b81358181111561201257600080fd5b86602082850101111561202457600080fd5b60209290920196919550909350505050565b60006020828403121561204857600080fd5b61115a82611ef7565b6000806040838503121561206457600080fd5b61206d83611ef7565b91506020830135801515811461208257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156120b957600080fd5b6120c285611ef7565b93506120d060208601611ef7565b92506040850135915060608501356001600160401b03808211156120f357600080fd5b818701915087601f83011261210757600080fd5b8135818111156121195761211961208d565b604051601f8201601f19908116603f011681019083821181831017156121415761214161208d565b816040528281528a602084870101111561215a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561219157600080fd5b61219a83611ef7565b91506121a860208401611ef7565b90509250929050565b600181811c908216806121c557607f821691505b6020821081036121e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612213576122136121eb565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001820161225f5761225f6121eb565b5060010190565b60008219821115612279576122796121eb565b500190565b600060ff821660ff84168060ff0382111561229b5761229b6121eb565b019392505050565b60008160001904831182151516156122bd576122bd6121eb565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612327818460208801611e73565b83519083019061233b818360208801611e73565b64173539b7b760d91b9101908152600501949350505050565b60006001600160801b0383811690831681811015612374576123746121eb565b039392505050565b60006001600160801b0380831681851680830382111561239e5761239e6121eb565b01949350505050565b6000816123b6576123b66121eb565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f190830184611e9f565b9695505050505050565b60006020828403121561240d57600080fd5b815161115a81611e40565b634e487b7160e01b600052601260045260246000fd5b60008261243d5761243d612418565b500490565b60008261245157612451612418565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122040044a98ad89053b93cfdddef520b5ca1f352d65906be45c22006c8fbff18a1964736f6c634300080d0033697066733a2f2f516d6534337745524d37396f4b516d6a367a544e56626a386f54414e757a6d317443777233574d664861425339722f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806367768ceb1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610561578063e985e9c514610581578063f2fde38b146105ca578063fe43973f146105ea57600080fd5b806395d89b41146104f6578063a22cb4651461050b578063b7e7da6a1461052b578063b88d4fde1461054157600080fd5b8063853828b6116100d1578063853828b6146104835780638da5cb5b146104985780638ecad721146104b657806391b7f5ed146104d657600080fd5b806367768ceb146104215780636ecd23061461043b57806370a082311461044e578063715018a61461046e57600080fd5b80632b01e4fa1161017a57806342842e0e1161014957806342842e0e146103a15780634f6ccce7146103c157806355f804b3146103e15780636352211e1461040157600080fd5b80632b01e4fa146103025780632f745c5914610322578063307ace0a1461034257806330985c9c1461038157600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780631549b8e71461028e57806318160ddd146102bf57806323b872dd146102e257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611e56565b6105ff565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761066c565b6040516102099190611ecb565b34801561024057600080fd5b5061025461024f366004611ede565b6106fe565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611f13565b61078e565b005b34801561029a57600080fd5b506009546102ad90610100900460ff1681565b60405160ff9091168152602001610209565b3480156102cb57600080fd5b506102d46108a5565b604051908152602001610209565b3480156102ee57600080fd5b5061028c6102fd366004611f3d565b6108ba565b34801561030e57600080fd5b5061028c61031d366004611f79565b6108c5565b34801561032e57600080fd5b506102d461033d366004611f13565b61091c565b34801561034e57600080fd5b5060095461036990630100000090046001600160401b031681565b6040516001600160401b039091168152602001610209565b34801561038d57600080fd5b5061028c61039c366004611fa2565b610a91565b3480156103ad57600080fd5b5061028c6103bc366004611f3d565b610ad9565b3480156103cd57600080fd5b506102d46103dc366004611ede565b610af4565b3480156103ed57600080fd5b5061028c6103fc366004611fc5565b610b5c565b34801561040d57600080fd5b5061025461041c366004611ede565b610b92565b34801561042d57600080fd5b506009546101fd9060ff1681565b61028c610449366004611fa2565b610ba4565b34801561045a57600080fd5b506102d4610469366004612036565b610e25565b34801561047a57600080fd5b5061028c610eb6565b34801561048f57600080fd5b5061028c610eec565b3480156104a457600080fd5b506000546001600160a01b0316610254565b3480156104c257600080fd5b506009546102ad9062010000900460ff1681565b3480156104e257600080fd5b5061028c6104f1366004611ede565b610f59565b34801561050257600080fd5b50610227610f88565b34801561051757600080fd5b5061028c610526366004612051565b610f97565b34801561053757600080fd5b506102d4600a5481565b34801561054d57600080fd5b5061028c61055c3660046120a3565b61105b565b34801561056d57600080fd5b5061022761057c366004611ede565b611094565b34801561058d57600080fd5b506101fd61059c36600461217e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b5061028c6105e5366004612036565b611161565b3480156105f657600080fd5b5061028c6111f9565b60006001600160e01b031982166380ac58cd60e01b148061063057506001600160e01b03198216635b5e139f60e01b145b8061064b57506001600160e01b0319821663780e9d6360e01b145b8061066657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461067b906121b1565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906121b1565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b600061070b826001541190565b6107725760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079982610b92565b9050806001600160a01b0316836001600160a01b0316036108075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610769565b336001600160a01b03821614806108235750610823813361059c565b6108955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610769565b6108a0838383611237565b505050565b6000600180546108b59190612201565b905090565b6108a0838383611293565b6000546001600160a01b031633146108ef5760405162461bcd60e51b815260040161076990612218565b600980546001600160401b039092166301000000026affffffffffffffff00000019909216919091179055565b600061092783610e25565b82106109805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610769565b600061098a6108a5565b905060008060005b83811015610a31576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156109e457805192505b876001600160a01b0316836001600160a01b031603610a1e57868403610a105750935061066692505050565b83610a1a8161224d565b9450505b5080610a298161224d565b915050610992565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610769565b6000546001600160a01b03163314610abb5760405162461bcd60e51b815260040161076990612218565b6009805460ff909216620100000262ff000019909216919091179055565b6108a08383836040518060200160405280600081525061105b565b6000610afe6108a5565b8210610b585760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610769565b5090565b6000546001600160a01b03163314610b865760405162461bcd60e51b815260040161076990612218565b6108a0600b8383611db0565b6000610b9d82611619565b5192915050565b600954630100000090046001600160401b031660ff8216610bc36108a5565b610bcd9190612266565b1115610c055760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610769565b60095460ff161515600114610c4c5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206e6f74206c69766560981b6044820152606401610769565b6101a4610c576108a5565b1015610d6f5760095460ff61010090910481169082161115610cb25760405162461bcd60e51b8152602060048201526014602482015273115e18d9595908119c99594813585e08135a5b9d60621b6044820152606401610769565b600954336000908152600c602052604090205460ff610100909204821691610cdc9184911661227e565b60ff161115610d255760405162461bcd60e51b8152602060048201526015602482015274115e18d9595908119c99594813585e08131a5b5a5d605a1b6044820152606401610769565b610d32338260ff166117c2565b336000908152600c602052604081208054839290610d5490849060ff1661227e565b92506101000a81548160ff021916908360ff16021790555050565b60095460ff6201000090910481169082161115610dc05760405162461bcd60e51b815260206004820152600f60248201526e115e18d959590813585e08135a5b9d608a1b6044820152606401610769565b8060ff16600a54610dd191906122a3565b341015610e155760405162461bcd60e51b815260206004820152601260248201527115985b1d5948125b9cdd59999a58da595b9d60721b6044820152606401610769565b610e22338260ff166117c2565b50565b60006001600160a01b038216610e915760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610769565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610ee05760405162461bcd60e51b815260040161076990612218565b610eea60006117e0565b565b6000546001600160a01b03163314610f165760405162461bcd60e51b815260040161076990612218565b4780610f4f5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610769565b610e223347611830565b6000546001600160a01b03163314610f835760405162461bcd60e51b815260040161076990612218565b600a55565b60606003805461067b906121b1565b336001600160a01b03831603610fef5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610769565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611066848484611293565b611072848484846118c5565b61108e5760405162461bcd60e51b8152600401610769906122c2565b50505050565b60606110a1826001541190565b6111055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b600061110f6119c7565b9050600081511161112f576040518060200160405280600081525061115a565b80611139846119d6565b60405160200161114a929190612315565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461118b5760405162461bcd60e51b815260040161076990612218565b6001600160a01b0381166111f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610e22816117e0565b6000546001600160a01b031633146112235760405162461bcd60e51b815260040161076990612218565b6009805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061129e82611619565b80519091506000906001600160a01b0316336001600160a01b031614806112d55750336112ca846106fe565b6001600160a01b0316145b806112e7575081516112e7903361059c565b9050806113515760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610769565b846001600160a01b031682600001516001600160a01b0316146113c55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610769565b6001600160a01b0384166114295760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610769565b6114396000848460000151611237565b6001600160a01b038516600090815260056020526040812080546001929061146b9084906001600160801b0316612354565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926114b79185911661237c565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561153e846001612266565b6000818152600460205260409020549091506001600160a01b03166115cf57611568816001541190565b156115cf5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611638826001541190565b6116975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610769565b60007f000000000000000000000000000000000000000000000000000000000000003283106116f8576116ea7f000000000000000000000000000000000000000000000000000000000000003284612201565b6116f5906001612266565b90505b825b818110611761576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561174e57949350505050565b5080611759816123a7565b9150506116fa565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610769565b6117dc828260405180602001604052806000815250611ad6565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b50509050806108a05760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610769565b60006001600160a01b0384163b156119bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119099033908990889088906004016123be565b6020604051808303816000875af1925050508015611944575060408051601f3d908101601f19168201909252611941918101906123fb565b60015b6119a1573d808015611972576040519150601f19603f3d011682016040523d82523d6000602084013e611977565b606091505b5080516000036119995760405162461bcd60e51b8152600401610769906122c2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119bf565b5060015b949350505050565b6060600b805461067b906121b1565b6060816000036119fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a275780611a118161224d565b9150611a209050600a8361242e565b9150611a01565b6000816001600160401b03811115611a4157611a4161208d565b6040519080825280601f01601f191660200182016040528015611a6b576020820181803683370190505b5090505b84156119bf57611a80600183612201565b9150611a8d600a86612442565b611a98906030612266565b60f81b818381518110611aad57611aad612456565b60200101906001600160f81b031916908160001a905350611acf600a8661242e565b9450611a6f565b6001546001600160a01b038416611b395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610769565b611b44816001541190565b15611b915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610769565b7f0000000000000000000000000000000000000000000000000000000000000032831115611c0c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610769565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c6890879061237c565b6001600160801b03168152602001858360200151611c86919061237c565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611da55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d6960008884886118c5565b611d855760405162461bcd60e51b8152600401610769906122c2565b81611d8f8161224d565b9250508080611d9d9061224d565b915050611d1c565b506001819055611611565b828054611dbc906121b1565b90600052602060002090601f016020900481019282611dde5760008555611e24565b82601f10611df75782800160ff19823516178555611e24565b82800160010185558215611e24579182015b82811115611e24578235825591602001919060010190611e09565b50610b589291505b80821115610b585760008155600101611e2c565b6001600160e01b031981168114610e2257600080fd5b600060208284031215611e6857600080fd5b813561115a81611e40565b60005b83811015611e8e578181015183820152602001611e76565b8381111561108e5750506000910152565b60008151808452611eb7816020860160208601611e73565b601f01601f19169290920160200192915050565b60208152600061115a6020830184611e9f565b600060208284031215611ef057600080fd5b5035919050565b80356001600160a01b0381168114611f0e57600080fd5b919050565b60008060408385031215611f2657600080fd5b611f2f83611ef7565b946020939093013593505050565b600080600060608486031215611f5257600080fd5b611f5b84611ef7565b9250611f6960208501611ef7565b9150604084013590509250925092565b600060208284031215611f8b57600080fd5b81356001600160401b038116811461115a57600080fd5b600060208284031215611fb457600080fd5b813560ff8116811461115a57600080fd5b60008060208385031215611fd857600080fd5b82356001600160401b0380821115611fef57600080fd5b818501915085601f83011261200357600080fd5b81358181111561201257600080fd5b86602082850101111561202457600080fd5b60209290920196919550909350505050565b60006020828403121561204857600080fd5b61115a82611ef7565b6000806040838503121561206457600080fd5b61206d83611ef7565b91506020830135801515811461208257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156120b957600080fd5b6120c285611ef7565b93506120d060208601611ef7565b92506040850135915060608501356001600160401b03808211156120f357600080fd5b818701915087601f83011261210757600080fd5b8135818111156121195761211961208d565b604051601f8201601f19908116603f011681019083821181831017156121415761214161208d565b816040528281528a602084870101111561215a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561219157600080fd5b61219a83611ef7565b91506121a860208401611ef7565b90509250929050565b600181811c908216806121c557607f821691505b6020821081036121e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612213576122136121eb565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001820161225f5761225f6121eb565b5060010190565b60008219821115612279576122796121eb565b500190565b600060ff821660ff84168060ff0382111561229b5761229b6121eb565b019392505050565b60008160001904831182151516156122bd576122bd6121eb565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612327818460208801611e73565b83519083019061233b818360208801611e73565b64173539b7b760d91b9101908152600501949350505050565b60006001600160801b0383811690831681811015612374576123746121eb565b039392505050565b60006001600160801b0380831681851680830382111561239e5761239e6121eb565b01949350505050565b6000816123b6576123b66121eb565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f190830184611e9f565b9695505050505050565b60006020828403121561240d57600080fd5b815161115a81611e40565b634e487b7160e01b600052601260045260246000fd5b60008261243d5761243d612418565b500490565b60008261245157612451612418565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122040044a98ad89053b93cfdddef520b5ca1f352d65906be45c22006c8fbff18a1964736f6c634300080d0033

Deployed Bytecode Sourcemap

132:2123:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3951:370:3;;;;;;;;;;-1:-1:-1;3951:370:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;3951:370:3;;;;;;;;5677:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7211:204::-;;;;;;;;;;-1:-1:-1;7211:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:12;;;1674:51;;1662:2;1647:18;7211:204:3;1528:203:12;6774:379:3;;;;;;;;;;-1:-1:-1;6774:379:3;;;;;:::i;:::-;;:::i;:::-;;249:25:4;;;;;;;;;;-1:-1:-1;249:25:4;;;;;;;;;;;;;;2345:4:12;2333:17;;;2315:36;;2303:2;2288:18;249:25:4;2173:184:12;2508:98:3;;;;;;;;;;;;;:::i;:::-;;;:25:12;;;2496:2;2481:18;2508:98:3;2362:177:12;8061:142:3;;;;;;;;;;-1:-1:-1;8061:142:3;;;;;:::i;:::-;;:::i;1791:94:4:-;;;;;;;;;;-1:-1:-1;1791:94:4;;;;;:::i;:::-;;:::i;3143:744:3:-;;;;;;;;;;-1:-1:-1;3143:744:3;;;;;:::i;:::-;;:::i;317:33:4:-;;;;;;;;;;-1:-1:-1;317:33:4;;;;;;;-1:-1:-1;;;;;317:33:4;;;;;;-1:-1:-1;;;;;3328:31:12;;;3310:50;;3298:2;3283:18;317:33:4;3166:200:12;1378:94:4;;;;;;;;;;-1:-1:-1;1378:94:4;;;;;:::i;:::-;;:::i;8266:157:3:-;;;;;;;;;;-1:-1:-1;8266:157:3;;;;;:::i;:::-;;:::i;2675:177::-;;;;;;;;;;-1:-1:-1;2675:177:3;;;;;:::i;:::-;;:::i;1685:100:4:-;;;;;;;;;;-1:-1:-1;1685:100:4;;;;;:::i;:::-;;:::i;5500:118:3:-;;;;;;;;;;-1:-1:-1;5500:118:3;;;;;:::i;:::-;;:::i;208:34:4:-;;;;;;;;;;-1:-1:-1;208:34:4;;;;;;;;632:643;;;;;;:::i;:::-;;:::i;4377:211:3:-;;;;;;;;;;-1:-1:-1;4377:211:3;;;;;:::i;:::-;;:::i;1648:94:10:-;;;;;;;;;;;;;:::i;1891:184:4:-;;;;;;;;;;;;;:::i;997:87:10:-;;;;;;;;;;-1:-1:-1;1043:7:10;1070:6;-1:-1:-1;;;;;1070:6:10;997:87;;279:33:4;;;;;;;;;;-1:-1:-1;279:33:4;;;;;;;;;;;1478:83;;;;;;;;;;-1:-1:-1;1478:83:4;;;;;:::i;:::-;;:::i;5832:98:3:-;;;;;;;;;;;;;:::i;7479:274::-;;;;;;;;;;-1:-1:-1;7479:274:3;;;;;:::i;:::-;;:::i;355:38:4:-;;;;;;;;;;;;;;;;8486:311:3;;;;;;;;;;-1:-1:-1;8486:311:3;;;;;:::i;:::-;;:::i;5993:403::-;;;;;;;;;;-1:-1:-1;5993:403:3;;;;;:::i;:::-;;:::i;7816:186::-;;;;;;;;;;-1:-1:-1;7816:186:3;;;;;:::i;:::-;-1:-1:-1;;;;;7961:25:3;;;7938:4;7961:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7816:186;1897:192:10;;;;;;;;;;-1:-1:-1;1897:192:10;;;;;:::i;:::-;;:::i;1285:87:4:-;;;;;;;;;;;;;:::i;3951:370:3:-;4078:4;-1:-1:-1;;;;;;4108:40:3;;-1:-1:-1;;;4108:40:3;;:99;;-1:-1:-1;;;;;;;4159:48:3;;-1:-1:-1;;;4159:48:3;4108:99;:160;;;-1:-1:-1;;;;;;;4218:50:3;;-1:-1:-1;;;4218:50:3;4108:160;:207;;;-1:-1:-1;;;;;;;;;;961:40:2;;;4279:36:3;4094:221;3951:370;-1:-1:-1;;3951:370:3:o;5677:94::-;5731:13;5760:5;5753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5677:94;:::o;7211:204::-;7279:7;7303:16;7311:7;9123:12;;-1:-1:-1;9113:22:3;9036:105;7303:16;7295:74;;;;-1:-1:-1;;;7295:74:3;;6912:2:12;7295: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;;7295:74:3;;;;;;;;;-1:-1:-1;7385:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7385:24:3;;7211:204::o;6774:379::-;6843:13;6859:24;6875:7;6859:15;:24::i;:::-;6843:40;;6904:5;-1:-1:-1;;;;;6898:11:3;:2;-1:-1:-1;;;;;6898:11:3;;6890:58;;;;-1:-1:-1;;;6890:58:3;;7326:2:12;6890: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;;6890:58:3;7124:398:12;6890:58:3;736:10:1;-1:-1:-1;;;;;6973:21:3;;;;:62;;-1:-1:-1;6998:37:3;7015:5;736:10:1;7816:186:3;:::i;6998:37::-;6957:153;;;;-1:-1:-1;;;6957:153:3;;7729:2:12;6957: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;;6957:153:3;7527:421:12;6957:153:3;7119:28;7128:2;7132:7;7141:5;7119:8;:28::i;:::-;6836:317;6774:379;;:::o;2508:98::-;2561:7;2599:1;2584:12;;:16;;;;:::i;:::-;2577:23;;2508:98;:::o;8061:142::-;8169:28;8179:4;8185:2;8189:7;8169:9;:28::i;1791:94:4:-;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;:::-;1855:11:4::1;:24:::0;;-1:-1:-1;;;;;1855:24:4;;::::1;::::0;::::1;-1:-1:-1::0;;1855:24:4;;::::1;::::0;;;::::1;::::0;;1791:94::o;3143:744:3:-;3252:7;3287:16;3297:5;3287:9;:16::i;:::-;3279:5;:24;3271:71;;;;-1:-1:-1;;;3271:71:3;;8778:2:12;3271:71:3;;;8760:21:12;8817:2;8797:18;;;8790:30;8856:34;8836:18;;;8829:62;-1:-1:-1;;;8907:18:12;;;8900:32;8949:19;;3271:71:3;8576:398:12;3271:71:3;3349:22;3374:13;:11;:13::i;:::-;3349:38;;3394:19;3424:25;3474:9;3469:350;3493:14;3489:1;:18;3469:350;;;3523:31;3557:14;;;:11;:14;;;;;;;;;3523:48;;;;;;;;;-1:-1:-1;;;;;3523:48:3;;;;;-1:-1:-1;;;3523:48:3;;;-1:-1:-1;;;;;3523:48:3;;;;;;;;3584:28;3580:89;;3645:14;;;-1:-1:-1;3580:89:3;3702:5;-1:-1:-1;;;;;3681:26:3;:17;-1:-1:-1;;;;;3681:26:3;;3677:135;;3739:5;3724:11;:20;3720:59;;-1:-1:-1;3766:1:3;-1:-1:-1;3759:8:3;;-1:-1:-1;;;3759:8:3;3720:59;3789:13;;;;:::i;:::-;;;;3677:135;-1:-1:-1;3509:3:3;;;;:::i;:::-;;;;3469:350;;;-1:-1:-1;3825:56:3;;-1:-1:-1;;;3825:56:3;;9321:2:12;3825:56:3;;;9303:21:12;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;-1:-1:-1;;;9450:18:12;;;9443:44;9504:19;;3825:56:3;9119:410:12;1378:94:4;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;:::-;1441:15:4::1;:25:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;1441:25:4;;::::1;::::0;;;::::1;::::0;;1378:94::o;8266:157:3:-;8378:39;8395:4;8401:2;8405:7;8378:39;;;;;;;;;;;;:16;:39::i;2675:177::-;2742:7;2774:13;:11;:13::i;:::-;2766:5;:21;2758:69;;;;-1:-1:-1;;;2758:69:3;;9736:2:12;2758:69:3;;;9718:21:12;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:12;;;9858:33;9908:19;;2758:69:3;9534:399:12;2758:69:3;-1:-1:-1;2841:5:3;2675:177::o;1685:100:4:-;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;:::-;1756:23:4::1;:13;1772:7:::0;;1756:23:::1;:::i;5500:118:3:-:0;5564:7;5587:20;5599:7;5587:11;:20::i;:::-;:25;;5500:118;-1:-1:-1;;5500:118:3:o;632:643:4:-;721:11;;;;;-1:-1:-1;;;;;721:11:4;693:24;;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:39;;685:59;;;;-1:-1:-1;;;685:59:4;;10273:2:12;685:59:4;;;10255:21:12;10312:1;10292:18;;;10285:29;-1:-1:-1;;;10330:18:12;;;10323:37;10377:18;;685:59:4;10071:330:12;685:59:4;759:14;;;;:22;;:14;:22;751:48;;;;-1:-1:-1;;;751:48:4;;10608:2:12;751:48:4;;;10590:21:12;10647:2;10627:18;;;10620:30;-1:-1:-1;;;10666:18:12;;;10659:43;10719:18;;751:48:4;10406:337:12;751:48:4;826:3;810:13;:11;:13::i;:::-;:19;806:464;;;860:8;;;;;;;;;848:20;;;;;840:53;;;;-1:-1:-1;;;840:53:4;;10950:2:12;840:53:4;;;10932:21:12;10989:2;10969:18;;;10962:30;-1:-1:-1;;;11008:18:12;;;11001:50;11068:18;;840:53:4;10748:344:12;840:53:4;947:8;;921:10;910:22;;;;:10;:22;;;;;;947:8;;;;;;;;910:33;;935:8;;910:22;:33;:::i;:::-;:45;;;;902:79;;;;-1:-1:-1;;;902:79:4;;11508:2:12;902:79:4;;;11490:21:12;11547:2;11527:18;;;11520:30;-1:-1:-1;;;11566:18:12;;;11559:51;11627:18;;902:79:4;11306:345:12;902:79:4;990:31;1000:10;1012:8;990:31;;:9;:31::i;:::-;1041:10;1030:22;;;;:10;:22;;;;;:34;;1056:8;;1030:22;:34;;1056:8;;1030:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;632:643;:::o;806:464::-;1112:15;;;;;;;;;1100:27;;;;;1092:55;;;;-1:-1:-1;;;1092:55:4;;11858:2:12;1092:55:4;;;11840:21:12;11897:2;11877:18;;;11870:30;-1:-1:-1;;;11916:18:12;;;11909:45;11971:18;;1092:55:4;11656:339:12;1092:55:4;1191:8;1178:21;;:10;;:21;;;;:::i;:::-;1165:9;:34;;1157:65;;;;-1:-1:-1;;;1157:65:4;;12375:2:12;1157:65:4;;;12357:21:12;12414:2;12394:18;;;12387:30;-1:-1:-1;;;12433:18:12;;;12426:48;12491:18;;1157:65:4;12173:342:12;1157:65:4;1231:31;1241:10;1253:8;1231:31;;:9;:31::i;:::-;632:643;:::o;4377:211:3:-;4441:7;-1:-1:-1;;;;;4465:19:3;;4457:75;;;;-1:-1:-1;;;4457:75:3;;12722:2:12;4457:75:3;;;12704:21:12;12761:2;12741:18;;;12734:30;12800:34;12780:18;;;12773:62;-1:-1:-1;;;12851:18:12;;;12844:41;12902:19;;4457:75:3;12520:407:12;4457:75:3;-1:-1:-1;;;;;;4554:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4554:27:3;;4377: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;1891:184:4:-;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;:::-;1958:21:4::1;1994:11:::0;1986:32:::1;;;::::0;-1:-1:-1;;;1986:32:4;;13134:2:12;1986:32:4::1;::::0;::::1;13116:21:12::0;13173:1;13153:18;;;13146:29;-1:-1:-1;;;13191:18:12;;;13184:38;13239:18;;1986:32:4::1;12932:331:12::0;1986:32:4::1;2025:44;2035:10;2047:21;2025:9;:44::i;1478: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;:::-;1537:10:4::1;:18:::0;1478:83::o;5832:98:3:-;5888:13;5917:7;5910:14;;;;;:::i;7479:274::-;736:10:1;-1:-1:-1;;;;;7570:24:3;;;7562:63;;;;-1:-1:-1;;;7562:63:3;;13470:2:12;7562:63:3;;;13452:21:12;13509:2;13489:18;;;13482:30;13548:28;13528:18;;;13521:56;13594:18;;7562:63:3;13268:350:12;7562:63:3;736:10:1;7634:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7634:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7634:53:3;;;;;;;;;;7699:48;;540:41:12;;;7634:42:3;;736:10:1;7699:48:3;;513:18:12;7699:48:3;;;;;;;7479:274;;:::o;8486:311::-;8623:28;8633:4;8639:2;8643:7;8623:9;:28::i;:::-;8674:48;8697:4;8703:2;8707:7;8716:5;8674:22;:48::i;:::-;8658:133;;;;-1:-1:-1;;;8658:133:3;;;;;;;:::i;:::-;8486:311;;;;:::o;5993:403::-;6091:13;6132:16;6140:7;9123:12;;-1:-1:-1;9113:22:3;9036:105;6132:16;6116:97;;;;-1:-1:-1;;;6116:97:3;;14245:2:12;6116:97:3;;;14227:21:12;14284:2;14264:18;;;14257:30;14323:34;14303:18;;;14296:62;-1:-1:-1;;;14374:18:12;;;14367:45;14429:19;;6116:97:3;14043:411:12;6116:97:3;6222:21;6246:10;:8;:10::i;:::-;6222:34;;6301:1;6283:7;6277:21;:25;:113;;;;;;;;;;;;;;;;;6338:7;6347:18;:7;:16;:18::i;:::-;6321:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6277:113;6263:127;5993:403;-1:-1:-1;;;5993:403: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;;15303:2:12;1978:73:10::1;::::0;::::1;15285:21:12::0;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:12;;;15425:36;15478:19;;1978:73:10::1;15101:402:12::0;1978:73:10::1;2062:19;2072:8;2062:9;:19::i;1285:87:4:-: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;:::-;1352:14:4::1;::::0;;-1:-1:-1;;1334:32:4;::::1;1352:14;::::0;;::::1;1351:15;1334:32;::::0;;1285:87::o;12723:172:3:-;12820:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12820:29:3;-1:-1:-1;;;;;12820:29:3;;;;;;;;;12861:28;;12820:24;;12861:28;;;;;;;12723:172;;;:::o;11088:1529::-;11185:35;11223:20;11235:7;11223:11;:20::i;:::-;11294:18;;11185:58;;-1:-1:-1;11252:22:3;;-1:-1:-1;;;;;11278:34:3;736:10:1;-1:-1:-1;;;;;11278:34:3;;:81;;;-1:-1:-1;736:10:1;11323:20:3;11335:7;11323:11;:20::i;:::-;-1:-1:-1;;;;;11323:36:3;;11278:81;:142;;;-1:-1:-1;11387:18:3;;11370:50;;736:10:1;7816:186:3;:::i;11370:50::-;11252:169;;11446:17;11430:101;;;;-1:-1:-1;;;11430:101:3;;15710:2:12;11430:101:3;;;15692:21:12;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:12;;;15832:48;15897:19;;11430:101:3;15508:414:12;11430:101:3;11578:4;-1:-1:-1;;;;;11556:26:3;:13;:18;;;-1:-1:-1;;;;;11556:26:3;;11540:98;;;;-1:-1:-1;;;11540:98:3;;16129:2:12;11540:98:3;;;16111:21:12;16168:2;16148:18;;;16141:30;16207:34;16187:18;;;16180:62;-1:-1:-1;;;16258:18:12;;;16251:36;16304:19;;11540:98:3;15927:402:12;11540:98:3;-1:-1:-1;;;;;11653:16:3;;11645:66;;;;-1:-1:-1;;;11645:66:3;;16536:2:12;11645:66:3;;;16518:21:12;16575:2;16555:18;;;16548:30;16614:34;16594:18;;;16587:62;-1:-1:-1;;;16665:18:12;;;16658:35;16710:19;;11645:66:3;16334:401:12;11645:66:3;11820:49;11837:1;11841:7;11850:13;:18;;;11820:8;:49::i;:::-;-1:-1:-1;;;;;11878:18:3;;;;;;:12;:18;;;;;:31;;11908:1;;11878:18;:31;;11908:1;;-1:-1:-1;;;;;11878:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11878:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11916:16:3;;-1:-1:-1;11916:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11916:16:3;;:29;;-1:-1:-1;;11916:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11916:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11975:43:3;;;;;;;;-1:-1:-1;;;;;11975:43:3;;;;;-1:-1:-1;;;;;12001:15:3;11975:43;;;;;;;;;-1:-1:-1;11952:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11952:66:3;-1:-1:-1;;;;;;11952:66:3;;;;;;;;;;;12268:11;11964:7;-1:-1:-1;12268:11:3;:::i;:::-;12331:1;12290:24;;;:11;:24;;;;;:29;12246:33;;-1:-1:-1;;;;;;12290:29:3;12286:236;;12348:20;12356:11;9123:12;;-1:-1:-1;9113:22:3;9036:105;12348:20;12344:171;;;12408:97;;;;;;;;12435:18;;-1:-1:-1;;;;;12408:97:3;;;;;;12466:28;;;;-1:-1:-1;;;;;12408:97:3;;;;;;;;;-1:-1:-1;12381:24:3;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;12381:124:3;-1:-1:-1;;;;;;12381:124:3;;;;;;;;;;;;12344:171;12554:7;12550:2;-1:-1:-1;;;;;12535:27:3;12544:4;-1:-1:-1;;;;;12535:27:3;;;;;;;;;;;12569:42;11178:1439;;;11088:1529;;;:::o;4840:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;4957:16:3;4965:7;9123:12;;-1:-1:-1;9113:22:3;9036:105;4957:16;4949:71;;;;-1:-1:-1;;;4949:71:3;;17451:2:12;4949:71:3;;;17433:21:12;17490:2;17470:18;;;17463:30;17529:34;17509:18;;;17502:62;-1:-1:-1;;;17580:18:12;;;17573:40;17630:19;;4949:71:3;17249:406:12;4949:71:3;5029:26;5077:12;5066:7;:23;5062:93;;5121:22;5131:12;5121:7;:22;:::i;:::-;:26;;5146:1;5121:26;:::i;:::-;5100:47;;5062:93;5183:7;5163:212;5200:18;5192:4;:26;5163:212;;5237:31;5271:17;;;:11;:17;;;;;;;;;5237:51;;;;;;;;;-1:-1:-1;;;;;5237:51:3;;;;;-1:-1:-1;;;5237:51:3;;;-1:-1:-1;;;;;5237:51:3;;;;;;;;5301:28;5297:71;;5349:9;4840:606;-1:-1:-1;;;;4840:606:3:o;5297:71::-;-1:-1:-1;5220:6:3;;;;:::i;:::-;;;;5163:212;;;-1:-1:-1;5383:57:3;;-1:-1:-1;;;5383:57:3;;18003:2:12;5383:57:3;;;17985:21:12;18042:2;18022:18;;;18015:30;18081:34;18061:18;;;18054:62;-1:-1:-1;;;18132:18:12;;;18125:45;18187:19;;5383:57:3;17801:411:12;9147:98:3;9212:27;9222:2;9226:8;9212:27;;;;;;;;;;;;:9;:27::i;:::-;9147: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;2081:171:4:-;2151:12;2169:8;-1:-1:-1;;;;;2169:13:4;2191:7;2169:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2150:54;;;2219:7;2211:35;;;;-1:-1:-1;;;2211:35:4;;18629:2:12;2211:35:4;;;18611:21:12;18668:2;18648:18;;;18641:30;-1:-1:-1;;;18687:18:12;;;18680:45;18742:18;;2211:35:4;18427:339:12;14439:690:3;14576:4;-1:-1:-1;;;;;14593:13:3;;1120:20:0;1168:8;14589:535:3;;14632:72;;-1:-1:-1;;;14632:72:3;;-1:-1:-1;;;;;14632:36:3;;;;;:72;;736:10:1;;14683:4:3;;14689:7;;14698:5;;14632:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14632:72:3;;;;;;;;-1:-1:-1;;14632:72:3;;;;;;;;;;;;:::i;:::-;;;14619:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14863:6;:13;14880:1;14863:18;14859:215;;14896:61;;-1:-1:-1;;;14896:61:3;;;;;;;:::i;14859:215::-;15042:6;15036:13;15027:6;15023:2;15019:15;15012:38;14619:464;-1:-1:-1;;;;;;14754:55:3;-1:-1:-1;;;14754:55:3;;-1:-1:-1;14747:62:3;;14589:535;-1:-1:-1;15112:4:3;14589:535;14439:690;;;;;;:::o;1569:108:4:-;1629:13;1658;1651:20;;;;;:::i;342:723:11:-;398:13;619:5;628:1;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;;9584:1272:3;9712:12;;-1:-1:-1;;;;;9739:16:3;;9731:62;;;;-1:-1:-1;;;9731:62:3;;20227:2:12;9731:62:3;;;20209:21:12;20266:2;20246:18;;;20239:30;20305:34;20285:18;;;20278:62;-1:-1:-1;;;20356:18:12;;;20349:31;20397:19;;9731:62:3;20025:397:12;9731:62:3;9930:21;9938:12;9123;;-1:-1:-1;9113:22:3;9036:105;9930:21;9929:22;9921:64;;;;-1:-1:-1;;;9921:64:3;;20629:2:12;9921:64:3;;;20611:21:12;20668:2;20648:18;;;20641:30;20707:31;20687:18;;;20680:59;20756:18;;9921:64:3;20427:353:12;9921:64:3;10012:12;10000:8;:24;;9992:71;;;;-1:-1:-1;;;9992:71:3;;20987:2:12;9992:71:3;;;20969:21:12;21026:2;21006:18;;;20999:30;21065:34;21045:18;;;21038:62;-1:-1:-1;;;21116:18:12;;;21109:32;21158:19;;9992:71:3;20785:398:12;9992:71:3;-1:-1:-1;;;;;10175:16:3;;10142:30;10175:16;;;:12;:16;;;;;;;;;10142:49;;;;;;;;;-1:-1:-1;;;;;10142:49:3;;;;;-1:-1:-1;;;10142:49:3;;;;;;;;;;;10217:119;;;;;;;;10237:19;;10142:49;;10217:119;;;10237:39;;10267:8;;10237:39;:::i;:::-;-1:-1:-1;;;;;10217:119:3;;;;;10320:8;10285:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10217:119:3;;;;;;-1:-1:-1;;;;;10198:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;10198:138:3;;;;;;;;;;;;10371:43;;;;;;;;;;-1:-1:-1;;;;;10397:15:3;10371:43;;;;;;;;10343:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10343:71:3;-1:-1:-1;;;;;;10343:71:3;;;;;;;;;;;;;;;;;;10355:12;;10467:281;10491:8;10487:1;:12;10467:281;;;10520:38;;10545:12;;-1:-1:-1;;;;;10520:38:3;;;10537:1;;10520:38;;10537:1;;10520:38;10585:59;10616:1;10620:2;10624:12;10638:5;10585:22;:59::i;:::-;10567:150;;;;-1:-1:-1;;;10567:150:3;;;;;;;:::i;:::-;10726:14;;;;:::i;:::-;;;;10501:3;;;;;:::i;:::-;;;;10467:281;;;-1:-1:-1;10756:12:3;:27;;;10790:60;8486: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;2544:328::-;2621:6;2629;2637;2690:2;2678:9;2669:7;2665:23;2661:32;2658:52;;;2706:1;2703;2696:12;2658:52;2729:29;2748:9;2729:29;:::i;:::-;2719:39;;2777:38;2811:2;2800:9;2796:18;2777:38;:::i;:::-;2767:48;;2862:2;2851:9;2847:18;2834:32;2824:42;;2544:328;;;;;:::o;2877:284::-;2935:6;2988:2;2976:9;2967:7;2963:23;2959:32;2956:52;;;3004:1;3001;2994:12;2956:52;3043:9;3030:23;-1:-1:-1;;;;;3086:5:12;3082:30;3075:5;3072:41;3062:69;;3127:1;3124;3117:12;3371:269;3428:6;3481:2;3469:9;3460:7;3456:23;3452:32;3449:52;;;3497:1;3494;3487:12;3449:52;3536:9;3523:23;3586:4;3579:5;3575:16;3568:5;3565:27;3555:55;;3606:1;3603;3596:12;3645:592;3716:6;3724;3777:2;3765:9;3756:7;3752:23;3748:32;3745:52;;;3793:1;3790;3783:12;3745:52;3833:9;3820:23;-1:-1:-1;;;;;3903:2:12;3895:6;3892:14;3889:34;;;3919:1;3916;3909:12;3889:34;3957:6;3946:9;3942:22;3932:32;;4002:7;3995:4;3991:2;3987:13;3983:27;3973:55;;4024:1;4021;4014:12;3973:55;4064:2;4051:16;4090:2;4082:6;4079:14;4076:34;;;4106:1;4103;4096:12;4076:34;4151:7;4146:2;4137:6;4133:2;4129:15;4125:24;4122:37;4119:57;;;4172:1;4169;4162:12;4119:57;4203:2;4195:11;;;;;4225:6;;-1:-1:-1;3645:592:12;;-1:-1:-1;;;;3645:592:12:o;4242:186::-;4301:6;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;4433:347::-;4498:6;4506;4559:2;4547:9;4538:7;4534:23;4530:32;4527:52;;;4575:1;4572;4565:12;4527:52;4598:29;4617:9;4598:29;:::i;:::-;4588:39;;4677:2;4666:9;4662:18;4649:32;4724:5;4717:13;4710:21;4703:5;4700:32;4690:60;;4746:1;4743;4736:12;4690:60;4769:5;4759:15;;;4433:347;;;;;:::o;4785:127::-;4846:10;4841:3;4837:20;4834:1;4827:31;4877:4;4874:1;4867:15;4901:4;4898:1;4891:15;4917:1138;5012:6;5020;5028;5036;5089:3;5077:9;5068:7;5064:23;5060:33;5057:53;;;5106:1;5103;5096:12;5057:53;5129:29;5148:9;5129:29;:::i;:::-;5119:39;;5177:38;5211:2;5200:9;5196:18;5177:38;:::i;:::-;5167:48;;5262:2;5251:9;5247:18;5234:32;5224:42;;5317:2;5306:9;5302:18;5289:32;-1:-1:-1;;;;;5381:2:12;5373:6;5370:14;5367:34;;;5397:1;5394;5387:12;5367:34;5435:6;5424:9;5420:22;5410:32;;5480:7;5473:4;5469:2;5465:13;5461:27;5451:55;;5502:1;5499;5492:12;5451:55;5538:2;5525:16;5560:2;5556;5553:10;5550:36;;;5566:18;;:::i;:::-;5641:2;5635:9;5609:2;5695:13;;-1:-1:-1;;5691:22:12;;;5715:2;5687:31;5683:40;5671:53;;;5739:18;;;5759:22;;;5736:46;5733:72;;;5785:18;;:::i;:::-;5825:10;5821:2;5814:22;5860:2;5852:6;5845:18;5900:7;5895:2;5890;5886;5882:11;5878:20;5875:33;5872:53;;;5921:1;5918;5911:12;5872:53;5977:2;5972;5968;5964:11;5959:2;5951:6;5947:15;5934:46;6022:1;6017:2;6012;6004:6;6000:15;5996:24;5989:35;6043:6;6033:16;;;;;;;4917:1138;;;;;;;:::o;6060:260::-;6128:6;6136;6189:2;6177:9;6168:7;6164:23;6160:32;6157:52;;;6205:1;6202;6195:12;6157:52;6228:29;6247:9;6228:29;:::i;:::-;6218:39;;6276:38;6310:2;6299:9;6295:18;6276:38;:::i;:::-;6266:48;;6060: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:127::-;8014:10;8009:3;8005:20;8002:1;7995:31;8045:4;8042:1;8035:15;8069:4;8066:1;8059:15;8085:125;8125:4;8153:1;8150;8147:8;8144:34;;;8158:18;;:::i;:::-;-1:-1:-1;8195:9:12;;8085:125::o;8215:356::-;8417:2;8399:21;;;8436:18;;;8429:30;8495:34;8490:2;8475:18;;8468:62;8562:2;8547:18;;8215:356::o;8979:135::-;9018:3;9039:17;;;9036:43;;9059:18;;:::i;:::-;-1:-1:-1;9106:1:12;9095:13;;8979:135::o;9938:128::-;9978:3;10009:1;10005:6;10002:1;9999:13;9996:39;;;10015:18;;:::i;:::-;-1:-1:-1;10051:9:12;;9938:128::o;11097:204::-;11135:3;11171:4;11168:1;11164:12;11203:4;11200:1;11196:12;11238:3;11232:4;11228:14;11223:3;11220:23;11217:49;;;11246:18;;:::i;:::-;11282:13;;11097:204;-1:-1:-1;;;11097:204:12:o;12000:168::-;12040:7;12106:1;12102;12098:6;12094:14;12091:1;12088:21;12083:1;12076:9;12069:17;12065:45;12062:71;;;12113:18;;:::i;:::-;-1:-1:-1;12153:9:12;;12000:168::o;13623:415::-;13825:2;13807:21;;;13864:2;13844:18;;;13837:30;13903:34;13898:2;13883:18;;13876:62;-1:-1:-1;;;13969:2:12;13954:18;;13947:49;14028:3;14013:19;;13623:415::o;14459:637::-;14739:3;14777:6;14771:13;14793:53;14839:6;14834:3;14827:4;14819:6;14815:17;14793:53;:::i;:::-;14909:13;;14868:16;;;;14931:57;14909:13;14868:16;14965:4;14953:17;;14931:57;:::i;:::-;-1:-1:-1;;;15010:20:12;;15039:22;;;15088:1;15077:13;;14459:637;-1:-1:-1;;;;14459:637:12:o;16740:246::-;16780:4;-1:-1:-1;;;;;16893:10:12;;;;16863;;16915:12;;;16912:38;;;16930:18;;:::i;:::-;16967:13;;16740:246;-1:-1:-1;;;16740:246:12:o;16991:253::-;17031:3;-1:-1:-1;;;;;17120:2:12;17117:1;17113:10;17150:2;17147:1;17143:10;17181:3;17177:2;17173:12;17168:3;17165:21;17162:47;;;17189:18;;:::i;:::-;17225:13;;16991:253;-1:-1:-1;;;;16991:253:12:o;17660:136::-;17699:3;17727:5;17717:39;;17736:18;;:::i;:::-;-1:-1:-1;;;17772:18:12;;17660:136::o;18771:489::-;-1:-1:-1;;;;;19040:15:12;;;19022:34;;19092:15;;19087:2;19072:18;;19065:43;19139:2;19124:18;;19117:34;;;19187:3;19182:2;19167:18;;19160:31;;;18965:4;;19208:46;;19234:19;;19226:6;19208:46;:::i;:::-;19200:54;18771:489;-1:-1:-1;;;;;;18771:489:12:o;19265:249::-;19334:6;19387:2;19375:9;19366:7;19362:23;19358:32;19355:52;;;19403:1;19400;19393:12;19355:52;19435:9;19429:16;19454:30;19478:5;19454:30;:::i;19519:127::-;19580:10;19575:3;19571:20;19568:1;19561:31;19611:4;19608:1;19601:15;19635:4;19632:1;19625:15;19651:120;19691:1;19717;19707:35;;19722:18;;:::i;:::-;-1:-1:-1;19756:9:12;;19651:120::o;19776:112::-;19808:1;19834;19824:35;;19839:18;;:::i;:::-;-1:-1:-1;19873:9:12;;19776:112::o;19893:127::-;19954:10;19949:3;19945:20;19942:1;19935:31;19985:4;19982:1;19975:15;20009:4;20006:1;19999:15

Swarm Source

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