ETH Price: $3,442.57 (+2.10%)
Gas: 5 Gwei

Token

BoredApeFrens (BAF)
 

Overview

Max Total Supply

7,555 BAF

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BAF
0x5164370B3BA971474d10da1D409ce8872Cb8ca97
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:
BoredApeFrens

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: 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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: BoredApeFrens.sol




 
 /*

============================================== Bored Ape Frens ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;


/**
 * @title Bored Ape Frens
 */
                                                                                                     
                                                                                            

 contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
 
contract BoredApeFrens is ERC721A, Ownable {
        
    bool public saleIsActive = true;
    uint256 public Price = 0.01 ether;
    
    string private _baseURIextended = "https://boredapefrens.s3.us-west-1.amazonaws.com/metadata/boredapefrens-metadata-";	     
    address private proxyRegistryAddress ;
    
	
    constructor() ERC721A("BoredApeFrens", "BAF",500) {
       
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }
    
    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function mint(uint256 numberOfTokens) external payable {    
        uint256 totalNum = 10000;
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");      
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        _safeMint(msg.sender, numberOfTokens);       	                
    }

    function mintBatch(address to, uint256 quantity) external onlyOwner {
        uint256 totalNum = 10000;
        uint256 maxBatchSize = 500;
        require(totalSupply() + quantity <= totalNum, "already mint out");
        require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");

        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(to, maxBatchSize);
        }
    }

    function gift(address _to,uint256 numberOfTokens) external onlyOwner {    
        uint256 totalNum = 10000; 
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");            
        _safeMint(_to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007556008805460ff60a01b1916600160a01b179055662386f26fc10000600955610120604052605160a081815290620025df60c03980516200005091600a916020909101906200019e565b503480156200005e57600080fd5b506040518060400160405280600d81526020016c426f7265644170654672656e7360981b815250604051806040016040528060038152602001622120a360e91b8152506101f460008111620001095760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200011e9060019060208601906200019e565b508151620001349060029060208501906200019e565b5060805250620001469050336200014c565b62000280565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ac9062000244565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b600181811c908216806200025957607f821691505b6020821081036200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612335620002aa6000396000818161162e015281816116580152611a7601526123356000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146104dd578063e985e9c5146104f3578063eb8d244414610513578063f2fde38b1461053457600080fd5b8063b88d4fde1461045d578063c87b56dd1461047d578063cbce4c971461049d578063d26ea6c0146104bd57600080fd5b806395d89b41116100d157806395d89b41146103ff5780639dfde20114610414578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780638da5cb5b146103c157806391b7f5ed146103df57600080fd5b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461032c57806355f804b31461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd14610297578063248b71fc146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d3a565b610554565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c1565b6040516101f39190611daf565b34801561022a57600080fd5b5061023e610239366004611dc2565b610653565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611df0565b6106e3565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611e1c565b6107fa565b3480156102c357600080fd5b506102766102d2366004611df0565b610805565b3480156102e357600080fd5b506102896102f2366004611df0565b610911565b34801561030357600080fd5b50610276610a7d565b34801561031857600080fd5b50610276610327366004611e1c565b610b68565b34801561033857600080fd5b50610289610347366004611dc2565b610b83565b34801561035857600080fd5b50610276610367366004611ee9565b610be5565b34801561037857600080fd5b5061023e610387366004611dc2565b610c26565b34801561039857600080fd5b506102896103a7366004611f32565b610c38565b3480156103b857600080fd5b50610276610cc9565b3480156103cd57600080fd5b506008546001600160a01b031661023e565b3480156103eb57600080fd5b506102766103fa366004611dc2565b610cff565b34801561040b57600080fd5b50610211610d2e565b34801561042057600080fd5b5061028960095481565b610276610438366004611dc2565b610d3d565b34801561044957600080fd5b50610276610458366004611f4f565b610dda565b34801561046957600080fd5b50610276610478366004611f8d565b610e9e565b34801561048957600080fd5b50610211610498366004611dc2565b610ed7565b3480156104a957600080fd5b506102766104b8366004611df0565b610fa4565b3480156104c957600080fd5b506102766104d8366004611f32565b61100e565b3480156104e957600080fd5b5061028960075481565b3480156104ff57600080fd5b506101e761050e36600461200d565b61105a565b34801561051f57600080fd5b506008546101e790600160a01b900460ff1681565b34801561054057600080fd5b5061027661054f366004611f32565b61111a565b60006001600160e01b031982166380ac58cd60e01b148061058557506001600160e01b03198216635b5e139f60e01b145b806105a057506001600160e01b0319821663780e9d6360e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d09061203b565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc9061203b565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000610660826000541190565b6106c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610c26565b9050806001600160a01b0316836001600160a01b03160361075c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106be565b336001600160a01b03821614806107785750610778813361105a565b6107ea5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106be565b6107f58383836111b2565b505050565b6107f583838361120e565b6008546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106be90612075565b6127106101f4818361084060005490565b61084a91906120c0565b11156108685760405162461bcd60e51b81526004016106be906120d8565b6108728184612118565b156108d45760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106be565b60006108e0828561212c565b905060005b81811015610909576108f78684611592565b8061090181612140565b9150506108e5565b505050505050565b600061091c83610c38565b82106109755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106be565b600080549080805b83811015610a1d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109d057805192505b876001600160a01b0316836001600160a01b031603610a0a578684036109fc575093506105bb92505050565b83610a0681612140565b9450505b5080610a1581612140565b91505061097d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106be565b6008546001600160a01b03163314610aa75760405162461bcd60e51b81526004016106be90612075565b604051600090339047908381818185875af1925050503d8060008114610ae9576040519150601f19603f3d011682016040523d82523d6000602084013e610aee565b606091505b5050905080610b655760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106be565b50565b6107f583838360405180602001604052806000815250610e9e565b600080548210610be15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106be565b5090565b6008546001600160a01b03163314610c0f5760405162461bcd60e51b81526004016106be90612075565b8051610c2290600a906020840190611c94565b5050565b6000610c31826115ac565b5192915050565b60006001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cf35760405162461bcd60e51b81526004016106be90612075565b610cfd6000611756565b565b6008546001600160a01b03163314610d295760405162461bcd60e51b81526004016106be90612075565b600955565b6060600280546105d09061203b565b6127108082610d4b60005490565b610d5591906120c0565b1115610d735760405162461bcd60e51b81526004016106be906120d8565b3482600954610d829190612159565b1115610dd05760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106be565b610c223383611592565b336001600160a01b03831603610e325760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ea984848461120e565b610eb5848484846117a8565b610ed15760405162461bcd60e51b81526004016106be90612178565b50505050565b6060610ee4826000541190565b610f485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106be565b6000610f526118a9565b90506000815111610f725760405180602001604052806000815250610f9d565b80610f7c846118b8565b604051602001610f8d9291906121cb565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016106be90612075565b6127108082610fdc60005490565b610fe691906120c0565b11156110045760405162461bcd60e51b81526004016106be906120d8565b6107f58383611592565b6008546001600160a01b031633146110385760405162461bcd60e51b81526004016106be90612075565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906121fa565b6001600160a01b0316036110e85760019150506105bb565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146111445760405162461bcd60e51b81526004016106be90612075565b6001600160a01b0381166111a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106be565b610b6581611756565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611219826115ac565b80519091506000906001600160a01b0316336001600160a01b0316148061125057503361124584610653565b6001600160a01b0316145b8061126257508151611262903361105a565b9050806112cc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106be565b846001600160a01b031682600001516001600160a01b0316146113405760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106be565b6001600160a01b0384166113a45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106be565b6113b460008484600001516111b2565b6001600160a01b03851660009081526004602052604081208054600192906113e69084906001600160801b0316612217565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114329185911661223f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ba8460016120c0565b6000818152600360205260409020549091506001600160a01b031661154c576114e4816000541190565b1561154c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610909565b610c228282604051806020016040528060008152506119b9565b60408051808201909152600080825260208201526115cb826000541190565b61162a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106be565b60007f0000000000000000000000000000000000000000000000000000000000000000831061168b5761167d7f000000000000000000000000000000000000000000000000000000000000000084612261565b6116889060016120c0565b90505b825b8181106116f5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116e257949350505050565b50806116ed81612278565b91505061168d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106be565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561189e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ec90339089908890889060040161228f565b6020604051808303816000875af1925050508015611827575060408051601f3d908101601f19168201909252611824918101906122cc565b60015b611884573d808015611855576040519150601f19603f3d011682016040523d82523d6000602084013e61185a565b606091505b50805160000361187c5760405162461bcd60e51b81526004016106be90612178565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611112565b506001949350505050565b6060600a80546105d09061203b565b6060816000036118df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190957806118f381612140565b91506119029050600a8361212c565b91506118e3565b60008167ffffffffffffffff81111561192457611924611e5d565b6040519080825280601f01601f19166020018201604052801561194e576020820181803683370190505b5090505b841561111257611963600183612261565b9150611970600a86612118565b61197b9060306120c0565b60f81b818381518110611990576119906122e9565b60200101906001600160f81b031916908160001a9053506119b2600a8661212c565b9450611952565b6000546001600160a01b038416611a1c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106be565b611a27816000541190565b15611a745760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106be565b7f0000000000000000000000000000000000000000000000000000000000000000831115611aef5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106be565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b4b90879061223f565b6001600160801b03168152602001858360200151611b69919061223f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c895760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c4d60008884886117a8565b611c695760405162461bcd60e51b81526004016106be90612178565b81611c7381612140565b9250508080611c8190612140565b915050611c00565b506000819055610909565b828054611ca09061203b565b90600052602060002090601f016020900481019282611cc25760008555611d08565b82601f10611cdb57805160ff1916838001178555611d08565b82800160010185558215611d08579182015b82811115611d08578251825591602001919060010190611ced565b50610be19291505b80821115610be15760008155600101611d10565b6001600160e01b031981168114610b6557600080fd5b600060208284031215611d4c57600080fd5b8135610f9d81611d24565b60005b83811015611d72578181015183820152602001611d5a565b83811115610ed15750506000910152565b60008151808452611d9b816020860160208601611d57565b601f01601f19169290920160200192915050565b602081526000610f9d6020830184611d83565b600060208284031215611dd457600080fd5b5035919050565b6001600160a01b0381168114610b6557600080fd5b60008060408385031215611e0357600080fd5b8235611e0e81611ddb565b946020939093013593505050565b600080600060608486031215611e3157600080fd5b8335611e3c81611ddb565b92506020840135611e4c81611ddb565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8e57611e8e611e5d565b604051601f8501601f19908116603f01168101908282118183101715611eb657611eb6611e5d565b81604052809350858152868686011115611ecf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611efb57600080fd5b813567ffffffffffffffff811115611f1257600080fd5b8201601f81018413611f2357600080fd5b61111284823560208401611e73565b600060208284031215611f4457600080fd5b8135610f9d81611ddb565b60008060408385031215611f6257600080fd5b8235611f6d81611ddb565b915060208301358015158114611f8257600080fd5b809150509250929050565b60008060008060808587031215611fa357600080fd5b8435611fae81611ddb565b93506020850135611fbe81611ddb565b925060408501359150606085013567ffffffffffffffff811115611fe157600080fd5b8501601f81018713611ff257600080fd5b61200187823560208401611e73565b91505092959194509250565b6000806040838503121561202057600080fd5b823561202b81611ddb565b91506020830135611f8281611ddb565b600181811c9082168061204f57607f821691505b60208210810361206f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120d3576120d36120aa565b500190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261212757612127612102565b500690565b60008261213b5761213b612102565b500490565b600060018201612152576121526120aa565b5060010190565b6000816000190483118215151615612173576121736120aa565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516121dd818460208801611d57565b8351908301906121f1818360208801611d57565b01949350505050565b60006020828403121561220c57600080fd5b8151610f9d81611ddb565b60006001600160801b0383811690831681811015612237576122376120aa565b039392505050565b60006001600160801b038083168185168083038211156121f1576121f16120aa565b600082821015612273576122736120aa565b500390565b600081612287576122876120aa565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c290830184611d83565b9695505050505050565b6000602082840312156122de57600080fd5b8151610f9d81611d24565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a43aee4888f5dbd690fdd610f2a2ddabc638c25dd011a1c11938afa62275298864736f6c634300080d003368747470733a2f2f626f7265646170656672656e732e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f626f7265646170656672656e732d6d657461646174612d

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146104dd578063e985e9c5146104f3578063eb8d244414610513578063f2fde38b1461053457600080fd5b8063b88d4fde1461045d578063c87b56dd1461047d578063cbce4c971461049d578063d26ea6c0146104bd57600080fd5b806395d89b41116100d157806395d89b41146103ff5780639dfde20114610414578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780638da5cb5b146103c157806391b7f5ed146103df57600080fd5b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461032c57806355f804b31461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd14610297578063248b71fc146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611d3a565b610554565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c1565b6040516101f39190611daf565b34801561022a57600080fd5b5061023e610239366004611dc2565b610653565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611df0565b6106e3565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611e1c565b6107fa565b3480156102c357600080fd5b506102766102d2366004611df0565b610805565b3480156102e357600080fd5b506102896102f2366004611df0565b610911565b34801561030357600080fd5b50610276610a7d565b34801561031857600080fd5b50610276610327366004611e1c565b610b68565b34801561033857600080fd5b50610289610347366004611dc2565b610b83565b34801561035857600080fd5b50610276610367366004611ee9565b610be5565b34801561037857600080fd5b5061023e610387366004611dc2565b610c26565b34801561039857600080fd5b506102896103a7366004611f32565b610c38565b3480156103b857600080fd5b50610276610cc9565b3480156103cd57600080fd5b506008546001600160a01b031661023e565b3480156103eb57600080fd5b506102766103fa366004611dc2565b610cff565b34801561040b57600080fd5b50610211610d2e565b34801561042057600080fd5b5061028960095481565b610276610438366004611dc2565b610d3d565b34801561044957600080fd5b50610276610458366004611f4f565b610dda565b34801561046957600080fd5b50610276610478366004611f8d565b610e9e565b34801561048957600080fd5b50610211610498366004611dc2565b610ed7565b3480156104a957600080fd5b506102766104b8366004611df0565b610fa4565b3480156104c957600080fd5b506102766104d8366004611f32565b61100e565b3480156104e957600080fd5b5061028960075481565b3480156104ff57600080fd5b506101e761050e36600461200d565b61105a565b34801561051f57600080fd5b506008546101e790600160a01b900460ff1681565b34801561054057600080fd5b5061027661054f366004611f32565b61111a565b60006001600160e01b031982166380ac58cd60e01b148061058557506001600160e01b03198216635b5e139f60e01b145b806105a057506001600160e01b0319821663780e9d6360e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d09061203b565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc9061203b565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000610660826000541190565b6106c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610c26565b9050806001600160a01b0316836001600160a01b03160361075c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106be565b336001600160a01b03821614806107785750610778813361105a565b6107ea5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106be565b6107f58383836111b2565b505050565b6107f583838361120e565b6008546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106be90612075565b6127106101f4818361084060005490565b61084a91906120c0565b11156108685760405162461bcd60e51b81526004016106be906120d8565b6108728184612118565b156108d45760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106be565b60006108e0828561212c565b905060005b81811015610909576108f78684611592565b8061090181612140565b9150506108e5565b505050505050565b600061091c83610c38565b82106109755760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106be565b600080549080805b83811015610a1d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109d057805192505b876001600160a01b0316836001600160a01b031603610a0a578684036109fc575093506105bb92505050565b83610a0681612140565b9450505b5080610a1581612140565b91505061097d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106be565b6008546001600160a01b03163314610aa75760405162461bcd60e51b81526004016106be90612075565b604051600090339047908381818185875af1925050503d8060008114610ae9576040519150601f19603f3d011682016040523d82523d6000602084013e610aee565b606091505b5050905080610b655760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106be565b50565b6107f583838360405180602001604052806000815250610e9e565b600080548210610be15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106be565b5090565b6008546001600160a01b03163314610c0f5760405162461bcd60e51b81526004016106be90612075565b8051610c2290600a906020840190611c94565b5050565b6000610c31826115ac565b5192915050565b60006001600160a01b038216610ca45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cf35760405162461bcd60e51b81526004016106be90612075565b610cfd6000611756565b565b6008546001600160a01b03163314610d295760405162461bcd60e51b81526004016106be90612075565b600955565b6060600280546105d09061203b565b6127108082610d4b60005490565b610d5591906120c0565b1115610d735760405162461bcd60e51b81526004016106be906120d8565b3482600954610d829190612159565b1115610dd05760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106be565b610c223383611592565b336001600160a01b03831603610e325760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ea984848461120e565b610eb5848484846117a8565b610ed15760405162461bcd60e51b81526004016106be90612178565b50505050565b6060610ee4826000541190565b610f485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106be565b6000610f526118a9565b90506000815111610f725760405180602001604052806000815250610f9d565b80610f7c846118b8565b604051602001610f8d9291906121cb565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016106be90612075565b6127108082610fdc60005490565b610fe691906120c0565b11156110045760405162461bcd60e51b81526004016106be906120d8565b6107f58383611592565b6008546001600160a01b031633146110385760405162461bcd60e51b81526004016106be90612075565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa1580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906121fa565b6001600160a01b0316036110e85760019150506105bb565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146111445760405162461bcd60e51b81526004016106be90612075565b6001600160a01b0381166111a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106be565b610b6581611756565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611219826115ac565b80519091506000906001600160a01b0316336001600160a01b0316148061125057503361124584610653565b6001600160a01b0316145b8061126257508151611262903361105a565b9050806112cc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106be565b846001600160a01b031682600001516001600160a01b0316146113405760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106be565b6001600160a01b0384166113a45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106be565b6113b460008484600001516111b2565b6001600160a01b03851660009081526004602052604081208054600192906113e69084906001600160801b0316612217565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114329185911661223f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ba8460016120c0565b6000818152600360205260409020549091506001600160a01b031661154c576114e4816000541190565b1561154c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610909565b610c228282604051806020016040528060008152506119b9565b60408051808201909152600080825260208201526115cb826000541190565b61162a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106be565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061168b5761167d7f00000000000000000000000000000000000000000000000000000000000001f484612261565b6116889060016120c0565b90505b825b8181106116f5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116e257949350505050565b50806116ed81612278565b91505061168d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106be565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561189e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ec90339089908890889060040161228f565b6020604051808303816000875af1925050508015611827575060408051601f3d908101601f19168201909252611824918101906122cc565b60015b611884573d808015611855576040519150601f19603f3d011682016040523d82523d6000602084013e61185a565b606091505b50805160000361187c5760405162461bcd60e51b81526004016106be90612178565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611112565b506001949350505050565b6060600a80546105d09061203b565b6060816000036118df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190957806118f381612140565b91506119029050600a8361212c565b91506118e3565b60008167ffffffffffffffff81111561192457611924611e5d565b6040519080825280601f01601f19166020018201604052801561194e576020820181803683370190505b5090505b841561111257611963600183612261565b9150611970600a86612118565b61197b9060306120c0565b60f81b818381518110611990576119906122e9565b60200101906001600160f81b031916908160001a9053506119b2600a8661212c565b9450611952565b6000546001600160a01b038416611a1c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106be565b611a27816000541190565b15611a745760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106be565b7f00000000000000000000000000000000000000000000000000000000000001f4831115611aef5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106be565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b4b90879061223f565b6001600160801b03168152602001858360200151611b69919061223f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c895760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c4d60008884886117a8565b611c695760405162461bcd60e51b81526004016106be90612178565b81611c7381612140565b9250508080611c8190612140565b915050611c00565b506000819055610909565b828054611ca09061203b565b90600052602060002090601f016020900481019282611cc25760008555611d08565b82601f10611cdb57805160ff1916838001178555611d08565b82800160010185558215611d08579182015b82811115611d08578251825591602001919060010190611ced565b50610be19291505b80821115610be15760008155600101611d10565b6001600160e01b031981168114610b6557600080fd5b600060208284031215611d4c57600080fd5b8135610f9d81611d24565b60005b83811015611d72578181015183820152602001611d5a565b83811115610ed15750506000910152565b60008151808452611d9b816020860160208601611d57565b601f01601f19169290920160200192915050565b602081526000610f9d6020830184611d83565b600060208284031215611dd457600080fd5b5035919050565b6001600160a01b0381168114610b6557600080fd5b60008060408385031215611e0357600080fd5b8235611e0e81611ddb565b946020939093013593505050565b600080600060608486031215611e3157600080fd5b8335611e3c81611ddb565b92506020840135611e4c81611ddb565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e8e57611e8e611e5d565b604051601f8501601f19908116603f01168101908282118183101715611eb657611eb6611e5d565b81604052809350858152868686011115611ecf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611efb57600080fd5b813567ffffffffffffffff811115611f1257600080fd5b8201601f81018413611f2357600080fd5b61111284823560208401611e73565b600060208284031215611f4457600080fd5b8135610f9d81611ddb565b60008060408385031215611f6257600080fd5b8235611f6d81611ddb565b915060208301358015158114611f8257600080fd5b809150509250929050565b60008060008060808587031215611fa357600080fd5b8435611fae81611ddb565b93506020850135611fbe81611ddb565b925060408501359150606085013567ffffffffffffffff811115611fe157600080fd5b8501601f81018713611ff257600080fd5b61200187823560208401611e73565b91505092959194509250565b6000806040838503121561202057600080fd5b823561202b81611ddb565b91506020830135611f8281611ddb565b600181811c9082168061204f57607f821691505b60208210810361206f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156120d3576120d36120aa565b500190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261212757612127612102565b500690565b60008261213b5761213b612102565b500490565b600060018201612152576121526120aa565b5060010190565b6000816000190483118215151615612173576121736120aa565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516121dd818460208801611d57565b8351908301906121f1818360208801611d57565b01949350505050565b60006020828403121561220c57600080fd5b8151610f9d81611ddb565b60006001600160801b0383811690831681811015612237576122376120aa565b039392505050565b60006001600160801b038083168185168083038211156121f1576121f16120aa565b600082821015612273576122736120aa565b500390565b600081612287576122876120aa565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c290830184611d83565b9695505050505050565b6000602082840312156122de57600080fd5b8151610f9d81611d24565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a43aee4888f5dbd690fdd610f2a2ddabc638c25dd011a1c11938afa62275298864736f6c634300080d0033

Deployed Bytecode Sourcemap

40058:2632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24646:370;;;;;;;;;;-1:-1:-1;24646:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24646:370:0;;;;;;;;26372:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27897:204::-;;;;;;;;;;-1:-1:-1;27897:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27897:204:0;1528:203:1;27460:379:0;;;;;;;;;;-1:-1:-1;27460:379:0;;;;;:::i;:::-;;:::i;:::-;;23210:94;;;;;;;;;;-1:-1:-1;23263:7:0;23286:12;23210:94;;;2338:25:1;;;2326:2;2311:18;23210:94:0;2192:177:1;28747:142:0;;;;;;;;;;-1:-1:-1;28747:142:0;;;;;:::i;:::-;;:::i;41687:480::-;;;;;;;;;;-1:-1:-1;41687:480:0;;;;;:::i;:::-;;:::i;23838:744::-;;;;;;;;;;-1:-1:-1;23838:744:0;;;;;:::i;:::-;;:::i;42435:250::-;;;;;;;;;;;;;:::i;28952:157::-;;;;;;;;;;-1:-1:-1;28952:157:0;;;;;:::i;:::-;;:::i;23373:177::-;;;;;;;;;;-1:-1:-1;23373:177:0;;;;;:::i;:::-;;:::i;40460:111::-;;;;;;;;;;-1:-1:-1;40460:111:0;;;;;:::i;:::-;;:::i;26195:118::-;;;;;;;;;;-1:-1:-1;26195:118:0;;;;;:::i;:::-;;:::i;25072:211::-;;;;;;;;;;-1:-1:-1;25072:211:0;;;;;:::i;:::-;;:::i;38573:103::-;;;;;;;;;;;;;:::i;37922:87::-;;;;;;;;;;-1:-1:-1;37995:6:0;;-1:-1:-1;;;;;37995:6:0;37922:87;;40704:88;;;;;;;;;;-1:-1:-1;40704:88:0;;;;;:::i;:::-;;:::i;26527:98::-;;;;;;;;;;;;;:::i;40156:33::-;;;;;;;;;;;;;;;;41330:349;;;;;;:::i;:::-;;:::i;28165:274::-;;;;;;;;;;-1:-1:-1;28165:274:0;;;;;:::i;:::-;;:::i;29172:311::-;;;;;;;;;;-1:-1:-1;29172:311:0;;;;;:::i;:::-;;:::i;26688:394::-;;;;;;;;;;-1:-1:-1;26688:394:0;;;;;:::i;:::-;;:::i;42175:252::-;;;;;;;;;;-1:-1:-1;42175:252:0;;;;;:::i;:::-;;:::i;40804:128::-;;;;;;;;;;-1:-1:-1;40804:128:0;;;;;:::i;:::-;;:::i;33503:43::-;;;;;;;;;;;;;;;;40940:382;;;;;;;;;;-1:-1:-1;40940:382:0;;;;;:::i;:::-;;:::i;40118:31::-;;;;;;;;;;-1:-1:-1;40118:31:0;;;;-1:-1:-1;;;40118:31:0;;;;;;38831:201;;;;;;;;;;-1:-1:-1;38831:201:0;;;;;:::i;:::-;;:::i;24646:370::-;24773:4;-1:-1:-1;;;;;;24803:40:0;;-1:-1:-1;;;24803:40:0;;:99;;-1:-1:-1;;;;;;;24854:48:0;;-1:-1:-1;;;24854:48:0;24803:99;:160;;;-1:-1:-1;;;;;;;24913:50:0;;-1:-1:-1;;;24913:50:0;24803:160;:207;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;24974:36;24789:221;24646:370;-1:-1:-1;;24646:370:0:o;26372:94::-;26426:13;26455:5;26448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26372:94;:::o;27897:204::-;27965:7;27989:16;27997:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;27989:16;27981:74;;;;-1:-1:-1;;;27981:74:0;;6513:2:1;27981:74:0;;;6495:21:1;6552:2;6532:18;;;6525:30;6591:34;6571:18;;;6564:62;-1:-1:-1;;;6642:18:1;;;6635:43;6695:19;;27981:74:0;;;;;;;;;-1:-1:-1;28071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28071:24:0;;27897:204::o;27460:379::-;27529:13;27545:24;27561:7;27545:15;:24::i;:::-;27529:40;;27590:5;-1:-1:-1;;;;;27584:11:0;:2;-1:-1:-1;;;;;27584:11:0;;27576:58;;;;-1:-1:-1;;;27576:58:0;;6927:2:1;27576:58:0;;;6909:21:1;6966:2;6946:18;;;6939:30;7005:34;6985:18;;;6978:62;-1:-1:-1;;;7056:18:1;;;7049:32;7098:19;;27576:58:0;6725:398:1;27576:58:0;21118:10;-1:-1:-1;;;;;27659:21:0;;;;:62;;-1:-1:-1;27684:37:0;27701:5;21118:10;40940:382;:::i;27684:37::-;27643:153;;;;-1:-1:-1;;;27643:153:0;;7330:2:1;27643:153:0;;;7312:21:1;7369:2;7349:18;;;7342:30;7408:34;7388:18;;;7381:62;7479:27;7459:18;;;7452:55;7524:19;;27643:153:0;7128:421:1;27643:153:0;27805:28;27814:2;27818:7;27827:5;27805:8;:28::i;:::-;27522:317;27460:379;;:::o;28747:142::-;28855:28;28865:4;28871:2;28875:7;28855:9;:28::i;41687:480::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;41785:5:::1;41824:3;41785:5:::0;41862:8;41846:13:::1;23263:7:::0;23286:12;;23210:94;41846:13:::1;:24;;;;:::i;:::-;:36;;41838:65;;;;-1:-1:-1::0;;;41838:65:0::1;;;;;;;:::i;:::-;41922:23;41933:12:::0;41922:8;:23:::1;:::i;:::-;:28:::0;41914:85:::1;;;::::0;-1:-1:-1;;;41914:85:0;;8976:2:1;41914:85:0::1;::::0;::::1;8958:21:1::0;9015:2;8995:18;;;8988:30;9054:34;9034:18;;;9027:62;-1:-1:-1;;;9105:18:1;;;9098:42;9157:19;;41914:85:0::1;8774:408:1::0;41914:85:0::1;42012:17;42032:23;42043:12:::0;42032:8;:23:::1;:::i;:::-;42012:43;;42071:9;42066:94;42090:9;42086:1;:13;42066:94;;;42121:27;42131:2;42135:12;42121:9;:27::i;:::-;42101:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42066:94;;;;41755:412;;;41687:480:::0;;:::o;23838:744::-;23947:7;23982:16;23992:5;23982:9;:16::i;:::-;23974:5;:24;23966:71;;;;-1:-1:-1;;;23966:71:0;;9654:2:1;23966:71:0;;;9636:21:1;9693:2;9673:18;;;9666:30;9732:34;9712:18;;;9705:62;-1:-1:-1;;;9783:18:1;;;9776:32;9825:19;;23966:71:0;9452:398:1;23966:71:0;24044:22;23286:12;;;24044:22;;24164:350;24188:14;24184:1;:18;24164:350;;;24218:31;24252:14;;;:11;:14;;;;;;;;;24218:48;;;;;;;;;-1:-1:-1;;;;;24218:48:0;;;;;-1:-1:-1;;;24218:48:0;;;;;;;;;;;;24279:28;24275:89;;24340:14;;;-1:-1:-1;24275:89:0;24397:5;-1:-1:-1;;;;;24376:26:0;:17;-1:-1:-1;;;;;24376:26:0;;24372:135;;24434:5;24419:11;:20;24415:59;;-1:-1:-1;24461:1:0;-1:-1:-1;24454:8:0;;-1:-1:-1;;;24454:8:0;24415:59;24484:13;;;;:::i;:::-;;;;24372:135;-1:-1:-1;24204:3:0;;;;:::i;:::-;;;;24164:350;;;-1:-1:-1;24520:56:0;;-1:-1:-1;;;24520:56:0;;10057:2:1;24520:56:0;;;10039:21:1;10096:2;10076:18;;;10069:30;10135:34;10115:18;;;10108:62;-1:-1:-1;;;10186:18:1;;;10179:44;10240:19;;24520:56:0;9855:410:1;42435:250:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;42502:49:::1;::::0;42484:12:::1;::::0;42502:10:::1;::::0;42525:21:::1;::::0;42484:12;42502:49;42484:12;42502:49;42525:21;42502:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42483:68;;;42584:7;42562:115;;;::::0;-1:-1:-1;;;42562:115:0;;10682:2:1;42562:115:0::1;::::0;::::1;10664:21:1::0;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;10831:28;10811:18;;;10804:56;10877:19;;42562:115:0::1;10480:422:1::0;42562:115:0::1;42472:213;42435:250::o:0;28952:157::-;29064:39;29081:4;29087:2;29091:7;29064:39;;;;;;;;;;;;:16;:39::i;23373:177::-;23440:7;23286:12;;23464:5;:21;23456:69;;;;-1:-1:-1;;;23456:69:0;;11109:2:1;23456:69:0;;;11091:21:1;11148:2;11128:18;;;11121:30;11187:34;11167:18;;;11160:62;-1:-1:-1;;;11238:18:1;;;11231:33;11281:19;;23456:69:0;10907:399:1;23456:69:0;-1:-1:-1;23539:5:0;23373:177::o;40460:111::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40536:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40460:111:::0;:::o;26195:118::-;26259:7;26282:20;26294:7;26282:11;:20::i;:::-;:25;;26195:118;-1:-1:-1;;26195:118:0:o;25072:211::-;25136:7;-1:-1:-1;;;;;25160:19:0;;25152:75;;;;-1:-1:-1;;;25152:75:0;;11513:2:1;25152:75:0;;;11495:21:1;11552:2;11532:18;;;11525:30;11591:34;11571:18;;;11564:62;-1:-1:-1;;;11642:18:1;;;11635:41;11693:19;;25152:75:0;11311:407:1;25152:75:0;-1:-1:-1;;;;;;25249:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25249:27:0;;25072:211::o;38573:103::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;38638:30:::1;38665:1;38638:18;:30::i;:::-;38573:103::o:0;40704:88::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40768:5:::1;:16:::0;40704:88::o;26527:98::-;26583:13;26612:7;26605:14;;;;;:::i;41330:349::-;41419:5;;41459:14;41443:13;23263:7;23286:12;;23210:94;41443:13;:30;;;;:::i;:::-;:42;;41435:71;;;;-1:-1:-1;;;41435:71:0;;;;;;;:::i;:::-;41559:9;41540:14;41532:5;;:22;;;;:::i;:::-;41531:37;;41523:76;;;;-1:-1:-1;;;41523:76:0;;12098:2:1;41523:76:0;;;12080:21:1;12137:2;12117:18;;;12110:30;12176:28;12156:18;;;12149:56;12222:18;;41523:76:0;11896:350:1;41523:76:0;41610:37;41620:10;41632:14;41610:9;:37::i;28165:274::-;21118:10;-1:-1:-1;;;;;28256:24:0;;;28248:63;;;;-1:-1:-1;;;28248:63:0;;12453:2:1;28248:63:0;;;12435:21:1;12492:2;12472:18;;;12465:30;12531:28;12511:18;;;12504:56;12577:18;;28248:63:0;12251:350:1;28248:63:0;21118:10;28320:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28320:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28320:53:0;;;;;;;;;;28385:48;;540:41:1;;;28320:42:0;;21118:10;28385:48;;513:18:1;28385:48:0;;;;;;;28165:274;;:::o;29172:311::-;29309:28;29319:4;29325:2;29329:7;29309:9;:28::i;:::-;29360:48;29383:4;29389:2;29393:7;29402:5;29360:22;:48::i;:::-;29344:133;;;;-1:-1:-1;;;29344:133:0;;;;;;;:::i;:::-;29172:311;;;;:::o;26688:394::-;26786:13;26827:16;26835:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;26827:16;26811:97;;;;-1:-1:-1;;;26811:97:0;;13228:2:1;26811:97:0;;;13210:21:1;13267:2;13247:18;;;13240:30;13306:34;13286:18;;;13279:62;-1:-1:-1;;;13357:18:1;;;13350:45;13412:19;;26811:97:0;13026:411:1;26811:97:0;26917:21;26941:10;:8;:10::i;:::-;26917:34;;26996:1;26978:7;26972:21;:25;:104;;;;;;;;;;;;;;;;;27033:7;27042:18;:7;:16;:18::i;:::-;27016:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26972:104;26958:118;26688:394;-1:-1:-1;;;26688:394:0:o;42175:252::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;42278:5:::1;::::0;42319:14;42303:13:::1;23263:7:::0;23286:12;;23210:94;42303:13:::1;:30;;;;:::i;:::-;:42;;42295:71;;;;-1:-1:-1::0;;;42295:71:0::1;;;;;;;:::i;:::-;42389:30;42399:3;42404:14;42389:9;:30::i;40804:128::-:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40889:20:::1;:35:::0;;-1:-1:-1;;;;;;40889:35:0::1;-1:-1:-1::0;;;;;40889:35:0;;;::::1;::::0;;;::::1;::::0;;40804:128::o;40940:382::-;41131:20;;41175:28;;-1:-1:-1;;;41175:28:0;;-1:-1:-1;;;;;1692:32:1;;;41175:28:0;;;1674:51:1;41065:4:0;;41131:20;;;41167:49;;;;41131:20;;41175:21;;1647:18:1;;41175:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41167:49:0;;41163:93;;41240:4;41233:11;;;;;41163:93;-1:-1:-1;;;;;28647:25:0;;;28624:4;28647:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41275:39;41268:46;40940:382;-1:-1:-1;;;;40940:382:0:o;38831:201::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38920:22:0;::::1;38912:73;;;::::0;-1:-1:-1;;;38912:73:0;;14404:2:1;38912:73:0::1;::::0;::::1;14386:21:1::0;14443:2;14423:18;;;14416:30;14482:34;14462:18;;;14455:62;-1:-1:-1;;;14533:18:1;;;14526:36;14579:19;;38912:73:0::1;14202:402:1::0;38912:73:0::1;38996:28;39015:8;38996:18;:28::i;33325:172::-:0;33422:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33422:29:0;-1:-1:-1;;;;;33422:29:0;;;;;;;;;33463:28;;33422:24;;33463:28;;;;;;;33325:172;;;:::o;31690:1529::-;31787:35;31825:20;31837:7;31825:11;:20::i;:::-;31896:18;;31787:58;;-1:-1:-1;31854:22:0;;-1:-1:-1;;;;;31880:34:0;21118:10;-1:-1:-1;;;;;31880:34:0;;:81;;;-1:-1:-1;21118:10:0;31925:20;31937:7;31925:11;:20::i;:::-;-1:-1:-1;;;;;31925:36:0;;31880:81;:142;;;-1:-1:-1;31989:18:0;;31972:50;;21118:10;40940:382;:::i;31972:50::-;31854:169;;32048:17;32032:101;;;;-1:-1:-1;;;32032:101:0;;14811:2:1;32032:101:0;;;14793:21:1;14850:2;14830:18;;;14823:30;14889:34;14869:18;;;14862:62;-1:-1:-1;;;14940:18:1;;;14933:48;14998:19;;32032:101:0;14609:414:1;32032:101:0;32180:4;-1:-1:-1;;;;;32158:26:0;:13;:18;;;-1:-1:-1;;;;;32158:26:0;;32142:98;;;;-1:-1:-1;;;32142:98:0;;15230:2:1;32142:98:0;;;15212:21:1;15269:2;15249:18;;;15242:30;15308:34;15288:18;;;15281:62;-1:-1:-1;;;15359:18:1;;;15352:36;15405:19;;32142:98:0;15028:402:1;32142:98:0;-1:-1:-1;;;;;32255:16:0;;32247:66;;;;-1:-1:-1;;;32247:66:0;;15637:2:1;32247:66:0;;;15619:21:1;15676:2;15656:18;;;15649:30;15715:34;15695:18;;;15688:62;-1:-1:-1;;;15766:18:1;;;15759:35;15811:19;;32247:66:0;15435:401:1;32247:66:0;32422:49;32439:1;32443:7;32452:13;:18;;;32422:8;:49::i;:::-;-1:-1:-1;;;;;32480:18:0;;;;;;:12;:18;;;;;:31;;32510:1;;32480:18;:31;;32510:1;;-1:-1:-1;;;;;32480:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32480:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32518:16:0;;-1:-1:-1;32518:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32518:16:0;;:29;;-1:-1:-1;;32518:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32518:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32577:43:0;;;;;;;;-1:-1:-1;;;;;32577:43:0;;;;;;32603:15;32577:43;;;;;;;;;-1:-1:-1;32554:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32554:66:0;-1:-1:-1;;;;;;32554:66:0;;;;;;;;;;;32870:11;32566:7;-1:-1:-1;32870:11:0;:::i;:::-;32933:1;32892:24;;;:11;:24;;;;;:29;32848:33;;-1:-1:-1;;;;;;32892:29:0;32888:236;;32950:20;32958:11;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;32950:20;32946:171;;;33010:97;;;;;;;;33037:18;;-1:-1:-1;;;;;33010:97:0;;;;;;33068:28;;;;33010:97;;;;;;;;;;-1:-1:-1;32983:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32983:124:0;-1:-1:-1;;;;;;32983:124:0;;;;;;;;;;;;32946:171;33156:7;33152:2;-1:-1:-1;;;;;33137:27:0;33146:4;-1:-1:-1;;;;;33137:27:0;;;;;;;;;;;33171:42;29172:311;29833:98;29898:27;29908:2;29912:8;29898:27;;;;;;;;;;;;:9;:27::i;25535:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25652:16:0;25660:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;25652:16;25644:71;;;;-1:-1:-1;;;25644:71:0;;16552:2:1;25644:71:0;;;16534:21:1;16591:2;16571:18;;;16564:30;16630:34;16610:18;;;16603:62;-1:-1:-1;;;16681:18:1;;;16674:40;16731:19;;25644:71:0;16350:406:1;25644:71:0;25724:26;25772:12;25761:7;:23;25757:93;;25816:22;25826:12;25816:7;:22;:::i;:::-;:26;;25841:1;25816:26;:::i;:::-;25795:47;;25757:93;25878:7;25858:212;25895:18;25887:4;:26;25858:212;;25932:31;25966:17;;;:11;:17;;;;;;;;;25932:51;;;;;;;;;-1:-1:-1;;;;;25932:51:0;;;;;-1:-1:-1;;;25932:51:0;;;;;;;;;;;;25996:28;25992:71;;26044:9;25535:606;-1:-1:-1;;;;25535:606:0:o;25992:71::-;-1:-1:-1;25915:6:0;;;;:::i;:::-;;;;25858:212;;;-1:-1:-1;26078:57:0;;-1:-1:-1;;;26078:57:0;;17234:2:1;26078:57:0;;;17216:21:1;17273:2;17253:18;;;17246:30;17312:34;17292:18;;;17285:62;-1:-1:-1;;;17363:18:1;;;17356:45;17418:19;;26078:57:0;17032:411:1;39192:191:0;39285:6;;;-1:-1:-1;;;;;39302:17:0;;;-1:-1:-1;;;;;;39302:17:0;;;;;;;39335:40;;39285:6;;;39302:17;39285:6;;39335:40;;39266:16;;39335:40;39255:128;39192:191;:::o;35036:690::-;35173:4;-1:-1:-1;;;;;35190:13:0;;3652:19;:23;35186:535;;35229:72;;-1:-1:-1;;;35229:72:0;;-1:-1:-1;;;;;35229:36:0;;;;;:72;;21118:10;;35280:4;;35286:7;;35295:5;;35229:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35229:72:0;;;;;;;;-1:-1:-1;;35229:72:0;;;;;;;;;;;;:::i;:::-;;;35216:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35460:6;:13;35477:1;35460:18;35456:215;;35493:61;;-1:-1:-1;;;35493:61:0;;;;;;;:::i;35456:215::-;35639:6;35633:13;35624:6;35620:2;35616:15;35609:38;35216:464;-1:-1:-1;;;;;;35351:55:0;-1:-1:-1;;;35351:55:0;;-1:-1:-1;35344:62:0;;35186:535;-1:-1:-1;35709:4:0;35036:690;;;;;;:::o;40579:117::-;40639:13;40672:16;40665:23;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30186:1272;30291:20;30314:12;-1:-1:-1;;;;;30341:16:0;;30333:62;;;;-1:-1:-1;;;30333:62:0;;18530:2:1;30333:62:0;;;18512:21:1;18569:2;18549:18;;;18542:30;18608:34;18588:18;;;18581:62;-1:-1:-1;;;18659:18:1;;;18652:31;18700:19;;30333:62:0;18328:397:1;30333:62:0;30532:21;30540:12;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;30532:21;30531:22;30523:64;;;;-1:-1:-1;;;30523:64:0;;18932:2:1;30523:64:0;;;18914:21:1;18971:2;18951:18;;;18944:30;19010:31;18990:18;;;18983:59;19059:18;;30523:64:0;18730:353:1;30523:64:0;30614:12;30602:8;:24;;30594:71;;;;-1:-1:-1;;;30594:71:0;;19290:2:1;30594:71:0;;;19272:21:1;19329:2;19309:18;;;19302:30;19368:34;19348:18;;;19341:62;-1:-1:-1;;;19419:18:1;;;19412:32;19461:19;;30594:71:0;19088:398:1;30594:71:0;-1:-1:-1;;;;;30777:16:0;;30744:30;30777:16;;;:12;:16;;;;;;;;;30744:49;;;;;;;;;-1:-1:-1;;;;;30744:49:0;;;;;-1:-1:-1;;;30744:49:0;;;;;;;;;;;30819:119;;;;;;;;30839:19;;30744:49;;30819:119;;;30839:39;;30869:8;;30839:39;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;30922:8;30887:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;;-1:-1:-1;;;;;30800:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30800:138:0;;;;;;;;;;;;30973:43;;;;;;;;;;;30999:15;30973:43;;;;;;;;30945:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30945:71:0;-1:-1:-1;;;;;;30945:71:0;;;;;;;;;;;;;;;;;;30957:12;;31069:281;31093:8;31089:1;:12;31069:281;;;31122:38;;31147:12;;-1:-1:-1;;;;;31122:38:0;;;31139:1;;31122:38;;31139:1;;31122:38;31187:59;31218:1;31222:2;31226:12;31240:5;31187:22;:59::i;:::-;31169:150;;;;-1:-1:-1;;;31169:150:0;;;;;;;:::i;:::-;31328:14;;;;:::i;:::-;;;;31103:3;;;;;:::i;:::-;;;;31069:281;;;-1:-1:-1;31358:12:0;:27;;;31392:60;29172:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:127::-;2896:10;2891:3;2887:20;2884:1;2877:31;2927:4;2924:1;2917:15;2951:4;2948:1;2941:15;2967:632;3032:5;3062:18;3103:2;3095:6;3092:14;3089:40;;;3109:18;;:::i;:::-;3184:2;3178:9;3152:2;3238:15;;-1:-1:-1;;3234:24:1;;;3260:2;3230:33;3226:42;3214:55;;;3284:18;;;3304:22;;;3281:46;3278:72;;;3330:18;;:::i;:::-;3370:10;3366:2;3359:22;3399:6;3390:15;;3429:6;3421;3414:22;3469:3;3460:6;3455:3;3451:16;3448:25;3445:45;;;3486:1;3483;3476:12;3445:45;3536:6;3531:3;3524:4;3516:6;3512:17;3499:44;3591:1;3584:4;3575:6;3567;3563:19;3559:30;3552:41;;;;2967:632;;;;;:::o;3604:451::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3782:9;3769:23;3815:18;3807:6;3804:30;3801:50;;;3847:1;3844;3837:12;3801:50;3870:22;;3923:4;3915:13;;3911:27;-1:-1:-1;3901:55:1;;3952:1;3949;3942:12;3901:55;3975:74;4041:7;4036:2;4023:16;4018:2;4014;4010:11;3975:74;:::i;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4312:416::-;4377:6;4385;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4493:9;4480:23;4512:31;4537:5;4512:31;:::i;:::-;4562:5;-1:-1:-1;4619:2:1;4604:18;;4591:32;4661:15;;4654:23;4642:36;;4632:64;;4692:1;4689;4682:12;4632:64;4715:7;4705:17;;;4312:416;;;;;:::o;4733:795::-;4828:6;4836;4844;4852;4905:3;4893:9;4884:7;4880:23;4876:33;4873:53;;;4922:1;4919;4912:12;4873:53;4961:9;4948:23;4980:31;5005:5;4980:31;:::i;:::-;5030:5;-1:-1:-1;5087:2:1;5072:18;;5059:32;5100:33;5059:32;5100:33;:::i;:::-;5152:7;-1:-1:-1;5206:2:1;5191:18;;5178:32;;-1:-1:-1;5261:2:1;5246:18;;5233:32;5288:18;5277:30;;5274:50;;;5320:1;5317;5310:12;5274:50;5343:22;;5396:4;5388:13;;5384:27;-1:-1:-1;5374:55:1;;5425:1;5422;5415:12;5374:55;5448:74;5514:7;5509:2;5496:16;5491:2;5487;5483:11;5448:74;:::i;:::-;5438:84;;;4733:795;;;;;;;:::o;5533:388::-;5601:6;5609;5662:2;5650:9;5641:7;5637:23;5633:32;5630:52;;;5678:1;5675;5668:12;5630:52;5717:9;5704:23;5736:31;5761:5;5736:31;:::i;:::-;5786:5;-1:-1:-1;5843:2:1;5828:18;;5815:32;5856:33;5815:32;5856:33;:::i;5926:380::-;6005:1;6001:12;;;;6048;;;6069:61;;6123:4;6115:6;6111:17;6101:27;;6069:61;6176:2;6168:6;6165:14;6145:18;6142:38;6139:161;;6222:10;6217:3;6213:20;6210:1;6203:31;6257:4;6254:1;6247:15;6285:4;6282:1;6275:15;6139:161;;5926:380;;;:::o;7554:356::-;7756:2;7738:21;;;7775:18;;;7768:30;7834:34;7829:2;7814:18;;7807:62;7901:2;7886:18;;7554:356::o;7915:127::-;7976:10;7971:3;7967:20;7964:1;7957:31;8007:4;8004:1;7997:15;8031:4;8028:1;8021:15;8047:128;8087:3;8118:1;8114:6;8111:1;8108:13;8105:39;;;8124:18;;:::i;:::-;-1:-1:-1;8160:9:1;;8047:128::o;8180:340::-;8382:2;8364:21;;;8421:2;8401:18;;;8394:30;-1:-1:-1;;;8455:2:1;8440:18;;8433:46;8511:2;8496:18;;8180:340::o;8525:127::-;8586:10;8581:3;8577:20;8574:1;8567:31;8617:4;8614:1;8607:15;8641:4;8638:1;8631:15;8657:112;8689:1;8715;8705:35;;8720:18;;:::i;:::-;-1:-1:-1;8754:9:1;;8657:112::o;9187:120::-;9227:1;9253;9243:35;;9258:18;;:::i;:::-;-1:-1:-1;9292:9:1;;9187:120::o;9312:135::-;9351:3;9372:17;;;9369:43;;9392:18;;:::i;:::-;-1:-1:-1;9439:1:1;9428:13;;9312:135::o;11723:168::-;11763:7;11829:1;11825;11821:6;11817:14;11814:1;11811:21;11806:1;11799:9;11792:17;11788:45;11785:71;;;11836:18;;:::i;:::-;-1:-1:-1;11876:9:1;;11723:168::o;12606:415::-;12808:2;12790:21;;;12847:2;12827:18;;;12820:30;12886:34;12881:2;12866:18;;12859:62;-1:-1:-1;;;12952:2:1;12937:18;;12930:49;13011:3;12996:19;;12606:415::o;13442:470::-;13621:3;13659:6;13653:13;13675:53;13721:6;13716:3;13709:4;13701:6;13697:17;13675:53;:::i;:::-;13791:13;;13750:16;;;;13813:57;13791:13;13750:16;13847:4;13835:17;;13813:57;:::i;:::-;13886:20;;13442:470;-1:-1:-1;;;;13442:470:1:o;13917:280::-;14016:6;14069:2;14057:9;14048:7;14044:23;14040:32;14037:52;;;14085:1;14082;14075:12;14037:52;14117:9;14111:16;14136:31;14161:5;14136:31;:::i;15841:246::-;15881:4;-1:-1:-1;;;;;15994:10:1;;;;15964;;16016:12;;;16013:38;;;16031:18;;:::i;:::-;16068:13;;15841:246;-1:-1:-1;;;15841:246:1:o;16092:253::-;16132:3;-1:-1:-1;;;;;16221:2:1;16218:1;16214:10;16251:2;16248:1;16244:10;16282:3;16278:2;16274:12;16269:3;16266:21;16263:47;;;16290:18;;:::i;16761:125::-;16801:4;16829:1;16826;16823:8;16820:34;;;16834:18;;:::i;:::-;-1:-1:-1;16871:9:1;;16761:125::o;16891:136::-;16930:3;16958:5;16948:39;;16967:18;;:::i;:::-;-1:-1:-1;;;17003:18:1;;16891:136::o;17448:489::-;-1:-1:-1;;;;;17717:15:1;;;17699:34;;17769:15;;17764:2;17749:18;;17742:43;17816:2;17801:18;;17794:34;;;17864:3;17859:2;17844:18;;17837:31;;;17642:4;;17885:46;;17911:19;;17903:6;17885:46;:::i;:::-;17877:54;17448:489;-1:-1:-1;;;;;;17448:489:1:o;17942:249::-;18011:6;18064:2;18052:9;18043:7;18039:23;18035:32;18032:52;;;18080:1;18077;18070:12;18032:52;18112:9;18106:16;18131:30;18155:5;18131:30;:::i;18196:127::-;18257:10;18252:3;18248:20;18245:1;18238:31;18288:4;18285:1;18278:15;18312:4;18309:1;18302:15

Swarm Source

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