ETH Price: $3,267.06 (-0.88%)

Token

Underground S2 Pass (ug)
 

Overview

Max Total Supply

60 ug

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zeonx.eth
Balance
1 ug
0x8c4b4408e8b160191c739d4eeab0b4c4d36036ae
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:
underground

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-11
*/

// File: @openzeppelin/contracts/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);
    }
}

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/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: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/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: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/S2.sol


pragma solidity ^0.8.15;



contract underground is Ownable, ERC721A {

    uint256 constant MAX_ELEMENTS = 555;
    uint256 constant MAX_ELEMENTS_TX = 10;
    uint256 constant PUBLIC_PRICE = 0.25 ether;

    string public baseTokenURI = "ipfs://QmWfMtEZJdifw76Ugg2smSUQykPNQ3XZ1JZMm7k8QNGHTD/";

    constructor(uint256 maxBatchSize_) ERC721A("Underground S2 Pass", "ug", maxBatchSize_) {}

    function mint(uint256 _mintAmount) external payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0,"Mint at least one");
        require(_mintAmount <= MAX_ELEMENTS_TX,"No more than 4 per tx");

        require(supply + _mintAmount <= MAX_ELEMENTS,"Exceeds max supply");
        require(msg.value >= (_mintAmount * PUBLIC_PRICE),"Error. Each pass costs 0.25 eth");
        _safeMint(msg.sender,_mintAmount);
    }

    function teamMint(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++)
        {
            _safeMint(addresses[i], 1);
        }
    }

    function withdraw() external payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"address[]","name":"addresses","type":"address[]"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a060405260006001556000600855604051806060016040528060368152602001620046776036913960099081620000389190620004bb565b503480156200004657600080fd5b50604051620046ad380380620046ad83398181016040528101906200006c9190620005d8565b6040518060400160405280601381526020017f556e64657267726f756e642053322050617373000000000000000000000000008152506040518060400160405280600281526020017f756700000000000000000000000000000000000000000000000000000000000081525082620000f9620000ed6200017560201b60201c565b6200017d60201b60201c565b600081116200013f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001369062000691565b60405180910390fd5b8260029081620001509190620004bb565b508160039081620001629190620004bb565b50806080818152505050505050620006b3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c357607f821691505b602082108103620002d957620002d86200027b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000304565b6200034f868362000304565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039c62000396620003908462000367565b62000371565b62000367565b9050919050565b6000819050919050565b620003b8836200037b565b620003d0620003c782620003a3565b84845462000311565b825550505050565b600090565b620003e7620003d8565b620003f4818484620003ad565b505050565b5b818110156200041c5762000410600082620003dd565b600181019050620003fa565b5050565b601f8211156200046b576200043581620002df565b6200044084620002f4565b8101602085101562000450578190505b620004686200045f85620002f4565b830182620003f9565b50505b505050565b600082821c905092915050565b6000620004906000198460080262000470565b1980831691505092915050565b6000620004ab83836200047d565b9150826002028217905092915050565b620004c68262000241565b67ffffffffffffffff811115620004e257620004e16200024c565b5b620004ee8254620002aa565b620004fb82828562000420565b600060209050601f8311600181146200053357600084156200051e578287015190505b6200052a85826200049d565b8655506200059a565b601f1984166200054386620002df565b60005b828110156200056d5784890151825560018201915060208501945060208101905062000546565b868310156200058d578489015162000589601f8916826200047d565b8355505b6001600288020188555050505b505050505050565b600080fd5b620005b28162000367565b8114620005be57600080fd5b50565b600081519050620005d281620005a7565b92915050565b600060208284031215620005f157620005f0620005a2565b5b60006200060184828501620005c1565b91505092915050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620006796027836200060a565b915062000686826200061b565b604082019050919050565b60006020820190508181036000830152620006ac816200066a565b9050919050565b608051613f9a620006dd60003960008181611c8f01528181611cb801526123660152613f9a6000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd14610474578063d547cfb7146104b1578063d7224ba0146104dc578063e985e9c514610507578063f002858514610544578063f2fde38b1461056d5761014b565b8063715018a6146103995780638da5cb5b146103b057806395d89b41146103db578063a0712d6814610406578063a22cb46514610422578063b88d4fde1461044b5761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102b95780634f6ccce7146102e25780636352211e1461031f57806370a082311461035c5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061283d565b610596565b6040516101849190612885565b60405180910390f35b34801561019957600080fd5b506101a26106e0565b6040516101af9190612939565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612991565b610772565b6040516101ec91906129ff565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612a46565b6107f7565b005b34801561022a57600080fd5b5061023361090f565b6040516102409190612a95565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612ab0565b610919565b005b34801561027e57600080fd5b5061029960048036038101906102949190612a46565b610929565b6040516102a69190612a95565b60405180910390f35b6102b7610b25565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612ab0565b610be1565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612991565b610c01565b6040516103169190612a95565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612991565b610c54565b60405161035391906129ff565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612b03565b610c6a565b6040516103909190612a95565b60405180910390f35b3480156103a557600080fd5b506103ae610d52565b005b3480156103bc57600080fd5b506103c5610dda565b6040516103d291906129ff565b60405180910390f35b3480156103e757600080fd5b506103f0610e03565b6040516103fd9190612939565b60405180910390f35b610420600480360381019061041b9190612991565b610e95565b005b34801561042e57600080fd5b5061044960048036038101906104449190612b5c565b610fdc565b005b34801561045757600080fd5b50610472600480360381019061046d9190612cd1565b61115c565b005b34801561048057600080fd5b5061049b60048036038101906104969190612991565b6111b8565b6040516104a89190612939565b60405180910390f35b3480156104bd57600080fd5b506104c661125f565b6040516104d39190612939565b60405180910390f35b3480156104e857600080fd5b506104f16112ed565b6040516104fe9190612a95565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190612d54565b6112f3565b60405161053b9190612885565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190612df4565b611387565b005b34801561057957600080fd5b50610594600480360381019061058f9190612b03565b61145b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d957506106d882611552565b5b9050919050565b6060600280546106ef90612e70565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90612e70565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d826115bc565b6107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390612f13565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080282610c54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990612fa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108916115ca565b73ffffffffffffffffffffffffffffffffffffffff1614806108c057506108bf816108ba6115ca565b6112f3565b5b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690613037565b60405180910390fd5b61090a8383836115d2565b505050565b6000600154905090565b610924838383611684565b505050565b600061093483610c6a565b8210610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906130c9565b60405180910390fd5b600061097f61090f565b905060008060005b83811015610ae3576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a7957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acf57868403610ac0578195505050505050610b1f565b8380610acb90613118565b9450505b508080610adb90613118565b915050610987565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906131d2565b60405180910390fd5b92915050565b610b2d6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061323e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bdf57600080fd5b565b610bfc8383836040518060200160405280600081525061115c565b505050565b6000610c0b61090f565b8210610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906132d0565b60405180910390fd5b819050919050565b6000610c5f82611c3b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613362565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610d5a6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610d78610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061323e565b60405180910390fd5b610dd86000611e3e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e1290612e70565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90612e70565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b5050505050905090565b6000610e9f61090f565b905060008211610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906133ce565b60405180910390fd5b600a821115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061343a565b60405180910390fd5b61022b8282610f37919061345a565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906134fc565b60405180910390fd5b6703782dace9d9000082610f8c919061351c565b341015610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc5906135c2565b60405180910390fd5b610fd83383611f02565b5050565b610fe46115ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061362e565b60405180910390fd5b806007600061105e6115ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110b6115ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111509190612885565b60405180910390a35050565b611167848484611684565b61117384848484611f20565b6111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906136c0565b60405180910390fd5b50505050565b60606111c3826115bc565b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613752565b60405180910390fd5b600061120c6120a7565b9050600081511161122c5760405180602001604052806000815250611257565b8061123684612139565b6040516020016112479291906137ae565b6040516020818303038152906040525b915050919050565b6009805461126c90612e70565b80601f016020809104026020016040519081016040528092919081815260200182805461129890612e70565b80156112e55780601f106112ba576101008083540402835291602001916112e5565b820191906000526020600020905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138f6115ca565b73ffffffffffffffffffffffffffffffffffffffff166113ad610dda565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061323e565b60405180910390fd5b60005b8282905081101561145657611443838383818110611427576114266137d2565b5b905060200201602081019061143c9190612b03565b6001611f02565b808061144e90613118565b915050611406565b505050565b6114636115ca565b73ffffffffffffffffffffffffffffffffffffffff16611481610dda565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce9061323e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613873565b60405180910390fd5b61154f81611e3e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061168f82611c3b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116b66115ca565b73ffffffffffffffffffffffffffffffffffffffff16148061171257506116db6115ca565b73ffffffffffffffffffffffffffffffffffffffff166116fa84610772565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172e575061172d82600001516117286115ca565b6112f3565b5b905080611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613905565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613997565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613a29565b60405180910390fd5b61185e8585856001612299565b61186e60008484600001516115d2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166118dc9190613a65565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119809190613a99565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611a86919061345a565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611bcb57611afb816115bc565b15611bca576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c33868686600161229f565b505050505050565b611c43612797565b611c4c826115bc565b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613b51565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611cef5760017f000000000000000000000000000000000000000000000000000000000000000084611ce29190613b71565b611cec919061345a565b90505b60008390505b818110611dfd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611de957809350505050611e39565b508080611df590613ba5565b915050611cf5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090613c40565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1c8282604051806020016040528060008152506122a5565b5050565b6000611f418473ffffffffffffffffffffffffffffffffffffffff16612784565b1561209a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6a6115ca565b8786866040518563ffffffff1660e01b8152600401611f8c9493929190613cb5565b6020604051808303816000875af1925050508015611fc857506040513d601f19601f82011682018060405250810190611fc59190613d16565b60015b61204a573d8060008114611ff8576040519150601f19603f3d011682016040523d82523d6000602084013e611ffd565b606091505b506000815103612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906136c0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061209f565b600190505b949350505050565b6060600980546120b690612e70565b80601f01602080910402602001604051908101604052809291908181526020018280546120e290612e70565b801561212f5780601f106121045761010080835404028352916020019161212f565b820191906000526020600020905b81548152906001019060200180831161211257829003601f168201915b5050505050905090565b606060008203612180576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612294565b600082905060005b600082146121b257808061219b90613118565b915050600a826121ab9190613d72565b9150612188565b60008167ffffffffffffffff8111156121ce576121cd612ba6565b5b6040519080825280601f01601f1916602001820160405280156122005781602001600182028036833780820191505090505b5090505b6000851461228d576001826122199190613b71565b9150600a856122289190613da3565b6030612234919061345a565b60f81b81838151811061224a576122496137d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122869190613d72565b9450612204565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613e46565b60405180910390fd5b612324816115bc565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613eb2565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90613f44565b60405180910390fd5b6123d46000858386612299565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516124d19190613a99565b6fffffffffffffffffffffffffffffffff1681526020018583602001516124f89190613a99565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561276757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127076000888488611f20565b612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d906136c0565b60405180910390fd5b818061275190613118565b925050808061275f90613118565b915050612696565b508060018190555061277c600087858861229f565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61281a816127e5565b811461282557600080fd5b50565b60008135905061283781612811565b92915050565b600060208284031215612853576128526127db565b5b600061286184828501612828565b91505092915050565b60008115159050919050565b61287f8161286a565b82525050565b600060208201905061289a6000830184612876565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128da5780820151818401526020810190506128bf565b838111156128e9576000848401525b50505050565b6000601f19601f8301169050919050565b600061290b826128a0565b61291581856128ab565b93506129258185602086016128bc565b61292e816128ef565b840191505092915050565b600060208201905081810360008301526129538184612900565b905092915050565b6000819050919050565b61296e8161295b565b811461297957600080fd5b50565b60008135905061298b81612965565b92915050565b6000602082840312156129a7576129a66127db565b5b60006129b58482850161297c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129e9826129be565b9050919050565b6129f9816129de565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b612a23816129de565b8114612a2e57600080fd5b50565b600081359050612a4081612a1a565b92915050565b60008060408385031215612a5d57612a5c6127db565b5b6000612a6b85828601612a31565b9250506020612a7c8582860161297c565b9150509250929050565b612a8f8161295b565b82525050565b6000602082019050612aaa6000830184612a86565b92915050565b600080600060608486031215612ac957612ac86127db565b5b6000612ad786828701612a31565b9350506020612ae886828701612a31565b9250506040612af98682870161297c565b9150509250925092565b600060208284031215612b1957612b186127db565b5b6000612b2784828501612a31565b91505092915050565b612b398161286a565b8114612b4457600080fd5b50565b600081359050612b5681612b30565b92915050565b60008060408385031215612b7357612b726127db565b5b6000612b8185828601612a31565b9250506020612b9285828601612b47565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bde826128ef565b810181811067ffffffffffffffff82111715612bfd57612bfc612ba6565b5b80604052505050565b6000612c106127d1565b9050612c1c8282612bd5565b919050565b600067ffffffffffffffff821115612c3c57612c3b612ba6565b5b612c45826128ef565b9050602081019050919050565b82818337600083830152505050565b6000612c74612c6f84612c21565b612c06565b905082815260208101848484011115612c9057612c8f612ba1565b5b612c9b848285612c52565b509392505050565b600082601f830112612cb857612cb7612b9c565b5b8135612cc8848260208601612c61565b91505092915050565b60008060008060808587031215612ceb57612cea6127db565b5b6000612cf987828801612a31565b9450506020612d0a87828801612a31565b9350506040612d1b8782880161297c565b925050606085013567ffffffffffffffff811115612d3c57612d3b6127e0565b5b612d4887828801612ca3565b91505092959194509250565b60008060408385031215612d6b57612d6a6127db565b5b6000612d7985828601612a31565b9250506020612d8a85828601612a31565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612db457612db3612b9c565b5b8235905067ffffffffffffffff811115612dd157612dd0612d94565b5b602083019150836020820283011115612ded57612dec612d99565b5b9250929050565b60008060208385031215612e0b57612e0a6127db565b5b600083013567ffffffffffffffff811115612e2957612e286127e0565b5b612e3585828601612d9e565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8857607f821691505b602082108103612e9b57612e9a612e41565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612efd602d836128ab565b9150612f0882612ea1565b604082019050919050565b60006020820190508181036000830152612f2c81612ef0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8f6022836128ab565b9150612f9a82612f33565b604082019050919050565b60006020820190508181036000830152612fbe81612f82565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006130216039836128ab565b915061302c82612fc5565b604082019050919050565b6000602082019050818103600083015261305081613014565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130b36022836128ab565b91506130be82613057565b604082019050919050565b600060208201905081810360008301526130e2816130a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131238261295b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613155576131546130e9565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006131bc602e836128ab565b91506131c782613160565b604082019050919050565b600060208201905081810360008301526131eb816131af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132286020836128ab565b9150613233826131f2565b602082019050919050565b600060208201905081810360008301526132578161321b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ba6023836128ab565b91506132c58261325e565b604082019050919050565b600060208201905081810360008301526132e9816132ad565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061334c602b836128ab565b9150613357826132f0565b604082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f4d696e74206174206c65617374206f6e65000000000000000000000000000000600082015250565b60006133b86011836128ab565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f4e6f206d6f7265207468616e2034207065722074780000000000000000000000600082015250565b60006134246015836128ab565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b60006134658261295b565b91506134708361295b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a5576134a46130e9565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006134e66012836128ab565b91506134f1826134b0565b602082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b60006135278261295b565b91506135328361295b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356b5761356a6130e9565b5b828202905092915050565b7f4572726f722e2045616368207061737320636f73747320302e32352065746800600082015250565b60006135ac601f836128ab565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613618601a836128ab565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006136aa6033836128ab565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061373c602f836128ab565b9150613747826136e0565b604082019050919050565b6000602082019050818103600083015261376b8161372f565b9050919050565b600081905092915050565b6000613788826128a0565b6137928185613772565b93506137a28185602086016128bc565b80840191505092915050565b60006137ba828561377d565b91506137c6828461377d565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385d6026836128ab565b915061386882613801565b604082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138ef6032836128ab565b91506138fa82613893565b604082019050919050565b6000602082019050818103600083015261391e816138e2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006139816026836128ab565b915061398c82613925565b604082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a136025836128ab565b9150613a1e826139b7565b604082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613a7082613a49565b9150613a7b83613a49565b925082821015613a8e57613a8d6130e9565b5b828203905092915050565b6000613aa482613a49565b9150613aaf83613a49565b9250826fffffffffffffffffffffffffffffffff03821115613ad457613ad36130e9565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613b3b602a836128ab565b9150613b4682613adf565b604082019050919050565b60006020820190508181036000830152613b6a81613b2e565b9050919050565b6000613b7c8261295b565b9150613b878361295b565b925082821015613b9a57613b996130e9565b5b828203905092915050565b6000613bb08261295b565b915060008203613bc357613bc26130e9565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613c2a602f836128ab565b9150613c3582613bce565b604082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8782613c60565b613c918185613c6b565b9350613ca18185602086016128bc565b613caa816128ef565b840191505092915050565b6000608082019050613cca60008301876129f0565b613cd760208301866129f0565b613ce46040830185612a86565b8181036060830152613cf68184613c7c565b905095945050505050565b600081519050613d1081612811565b92915050565b600060208284031215613d2c57613d2b6127db565b5b6000613d3a84828501613d01565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d7d8261295b565b9150613d888361295b565b925082613d9857613d97613d43565b5b828204905092915050565b6000613dae8261295b565b9150613db98361295b565b925082613dc957613dc8613d43565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e306021836128ab565b9150613e3b82613dd4565b604082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613e9c601d836128ab565b9150613ea782613e66565b602082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f2e6022836128ab565b9150613f3982613ed2565b604082019050919050565b60006020820190508181036000830152613f5d81613f21565b905091905056fea2646970667358221220ac393088f034c117d41501f509b134715f420753c96366a29f87c35dbf69d9a564736f6c634300080f0033697066733a2f2f516d57664d74455a4a64696677373655676732736d535551796b504e5133585a314a5a4d6d376b38514e474854442f000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd14610474578063d547cfb7146104b1578063d7224ba0146104dc578063e985e9c514610507578063f002858514610544578063f2fde38b1461056d5761014b565b8063715018a6146103995780638da5cb5b146103b057806395d89b41146103db578063a0712d6814610406578063a22cb46514610422578063b88d4fde1461044b5761014b565b80632f745c59116101085780632f745c59146102725780633ccfd60b146102af57806342842e0e146102b95780634f6ccce7146102e25780636352211e1461031f57806370a082311461035c5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061283d565b610596565b6040516101849190612885565b60405180910390f35b34801561019957600080fd5b506101a26106e0565b6040516101af9190612939565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612991565b610772565b6040516101ec91906129ff565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612a46565b6107f7565b005b34801561022a57600080fd5b5061023361090f565b6040516102409190612a95565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612ab0565b610919565b005b34801561027e57600080fd5b5061029960048036038101906102949190612a46565b610929565b6040516102a69190612a95565b60405180910390f35b6102b7610b25565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612ab0565b610be1565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612991565b610c01565b6040516103169190612a95565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612991565b610c54565b60405161035391906129ff565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612b03565b610c6a565b6040516103909190612a95565b60405180910390f35b3480156103a557600080fd5b506103ae610d52565b005b3480156103bc57600080fd5b506103c5610dda565b6040516103d291906129ff565b60405180910390f35b3480156103e757600080fd5b506103f0610e03565b6040516103fd9190612939565b60405180910390f35b610420600480360381019061041b9190612991565b610e95565b005b34801561042e57600080fd5b5061044960048036038101906104449190612b5c565b610fdc565b005b34801561045757600080fd5b50610472600480360381019061046d9190612cd1565b61115c565b005b34801561048057600080fd5b5061049b60048036038101906104969190612991565b6111b8565b6040516104a89190612939565b60405180910390f35b3480156104bd57600080fd5b506104c661125f565b6040516104d39190612939565b60405180910390f35b3480156104e857600080fd5b506104f16112ed565b6040516104fe9190612a95565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190612d54565b6112f3565b60405161053b9190612885565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190612df4565b611387565b005b34801561057957600080fd5b50610594600480360381019061058f9190612b03565b61145b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d957506106d882611552565b5b9050919050565b6060600280546106ef90612e70565b80601f016020809104026020016040519081016040528092919081815260200182805461071b90612e70565b80156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077d826115bc565b6107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390612f13565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080282610c54565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990612fa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108916115ca565b73ffffffffffffffffffffffffffffffffffffffff1614806108c057506108bf816108ba6115ca565b6112f3565b5b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690613037565b60405180910390fd5b61090a8383836115d2565b505050565b6000600154905090565b610924838383611684565b505050565b600061093483610c6a565b8210610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c906130c9565b60405180910390fd5b600061097f61090f565b905060008060005b83811015610ae3576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a7957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acf57868403610ac0578195505050505050610b1f565b8380610acb90613118565b9450505b508080610adb90613118565b915050610987565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906131d2565b60405180910390fd5b92915050565b610b2d6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610b4b610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b989061323e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bdf57600080fd5b565b610bfc8383836040518060200160405280600081525061115c565b505050565b6000610c0b61090f565b8210610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906132d0565b60405180910390fd5b819050919050565b6000610c5f82611c3b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613362565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610d5a6115ca565b73ffffffffffffffffffffffffffffffffffffffff16610d78610dda565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061323e565b60405180910390fd5b610dd86000611e3e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e1290612e70565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3e90612e70565b8015610e8b5780601f10610e6057610100808354040283529160200191610e8b565b820191906000526020600020905b815481529060010190602001808311610e6e57829003601f168201915b5050505050905090565b6000610e9f61090f565b905060008211610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906133ce565b60405180910390fd5b600a821115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f9061343a565b60405180910390fd5b61022b8282610f37919061345a565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906134fc565b60405180910390fd5b6703782dace9d9000082610f8c919061351c565b341015610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc5906135c2565b60405180910390fd5b610fd83383611f02565b5050565b610fe46115ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061362e565b60405180910390fd5b806007600061105e6115ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110b6115ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111509190612885565b60405180910390a35050565b611167848484611684565b61117384848484611f20565b6111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a9906136c0565b60405180910390fd5b50505050565b60606111c3826115bc565b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613752565b60405180910390fd5b600061120c6120a7565b9050600081511161122c5760405180602001604052806000815250611257565b8061123684612139565b6040516020016112479291906137ae565b6040516020818303038152906040525b915050919050565b6009805461126c90612e70565b80601f016020809104026020016040519081016040528092919081815260200182805461129890612e70565b80156112e55780601f106112ba576101008083540402835291602001916112e5565b820191906000526020600020905b8154815290600101906020018083116112c857829003601f168201915b505050505081565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138f6115ca565b73ffffffffffffffffffffffffffffffffffffffff166113ad610dda565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061323e565b60405180910390fd5b60005b8282905081101561145657611443838383818110611427576114266137d2565b5b905060200201602081019061143c9190612b03565b6001611f02565b808061144e90613118565b915050611406565b505050565b6114636115ca565b73ffffffffffffffffffffffffffffffffffffffff16611481610dda565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce9061323e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613873565b60405180910390fd5b61154f81611e3e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061168f82611c3b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166116b66115ca565b73ffffffffffffffffffffffffffffffffffffffff16148061171257506116db6115ca565b73ffffffffffffffffffffffffffffffffffffffff166116fa84610772565b73ffffffffffffffffffffffffffffffffffffffff16145b8061172e575061172d82600001516117286115ca565b6112f3565b5b905080611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613905565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613997565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613a29565b60405180910390fd5b61185e8585856001612299565b61186e60008484600001516115d2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166118dc9190613a65565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119809190613a99565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611a86919061345a565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611bcb57611afb816115bc565b15611bca576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c33868686600161229f565b505050505050565b611c43612797565b611c4c826115bc565b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613b51565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310611cef5760017f000000000000000000000000000000000000000000000000000000000000000a84611ce29190613b71565b611cec919061345a565b90505b60008390505b818110611dfd576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611de957809350505050611e39565b508080611df590613ba5565b915050611cf5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3090613c40565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f1c8282604051806020016040528060008152506122a5565b5050565b6000611f418473ffffffffffffffffffffffffffffffffffffffff16612784565b1561209a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6a6115ca565b8786866040518563ffffffff1660e01b8152600401611f8c9493929190613cb5565b6020604051808303816000875af1925050508015611fc857506040513d601f19601f82011682018060405250810190611fc59190613d16565b60015b61204a573d8060008114611ff8576040519150601f19603f3d011682016040523d82523d6000602084013e611ffd565b606091505b506000815103612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906136c0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061209f565b600190505b949350505050565b6060600980546120b690612e70565b80601f01602080910402602001604051908101604052809291908181526020018280546120e290612e70565b801561212f5780601f106121045761010080835404028352916020019161212f565b820191906000526020600020905b81548152906001019060200180831161211257829003601f168201915b5050505050905090565b606060008203612180576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612294565b600082905060005b600082146121b257808061219b90613118565b915050600a826121ab9190613d72565b9150612188565b60008167ffffffffffffffff8111156121ce576121cd612ba6565b5b6040519080825280601f01601f1916602001820160405280156122005781602001600182028036833780820191505090505b5090505b6000851461228d576001826122199190613b71565b9150600a856122289190613da3565b6030612234919061345a565b60f81b81838151811061224a576122496137d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122869190613d72565b9450612204565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231290613e46565b60405180910390fd5b612324816115bc565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b90613eb2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90613f44565b60405180910390fd5b6123d46000858386612299565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516124d19190613a99565b6fffffffffffffffffffffffffffffffff1681526020018583602001516124f89190613a99565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561276757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127076000888488611f20565b612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d906136c0565b60405180910390fd5b818061275190613118565b925050808061275f90613118565b915050612696565b508060018190555061277c600087858861229f565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61281a816127e5565b811461282557600080fd5b50565b60008135905061283781612811565b92915050565b600060208284031215612853576128526127db565b5b600061286184828501612828565b91505092915050565b60008115159050919050565b61287f8161286a565b82525050565b600060208201905061289a6000830184612876565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128da5780820151818401526020810190506128bf565b838111156128e9576000848401525b50505050565b6000601f19601f8301169050919050565b600061290b826128a0565b61291581856128ab565b93506129258185602086016128bc565b61292e816128ef565b840191505092915050565b600060208201905081810360008301526129538184612900565b905092915050565b6000819050919050565b61296e8161295b565b811461297957600080fd5b50565b60008135905061298b81612965565b92915050565b6000602082840312156129a7576129a66127db565b5b60006129b58482850161297c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129e9826129be565b9050919050565b6129f9816129de565b82525050565b6000602082019050612a1460008301846129f0565b92915050565b612a23816129de565b8114612a2e57600080fd5b50565b600081359050612a4081612a1a565b92915050565b60008060408385031215612a5d57612a5c6127db565b5b6000612a6b85828601612a31565b9250506020612a7c8582860161297c565b9150509250929050565b612a8f8161295b565b82525050565b6000602082019050612aaa6000830184612a86565b92915050565b600080600060608486031215612ac957612ac86127db565b5b6000612ad786828701612a31565b9350506020612ae886828701612a31565b9250506040612af98682870161297c565b9150509250925092565b600060208284031215612b1957612b186127db565b5b6000612b2784828501612a31565b91505092915050565b612b398161286a565b8114612b4457600080fd5b50565b600081359050612b5681612b30565b92915050565b60008060408385031215612b7357612b726127db565b5b6000612b8185828601612a31565b9250506020612b9285828601612b47565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bde826128ef565b810181811067ffffffffffffffff82111715612bfd57612bfc612ba6565b5b80604052505050565b6000612c106127d1565b9050612c1c8282612bd5565b919050565b600067ffffffffffffffff821115612c3c57612c3b612ba6565b5b612c45826128ef565b9050602081019050919050565b82818337600083830152505050565b6000612c74612c6f84612c21565b612c06565b905082815260208101848484011115612c9057612c8f612ba1565b5b612c9b848285612c52565b509392505050565b600082601f830112612cb857612cb7612b9c565b5b8135612cc8848260208601612c61565b91505092915050565b60008060008060808587031215612ceb57612cea6127db565b5b6000612cf987828801612a31565b9450506020612d0a87828801612a31565b9350506040612d1b8782880161297c565b925050606085013567ffffffffffffffff811115612d3c57612d3b6127e0565b5b612d4887828801612ca3565b91505092959194509250565b60008060408385031215612d6b57612d6a6127db565b5b6000612d7985828601612a31565b9250506020612d8a85828601612a31565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612db457612db3612b9c565b5b8235905067ffffffffffffffff811115612dd157612dd0612d94565b5b602083019150836020820283011115612ded57612dec612d99565b5b9250929050565b60008060208385031215612e0b57612e0a6127db565b5b600083013567ffffffffffffffff811115612e2957612e286127e0565b5b612e3585828601612d9e565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8857607f821691505b602082108103612e9b57612e9a612e41565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612efd602d836128ab565b9150612f0882612ea1565b604082019050919050565b60006020820190508181036000830152612f2c81612ef0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f8f6022836128ab565b9150612f9a82612f33565b604082019050919050565b60006020820190508181036000830152612fbe81612f82565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006130216039836128ab565b915061302c82612fc5565b604082019050919050565b6000602082019050818103600083015261305081613014565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130b36022836128ab565b91506130be82613057565b604082019050919050565b600060208201905081810360008301526130e2816130a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131238261295b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613155576131546130e9565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006131bc602e836128ab565b91506131c782613160565b604082019050919050565b600060208201905081810360008301526131eb816131af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132286020836128ab565b9150613233826131f2565b602082019050919050565b600060208201905081810360008301526132578161321b565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ba6023836128ab565b91506132c58261325e565b604082019050919050565b600060208201905081810360008301526132e9816132ad565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061334c602b836128ab565b9150613357826132f0565b604082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f4d696e74206174206c65617374206f6e65000000000000000000000000000000600082015250565b60006133b86011836128ab565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f4e6f206d6f7265207468616e2034207065722074780000000000000000000000600082015250565b60006134246015836128ab565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b60006134658261295b565b91506134708361295b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a5576134a46130e9565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006134e66012836128ab565b91506134f1826134b0565b602082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b60006135278261295b565b91506135328361295b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356b5761356a6130e9565b5b828202905092915050565b7f4572726f722e2045616368207061737320636f73747320302e32352065746800600082015250565b60006135ac601f836128ab565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613618601a836128ab565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006136aa6033836128ab565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061373c602f836128ab565b9150613747826136e0565b604082019050919050565b6000602082019050818103600083015261376b8161372f565b9050919050565b600081905092915050565b6000613788826128a0565b6137928185613772565b93506137a28185602086016128bc565b80840191505092915050565b60006137ba828561377d565b91506137c6828461377d565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385d6026836128ab565b915061386882613801565b604082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138ef6032836128ab565b91506138fa82613893565b604082019050919050565b6000602082019050818103600083015261391e816138e2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006139816026836128ab565b915061398c82613925565b604082019050919050565b600060208201905081810360008301526139b081613974565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a136025836128ab565b9150613a1e826139b7565b604082019050919050565b60006020820190508181036000830152613a4281613a06565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613a7082613a49565b9150613a7b83613a49565b925082821015613a8e57613a8d6130e9565b5b828203905092915050565b6000613aa482613a49565b9150613aaf83613a49565b9250826fffffffffffffffffffffffffffffffff03821115613ad457613ad36130e9565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613b3b602a836128ab565b9150613b4682613adf565b604082019050919050565b60006020820190508181036000830152613b6a81613b2e565b9050919050565b6000613b7c8261295b565b9150613b878361295b565b925082821015613b9a57613b996130e9565b5b828203905092915050565b6000613bb08261295b565b915060008203613bc357613bc26130e9565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613c2a602f836128ab565b9150613c3582613bce565b604082019050919050565b60006020820190508181036000830152613c5981613c1d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c8782613c60565b613c918185613c6b565b9350613ca18185602086016128bc565b613caa816128ef565b840191505092915050565b6000608082019050613cca60008301876129f0565b613cd760208301866129f0565b613ce46040830185612a86565b8181036060830152613cf68184613c7c565b905095945050505050565b600081519050613d1081612811565b92915050565b600060208284031215613d2c57613d2b6127db565b5b6000613d3a84828501613d01565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d7d8261295b565b9150613d888361295b565b925082613d9857613d97613d43565b5b828204905092915050565b6000613dae8261295b565b9150613db98361295b565b925082613dc957613dc8613d43565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e306021836128ab565b9150613e3b82613dd4565b604082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613e9c601d836128ab565b9150613ea782613e66565b602082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f2e6022836128ab565b9150613f3982613ed2565b604082019050919050565b60006020820190508181036000830152613f5d81613f21565b905091905056fea2646970667358221220ac393088f034c117d41501f509b134715f420753c96366a29f87c35dbf69d9a564736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

38263:1284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23708:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25434:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26959:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26522:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22272:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27809:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22900:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39299:122;;;:::i;:::-;;28014:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22435:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25257:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24134:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37571:94;;;;;;;;;;;;;:::i;:::-;;36920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25589:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38641:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27227:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28234:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25750:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38450:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32565:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27564:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39097:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37820:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23708:370;23835:4;23880:25;23865:40;;;:11;:40;;;;:99;;;;23931:33;23916:48;;;:11;:48;;;;23865:99;:160;;;;23990:35;23975:50;;;:11;:50;;;;23865:160;:207;;;;24036:36;24060:11;24036:23;:36::i;:::-;23865:207;23851:221;;23708:370;;;:::o;25434:94::-;25488:13;25517:5;25510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25434:94;:::o;26959:204::-;27027:7;27051:16;27059:7;27051;:16::i;:::-;27043:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27133:15;:24;27149:7;27133:24;;;;;;;;;;;;;;;;;;;;;27126:31;;26959:204;;;:::o;26522:379::-;26591:13;26607:24;26623:7;26607:15;:24::i;:::-;26591:40;;26652:5;26646:11;;:2;:11;;;26638:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26737:5;26721:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26746:37;26763:5;26770:12;:10;:12::i;:::-;26746:16;:37::i;:::-;26721:62;26705:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;26867:28;26876:2;26880:7;26889:5;26867:8;:28::i;:::-;26584:317;26522:379;;:::o;22272:94::-;22325:7;22348:12;;22341:19;;22272:94;:::o;27809:142::-;27917:28;27927:4;27933:2;27937:7;27917:9;:28::i;:::-;27809:142;;;:::o;22900:744::-;23009:7;23044:16;23054:5;23044:9;:16::i;:::-;23036:5;:24;23028:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23106:22;23131:13;:11;:13::i;:::-;23106:38;;23151:19;23181:25;23231:9;23226:350;23250:14;23246:1;:18;23226:350;;;23280:31;23314:11;:14;23326:1;23314:14;;;;;;;;;;;23280:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23367:1;23341:28;;:9;:14;;;:28;;;23337:89;;23402:9;:14;;;23382:34;;23337:89;23459:5;23438:26;;:17;:26;;;23434:135;;23496:5;23481:11;:20;23477:59;;23523:1;23516:8;;;;;;;;;23477:59;23546:13;;;;;:::i;:::-;;;;23434:135;23271:305;23266:3;;;;;:::i;:::-;;;;23226:350;;;;23582:56;;;;;;;;;;:::i;:::-;;;;;;;;22900:744;;;;;:::o;39299:122::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39373:10:::1;39365:24;;:47;39390:21;39365:47;;;;;;;;;;;;;;;;;;;;;;;39357:56;;;::::0;::::1;;39299:122::o:0;28014:157::-;28126:39;28143:4;28149:2;28153:7;28126:39;;;;;;;;;;;;:16;:39::i;:::-;28014:157;;;:::o;22435:177::-;22502:7;22534:13;:11;:13::i;:::-;22526:5;:21;22518:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22601:5;22594:12;;22435:177;;;:::o;25257:118::-;25321:7;25344:20;25356:7;25344:11;:20::i;:::-;:25;;;25337:32;;25257:118;;;:::o;24134:211::-;24198:7;24239:1;24222:19;;:5;:19;;;24214:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24311:12;:19;24324:5;24311:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24303:36;;24296:43;;24134:211;;;:::o;37571:94::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37636:21:::1;37654:1;37636:9;:21::i;:::-;37571:94::o:0;36920:87::-;36966:7;36993:6;;;;;;;;;;;36986:13;;36920:87;:::o;25589:98::-;25645:13;25674:7;25667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25589:98;:::o;38641:448::-;38704:14;38721:13;:11;:13::i;:::-;38704:30;;38767:1;38753:11;:15;38745:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;38390:2;38808:11;:30;;38800:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38345:3;38893:11;38884:6;:20;;;;:::i;:::-;:36;;38876:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;38431:10;38975:11;:26;;;;:::i;:::-;38961:9;:41;;38953:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;39048:33;39058:10;39069:11;39048:9;:33::i;:::-;38693:396;38641:448;:::o;27227:274::-;27330:12;:10;:12::i;:::-;27318:24;;:8;:24;;;27310:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27427:8;27382:18;:32;27401:12;:10;:12::i;:::-;27382:32;;;;;;;;;;;;;;;:42;27415:8;27382:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27476:8;27447:48;;27462:12;:10;:12::i;:::-;27447:48;;;27486:8;27447:48;;;;;;:::i;:::-;;;;;;;;27227:274;;:::o;28234:311::-;28371:28;28381:4;28387:2;28391:7;28371:9;:28::i;:::-;28422:48;28445:4;28451:2;28455:7;28464:5;28422:22;:48::i;:::-;28406:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;28234:311;;;;:::o;25750:394::-;25848:13;25889:16;25897:7;25889;:16::i;:::-;25873:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25979:21;26003:10;:8;:10::i;:::-;25979:34;;26058:1;26040:7;26034:21;:25;:104;;;;;;;;;;;;;;;;;26095:7;26104:18;:7;:16;:18::i;:::-;26078:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26034:104;26020:118;;;25750:394;;;:::o;38450:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32565:43::-;;;;:::o;27564:186::-;27686:4;27709:18;:25;27728:5;27709:25;;;;;;;;;;;;;;;:35;27735:8;27709:35;;;;;;;;;;;;;;;;;;;;;;;;;27702:42;;27564:186;;;;:::o;39097:194::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39180:9:::1;39175:109;39199:9;;:16;;39195:1;:20;39175:109;;;39246:26;39256:9;;39266:1;39256:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39270:1;39246:9;:26::i;:::-;39217:3;;;;;:::i;:::-;;;;39175:109;;;;39097:194:::0;;:::o;37820:192::-;37151:12;:10;:12::i;:::-;37140:23;;:7;:5;:7::i;:::-;:23;;;37132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37929:1:::1;37909:22;;:8;:22;;::::0;37901:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37985:19;37995:8;37985:9;:19::i;:::-;37820:192:::0;:::o;12776:157::-;12861:4;12900:25;12885:40;;;:11;:40;;;;12878:47;;12776:157;;;:::o;28784:105::-;28841:4;28871:12;;28861:7;:22;28854:29;;28784:105;;;:::o;20090:98::-;20143:7;20170:10;20163:17;;20090:98;:::o;32387:172::-;32511:2;32484:15;:24;32500:7;32484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32545:7;32541:2;32525:28;;32534:5;32525:28;;;;;;;;;;;;32387:172;;;:::o;30752:1529::-;30849:35;30887:20;30899:7;30887:11;:20::i;:::-;30849:58;;30916:22;30958:13;:18;;;30942:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31011:12;:10;:12::i;:::-;30987:36;;:20;30999:7;30987:11;:20::i;:::-;:36;;;30942:81;:142;;;;31034:50;31051:13;:18;;;31071:12;:10;:12::i;:::-;31034:16;:50::i;:::-;30942:142;30916:169;;31110:17;31094:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:4;31220:26;;:13;:18;;;:26;;;31204:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;31331:1;31317:16;;:2;:16;;;31309:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31384:43;31406:4;31412:2;31416:7;31425:1;31384:21;:43::i;:::-;31484:49;31501:1;31505:7;31514:13;:18;;;31484:8;:49::i;:::-;31572:1;31542:12;:18;31555:4;31542:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31608:1;31580:12;:16;31593:2;31580:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31639:43;;;;;;;;31654:2;31639:43;;;;;;31665:15;31639:43;;;;;31616:11;:20;31628:7;31616:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31910:19;31942:1;31932:7;:11;;;;:::i;:::-;31910:33;;31995:1;31954:43;;:11;:24;31966:11;31954:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31950:236;;32012:20;32020:11;32012:7;:20::i;:::-;32008:171;;;32072:97;;;;;;;;32099:13;:18;;;32072:97;;;;;;32130:13;:28;;;32072:97;;;;;32045:11;:24;32057:11;32045:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32008:171;31950:236;32218:7;32214:2;32199:27;;32208:4;32199:27;;;;;;;;;;;;32233:42;32254:4;32260:2;32264:7;32273:1;32233:20;:42::i;:::-;30842:1439;;;30752:1529;;;:::o;24597:606::-;24673:21;;:::i;:::-;24714:16;24722:7;24714;:16::i;:::-;24706:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24786:26;24834:12;24823:7;:23;24819:93;;24903:1;24888:12;24878:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;24857:47;;24819:93;24925:12;24940:7;24925:22;;24920:212;24957:18;24949:4;:26;24920:212;;24994:31;25028:11;:17;25040:4;25028:17;;;;;;;;;;;24994:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25084:1;25058:28;;:9;:14;;;:28;;;25054:71;;25106:9;25099:16;;;;;;;25054:71;24985:147;24977:6;;;;;:::i;:::-;;;;24920:212;;;;25140:57;;;;;;;;;;:::i;:::-;;;;;;;;24597:606;;;;:::o;38020:173::-;38076:16;38095:6;;;;;;;;;;;38076:25;;38121:8;38112:6;;:17;;;;;;;;;;;;;;;;;;38176:8;38145:40;;38166:8;38145:40;;;;;;;;;;;;38065:128;38020:173;:::o;28895:98::-;28960:27;28970:2;28974:8;28960:27;;;;;;;;;;;;:9;:27::i;:::-;28895:98;;:::o;34098:690::-;34235:4;34252:15;:2;:13;;;:15::i;:::-;34248:535;;;34307:2;34291:36;;;34328:12;:10;:12::i;:::-;34342:4;34348:7;34357:5;34291:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34278:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34539:1;34522:6;:13;:18;34518:215;;34555:61;;;;;;;;;;:::i;:::-;;;;;;;;34518:215;34701:6;34695:13;34686:6;34682:2;34678:15;34671:38;34278:464;34423:45;;;34413:55;;;:6;:55;;;;34406:62;;;;;34248:535;34771:4;34764:11;;34098:690;;;;;;;:::o;39429:113::-;39489:13;39522:12;39515:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39429:113;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;35250:141::-;;;;;:::o;35777:140::-;;;;;:::o;29248:1272::-;29353:20;29376:12;;29353:35;;29417:1;29403:16;;:2;:16;;;29395:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29594:21;29602:12;29594:7;:21::i;:::-;29593:22;29585:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29676:12;29664:8;:24;;29656:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29736:61;29766:1;29770:2;29774:12;29788:8;29736:21;:61::i;:::-;29806:30;29839:12;:16;29852:2;29839:16;;;;;;;;;;;;;;;29806:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29881:119;;;;;;;;29931:8;29901:11;:19;;;:39;;;;:::i;:::-;29881:119;;;;;;29984:8;29949:11;:24;;;:44;;;;:::i;:::-;29881:119;;;;;29862:12;:16;29875:2;29862:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30035:43;;;;;;;;30050:2;30035:43;;;;;;30061:15;30035:43;;;;;30007:11;:25;30019:12;30007:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30087:20;30110:12;30087:35;;30136:9;30131:281;30155:8;30151:1;:12;30131:281;;;30209:12;30205:2;30184:38;;30201:1;30184:38;;;;;;;;;;;;30249:59;30280:1;30284:2;30288:12;30302:5;30249:22;:59::i;:::-;30231:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;30390:14;;;;;:::i;:::-;;;;30165:3;;;;;:::i;:::-;;;;30131:281;;;;30435:12;30420;:27;;;;30454:60;30483:1;30487:2;30491:12;30505:8;30454:20;:60::i;:::-;29346:1174;;;29248:1272;;;:::o;2836:387::-;2896:4;3104:12;3171:7;3159:20;3151:28;;3214:1;3207:4;:8;3200:15;;;2836:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:117::-;10623:1;10620;10613:12;10637:117;10746:1;10743;10736:12;10777:568;10850:8;10860:6;10910:3;10903:4;10895:6;10891:17;10887:27;10877:122;;10918:79;;:::i;:::-;10877:122;11031:6;11018:20;11008:30;;11061:18;11053:6;11050:30;11047:117;;;11083:79;;:::i;:::-;11047:117;11197:4;11189:6;11185:17;11173:29;;11251:3;11243:4;11235:6;11231:17;11221:8;11217:32;11214:41;11211:128;;;11258:79;;:::i;:::-;11211:128;10777:568;;;;;:::o;11351:559::-;11437:6;11445;11494:2;11482:9;11473:7;11469:23;11465:32;11462:119;;;11500:79;;:::i;:::-;11462:119;11648:1;11637:9;11633:17;11620:31;11678:18;11670:6;11667:30;11664:117;;;11700:79;;:::i;:::-;11664:117;11813:80;11885:7;11876:6;11865:9;11861:22;11813:80;:::i;:::-;11795:98;;;;11591:312;11351:559;;;;;:::o;11916:180::-;11964:77;11961:1;11954:88;12061:4;12058:1;12051:15;12085:4;12082:1;12075:15;12102:320;12146:6;12183:1;12177:4;12173:12;12163:22;;12230:1;12224:4;12220:12;12251:18;12241:81;;12307:4;12299:6;12295:17;12285:27;;12241:81;12369:2;12361:6;12358:14;12338:18;12335:38;12332:84;;12388:18;;:::i;:::-;12332:84;12153:269;12102:320;;;:::o;12428:232::-;12568:34;12564:1;12556:6;12552:14;12545:58;12637:15;12632:2;12624:6;12620:15;12613:40;12428:232;:::o;12666:366::-;12808:3;12829:67;12893:2;12888:3;12829:67;:::i;:::-;12822:74;;12905:93;12994:3;12905:93;:::i;:::-;13023:2;13018:3;13014:12;13007:19;;12666:366;;;:::o;13038:419::-;13204:4;13242:2;13231:9;13227:18;13219:26;;13291:9;13285:4;13281:20;13277:1;13266:9;13262:17;13255:47;13319:131;13445:4;13319:131;:::i;:::-;13311:139;;13038:419;;;:::o;13463:221::-;13603:34;13599:1;13591:6;13587:14;13580:58;13672:4;13667:2;13659:6;13655:15;13648:29;13463:221;:::o;13690:366::-;13832:3;13853:67;13917:2;13912:3;13853:67;:::i;:::-;13846:74;;13929:93;14018:3;13929:93;:::i;:::-;14047:2;14042:3;14038:12;14031:19;;13690:366;;;:::o;14062:419::-;14228:4;14266:2;14255:9;14251:18;14243:26;;14315:9;14309:4;14305:20;14301:1;14290:9;14286:17;14279:47;14343:131;14469:4;14343:131;:::i;:::-;14335:139;;14062:419;;;:::o;14487:244::-;14627:34;14623:1;14615:6;14611:14;14604:58;14696:27;14691:2;14683:6;14679:15;14672:52;14487:244;:::o;14737:366::-;14879:3;14900:67;14964:2;14959:3;14900:67;:::i;:::-;14893:74;;14976:93;15065:3;14976:93;:::i;:::-;15094:2;15089:3;15085:12;15078:19;;14737:366;;;:::o;15109:419::-;15275:4;15313:2;15302:9;15298:18;15290:26;;15362:9;15356:4;15352:20;15348:1;15337:9;15333:17;15326:47;15390:131;15516:4;15390:131;:::i;:::-;15382:139;;15109:419;;;:::o;15534:221::-;15674:34;15670:1;15662:6;15658:14;15651:58;15743:4;15738:2;15730:6;15726:15;15719:29;15534:221;:::o;15761:366::-;15903:3;15924:67;15988:2;15983:3;15924:67;:::i;:::-;15917:74;;16000:93;16089:3;16000:93;:::i;:::-;16118:2;16113:3;16109:12;16102:19;;15761:366;;;:::o;16133:419::-;16299:4;16337:2;16326:9;16322:18;16314:26;;16386:9;16380:4;16376:20;16372:1;16361:9;16357:17;16350:47;16414:131;16540:4;16414:131;:::i;:::-;16406:139;;16133:419;;;:::o;16558:180::-;16606:77;16603:1;16596:88;16703:4;16700:1;16693:15;16727:4;16724:1;16717:15;16744:233;16783:3;16806:24;16824:5;16806:24;:::i;:::-;16797:33;;16852:66;16845:5;16842:77;16839:103;;16922:18;;:::i;:::-;16839:103;16969:1;16962:5;16958:13;16951:20;;16744:233;;;:::o;16983:::-;17123:34;17119:1;17111:6;17107:14;17100:58;17192:16;17187:2;17179:6;17175:15;17168:41;16983:233;:::o;17222:366::-;17364:3;17385:67;17449:2;17444:3;17385:67;:::i;:::-;17378:74;;17461:93;17550:3;17461:93;:::i;:::-;17579:2;17574:3;17570:12;17563:19;;17222:366;;;:::o;17594:419::-;17760:4;17798:2;17787:9;17783:18;17775:26;;17847:9;17841:4;17837:20;17833:1;17822:9;17818:17;17811:47;17875:131;18001:4;17875:131;:::i;:::-;17867:139;;17594:419;;;:::o;18019:182::-;18159:34;18155:1;18147:6;18143:14;18136:58;18019:182;:::o;18207:366::-;18349:3;18370:67;18434:2;18429:3;18370:67;:::i;:::-;18363:74;;18446:93;18535:3;18446:93;:::i;:::-;18564:2;18559:3;18555:12;18548:19;;18207:366;;;:::o;18579:419::-;18745:4;18783:2;18772:9;18768:18;18760:26;;18832:9;18826:4;18822:20;18818:1;18807:9;18803:17;18796:47;18860:131;18986:4;18860:131;:::i;:::-;18852:139;;18579:419;;;:::o;19004:222::-;19144:34;19140:1;19132:6;19128:14;19121:58;19213:5;19208:2;19200:6;19196:15;19189:30;19004:222;:::o;19232:366::-;19374:3;19395:67;19459:2;19454:3;19395:67;:::i;:::-;19388:74;;19471:93;19560:3;19471:93;:::i;:::-;19589:2;19584:3;19580:12;19573:19;;19232:366;;;:::o;19604:419::-;19770:4;19808:2;19797:9;19793:18;19785:26;;19857:9;19851:4;19847:20;19843:1;19832:9;19828:17;19821:47;19885:131;20011:4;19885:131;:::i;:::-;19877:139;;19604:419;;;:::o;20029:230::-;20169:34;20165:1;20157:6;20153:14;20146:58;20238:13;20233:2;20225:6;20221:15;20214:38;20029:230;:::o;20265:366::-;20407:3;20428:67;20492:2;20487:3;20428:67;:::i;:::-;20421:74;;20504:93;20593:3;20504:93;:::i;:::-;20622:2;20617:3;20613:12;20606:19;;20265:366;;;:::o;20637:419::-;20803:4;20841:2;20830:9;20826:18;20818:26;;20890:9;20884:4;20880:20;20876:1;20865:9;20861:17;20854:47;20918:131;21044:4;20918:131;:::i;:::-;20910:139;;20637:419;;;:::o;21062:167::-;21202:19;21198:1;21190:6;21186:14;21179:43;21062:167;:::o;21235:366::-;21377:3;21398:67;21462:2;21457:3;21398:67;:::i;:::-;21391:74;;21474:93;21563:3;21474:93;:::i;:::-;21592:2;21587:3;21583:12;21576:19;;21235:366;;;:::o;21607:419::-;21773:4;21811:2;21800:9;21796:18;21788:26;;21860:9;21854:4;21850:20;21846:1;21835:9;21831:17;21824:47;21888:131;22014:4;21888:131;:::i;:::-;21880:139;;21607:419;;;:::o;22032:171::-;22172:23;22168:1;22160:6;22156:14;22149:47;22032:171;:::o;22209:366::-;22351:3;22372:67;22436:2;22431:3;22372:67;:::i;:::-;22365:74;;22448:93;22537:3;22448:93;:::i;:::-;22566:2;22561:3;22557:12;22550:19;;22209:366;;;:::o;22581:419::-;22747:4;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22581:419;;;:::o;23006:305::-;23046:3;23065:20;23083:1;23065:20;:::i;:::-;23060:25;;23099:20;23117:1;23099:20;:::i;:::-;23094:25;;23253:1;23185:66;23181:74;23178:1;23175:81;23172:107;;;23259:18;;:::i;:::-;23172:107;23303:1;23300;23296:9;23289:16;;23006:305;;;;:::o;23317:168::-;23457:20;23453:1;23445:6;23441:14;23434:44;23317:168;:::o;23491:366::-;23633:3;23654:67;23718:2;23713:3;23654:67;:::i;:::-;23647:74;;23730:93;23819:3;23730:93;:::i;:::-;23848:2;23843:3;23839:12;23832:19;;23491:366;;;:::o;23863:419::-;24029:4;24067:2;24056:9;24052:18;24044:26;;24116:9;24110:4;24106:20;24102:1;24091:9;24087:17;24080:47;24144:131;24270:4;24144:131;:::i;:::-;24136:139;;23863:419;;;:::o;24288:348::-;24328:7;24351:20;24369:1;24351:20;:::i;:::-;24346:25;;24385:20;24403:1;24385:20;:::i;:::-;24380:25;;24573:1;24505:66;24501:74;24498:1;24495:81;24490:1;24483:9;24476:17;24472:105;24469:131;;;24580:18;;:::i;:::-;24469:131;24628:1;24625;24621:9;24610:20;;24288:348;;;;:::o;24642:181::-;24782:33;24778:1;24770:6;24766:14;24759:57;24642:181;:::o;24829:366::-;24971:3;24992:67;25056:2;25051:3;24992:67;:::i;:::-;24985:74;;25068:93;25157:3;25068:93;:::i;:::-;25186:2;25181:3;25177:12;25170:19;;24829:366;;;:::o;25201:419::-;25367:4;25405:2;25394:9;25390:18;25382:26;;25454:9;25448:4;25444:20;25440:1;25429:9;25425:17;25418:47;25482:131;25608:4;25482:131;:::i;:::-;25474:139;;25201:419;;;:::o;25626:176::-;25766:28;25762:1;25754:6;25750:14;25743:52;25626:176;:::o;25808:366::-;25950:3;25971:67;26035:2;26030:3;25971:67;:::i;:::-;25964:74;;26047:93;26136:3;26047:93;:::i;:::-;26165:2;26160:3;26156:12;26149:19;;25808:366;;;:::o;26180:419::-;26346:4;26384:2;26373:9;26369:18;26361:26;;26433:9;26427:4;26423:20;26419:1;26408:9;26404:17;26397:47;26461:131;26587:4;26461:131;:::i;:::-;26453:139;;26180:419;;;:::o;26605:238::-;26745:34;26741:1;26733:6;26729:14;26722:58;26814:21;26809:2;26801:6;26797:15;26790:46;26605:238;:::o;26849:366::-;26991:3;27012:67;27076:2;27071:3;27012:67;:::i;:::-;27005:74;;27088:93;27177:3;27088:93;:::i;:::-;27206:2;27201:3;27197:12;27190:19;;26849:366;;;:::o;27221:419::-;27387:4;27425:2;27414:9;27410:18;27402:26;;27474:9;27468:4;27464:20;27460:1;27449:9;27445:17;27438:47;27502:131;27628:4;27502:131;:::i;:::-;27494:139;;27221:419;;;:::o;27646:234::-;27786:34;27782:1;27774:6;27770:14;27763:58;27855:17;27850:2;27842:6;27838:15;27831:42;27646:234;:::o;27886:366::-;28028:3;28049:67;28113:2;28108:3;28049:67;:::i;:::-;28042:74;;28125:93;28214:3;28125:93;:::i;:::-;28243:2;28238:3;28234:12;28227:19;;27886:366;;;:::o;28258:419::-;28424:4;28462:2;28451:9;28447:18;28439:26;;28511:9;28505:4;28501:20;28497:1;28486:9;28482:17;28475:47;28539:131;28665:4;28539:131;:::i;:::-;28531:139;;28258:419;;;:::o;28683:148::-;28785:11;28822:3;28807:18;;28683:148;;;;:::o;28837:377::-;28943:3;28971:39;29004:5;28971:39;:::i;:::-;29026:89;29108:6;29103:3;29026:89;:::i;:::-;29019:96;;29124:52;29169:6;29164:3;29157:4;29150:5;29146:16;29124:52;:::i;:::-;29201:6;29196:3;29192:16;29185:23;;28947:267;28837:377;;;;:::o;29220:435::-;29400:3;29422:95;29513:3;29504:6;29422:95;:::i;:::-;29415:102;;29534:95;29625:3;29616:6;29534:95;:::i;:::-;29527:102;;29646:3;29639:10;;29220:435;;;;;:::o;29661:180::-;29709:77;29706:1;29699:88;29806:4;29803:1;29796:15;29830:4;29827:1;29820:15;29847:225;29987:34;29983:1;29975:6;29971:14;29964:58;30056:8;30051:2;30043:6;30039:15;30032:33;29847:225;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:237::-;31015:34;31011:1;31003:6;30999:14;30992:58;31084:20;31079:2;31071:6;31067:15;31060:45;30875:237;:::o;31118:366::-;31260:3;31281:67;31345:2;31340:3;31281:67;:::i;:::-;31274:74;;31357:93;31446:3;31357:93;:::i;:::-;31475:2;31470:3;31466:12;31459:19;;31118:366;;;:::o;31490:419::-;31656:4;31694:2;31683:9;31679:18;31671:26;;31743:9;31737:4;31733:20;31729:1;31718:9;31714:17;31707:47;31771:131;31897:4;31771:131;:::i;:::-;31763:139;;31490:419;;;:::o;31915:225::-;32055:34;32051:1;32043:6;32039:14;32032:58;32124:8;32119:2;32111:6;32107:15;32100:33;31915:225;:::o;32146:366::-;32288:3;32309:67;32373:2;32368:3;32309:67;:::i;:::-;32302:74;;32385:93;32474:3;32385:93;:::i;:::-;32503:2;32498:3;32494:12;32487:19;;32146:366;;;:::o;32518:419::-;32684:4;32722:2;32711:9;32707:18;32699:26;;32771:9;32765:4;32761:20;32757:1;32746:9;32742:17;32735:47;32799:131;32925:4;32799:131;:::i;:::-;32791:139;;32518:419;;;:::o;32943:224::-;33083:34;33079:1;33071:6;33067:14;33060:58;33152:7;33147:2;33139:6;33135:15;33128:32;32943:224;:::o;33173:366::-;33315:3;33336:67;33400:2;33395:3;33336:67;:::i;:::-;33329:74;;33412:93;33501:3;33412:93;:::i;:::-;33530:2;33525:3;33521:12;33514:19;;33173:366;;;:::o;33545:419::-;33711:4;33749:2;33738:9;33734:18;33726:26;;33798:9;33792:4;33788:20;33784:1;33773:9;33769:17;33762:47;33826:131;33952:4;33826:131;:::i;:::-;33818:139;;33545:419;;;:::o;33970:118::-;34007:7;34047:34;34040:5;34036:46;34025:57;;33970:118;;;:::o;34094:191::-;34134:4;34154:20;34172:1;34154:20;:::i;:::-;34149:25;;34188:20;34206:1;34188:20;:::i;:::-;34183:25;;34227:1;34224;34221:8;34218:34;;;34232:18;;:::i;:::-;34218:34;34277:1;34274;34270:9;34262:17;;34094:191;;;;:::o;34291:273::-;34331:3;34350:20;34368:1;34350:20;:::i;:::-;34345:25;;34384:20;34402:1;34384:20;:::i;:::-;34379:25;;34506:1;34470:34;34466:42;34463:1;34460:49;34457:75;;;34512:18;;:::i;:::-;34457:75;34556:1;34553;34549:9;34542:16;;34291:273;;;;:::o;34570:229::-;34710:34;34706:1;34698:6;34694:14;34687:58;34779:12;34774:2;34766:6;34762:15;34755:37;34570:229;:::o;34805:366::-;34947:3;34968:67;35032:2;35027:3;34968:67;:::i;:::-;34961:74;;35044:93;35133:3;35044:93;:::i;:::-;35162:2;35157:3;35153:12;35146:19;;34805:366;;;:::o;35177:419::-;35343:4;35381:2;35370:9;35366:18;35358:26;;35430:9;35424:4;35420:20;35416:1;35405:9;35401:17;35394:47;35458:131;35584:4;35458:131;:::i;:::-;35450:139;;35177:419;;;:::o;35602:191::-;35642:4;35662:20;35680:1;35662:20;:::i;:::-;35657:25;;35696:20;35714:1;35696:20;:::i;:::-;35691:25;;35735:1;35732;35729:8;35726:34;;;35740:18;;:::i;:::-;35726:34;35785:1;35782;35778:9;35770:17;;35602:191;;;;:::o;35799:171::-;35838:3;35861:24;35879:5;35861:24;:::i;:::-;35852:33;;35907:4;35900:5;35897:15;35894:41;;35915:18;;:::i;:::-;35894:41;35962:1;35955:5;35951:13;35944:20;;35799:171;;;:::o;35976:234::-;36116:34;36112:1;36104:6;36100:14;36093:58;36185:17;36180:2;36172:6;36168:15;36161:42;35976:234;:::o;36216:366::-;36358:3;36379:67;36443:2;36438:3;36379:67;:::i;:::-;36372:74;;36455:93;36544:3;36455:93;:::i;:::-;36573:2;36568:3;36564:12;36557:19;;36216:366;;;:::o;36588:419::-;36754:4;36792:2;36781:9;36777:18;36769:26;;36841:9;36835:4;36831:20;36827:1;36816:9;36812:17;36805:47;36869:131;36995:4;36869:131;:::i;:::-;36861:139;;36588:419;;;:::o;37013:98::-;37064:6;37098:5;37092:12;37082:22;;37013:98;;;:::o;37117:168::-;37200:11;37234:6;37229:3;37222:19;37274:4;37269:3;37265:14;37250:29;;37117:168;;;;:::o;37291:360::-;37377:3;37405:38;37437:5;37405:38;:::i;:::-;37459:70;37522:6;37517:3;37459:70;:::i;:::-;37452:77;;37538:52;37583:6;37578:3;37571:4;37564:5;37560:16;37538:52;:::i;:::-;37615:29;37637:6;37615:29;:::i;:::-;37610:3;37606:39;37599:46;;37381:270;37291:360;;;;:::o;37657:640::-;37852:4;37890:3;37879:9;37875:19;37867:27;;37904:71;37972:1;37961:9;37957:17;37948:6;37904:71;:::i;:::-;37985:72;38053:2;38042:9;38038:18;38029:6;37985:72;:::i;:::-;38067;38135:2;38124:9;38120:18;38111:6;38067:72;:::i;:::-;38186:9;38180:4;38176:20;38171:2;38160:9;38156:18;38149:48;38214:76;38285:4;38276:6;38214:76;:::i;:::-;38206:84;;37657:640;;;;;;;:::o;38303:141::-;38359:5;38390:6;38384:13;38375:22;;38406:32;38432:5;38406:32;:::i;:::-;38303:141;;;;:::o;38450:349::-;38519:6;38568:2;38556:9;38547:7;38543:23;38539:32;38536:119;;;38574:79;;:::i;:::-;38536:119;38694:1;38719:63;38774:7;38765:6;38754:9;38750:22;38719:63;:::i;:::-;38709:73;;38665:127;38450:349;;;;:::o;38805:180::-;38853:77;38850:1;38843:88;38950:4;38947:1;38940:15;38974:4;38971:1;38964:15;38991:185;39031:1;39048:20;39066:1;39048:20;:::i;:::-;39043:25;;39082:20;39100:1;39082:20;:::i;:::-;39077:25;;39121:1;39111:35;;39126:18;;:::i;:::-;39111:35;39168:1;39165;39161:9;39156:14;;38991:185;;;;:::o;39182:176::-;39214:1;39231:20;39249:1;39231:20;:::i;:::-;39226:25;;39265:20;39283:1;39265:20;:::i;:::-;39260:25;;39304:1;39294:35;;39309:18;;:::i;:::-;39294:35;39350:1;39347;39343:9;39338:14;;39182:176;;;;:::o;39364:220::-;39504:34;39500:1;39492:6;39488:14;39481:58;39573:3;39568:2;39560:6;39556:15;39549:28;39364:220;:::o;39590:366::-;39732:3;39753:67;39817:2;39812:3;39753:67;:::i;:::-;39746:74;;39829:93;39918:3;39829:93;:::i;:::-;39947:2;39942:3;39938:12;39931:19;;39590:366;;;:::o;39962:419::-;40128:4;40166:2;40155:9;40151:18;40143:26;;40215:9;40209:4;40205:20;40201:1;40190:9;40186:17;40179:47;40243:131;40369:4;40243:131;:::i;:::-;40235:139;;39962:419;;;:::o;40387:179::-;40527:31;40523:1;40515:6;40511:14;40504:55;40387:179;:::o;40572:366::-;40714:3;40735:67;40799:2;40794:3;40735:67;:::i;:::-;40728:74;;40811:93;40900:3;40811:93;:::i;:::-;40929:2;40924:3;40920:12;40913:19;;40572:366;;;:::o;40944:419::-;41110:4;41148:2;41137:9;41133:18;41125:26;;41197:9;41191:4;41187:20;41183:1;41172:9;41168:17;41161:47;41225:131;41351:4;41225:131;:::i;:::-;41217:139;;40944:419;;;:::o;41369:221::-;41509:34;41505:1;41497:6;41493:14;41486:58;41578:4;41573:2;41565:6;41561:15;41554:29;41369:221;:::o;41596:366::-;41738:3;41759:67;41823:2;41818:3;41759:67;:::i;:::-;41752:74;;41835:93;41924:3;41835:93;:::i;:::-;41953:2;41948:3;41944:12;41937:19;;41596:366;;;:::o;41968:419::-;42134:4;42172:2;42161:9;42157:18;42149:26;;42221:9;42215:4;42211:20;42207:1;42196:9;42192:17;42185:47;42249:131;42375:4;42249:131;:::i;:::-;42241:139;;41968:419;;;:::o

Swarm Source

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