ETH Price: $3,184.84 (+1.64%)
Gas: 6 Gwei

Token

Hertz (HERTZ)
 

Overview

Max Total Supply

8,121 HERTZ

Holders

2,212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HERTZ
0xe271f2b51f8660cb93bd98a693919c637b93adef
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:
Hertz

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 3 of 7: HertzCity.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.15;

import './ERC721A.sol';
import './IERC2981Royalties.sol';
import './Ownable.sol';
import './SafeMath.sol';
import './ReentrancyGuard.sol';
import './Address.sol';

contract Hertz is ERC721A, Ownable, IERC2981Royalties,ReentrancyGuard{
  using SafeMath for uint256;
  using Address for address payable;
  bool private whitelistSaleActive;
  bool private publicSaleActive;
  bool private  mintListSaleActive;
  mapping(address=>bool) public whitelistedAddresses;
  mapping(address=>bool) public mintListAddresses;

  mapping(address=>uint256) public whitelistMintedCount;
  mapping(address=>uint256) public mintListMintedCount;

  uint256 public presaleMintTotal;
  uint256 public mintListMintedTotal;
  uint256 public whitelistMintedTotal;

  string private tokenBaseURI;
  string private baseExtension = ".json";

  uint256 constant TOTAL_SUPPLY=8121;
  uint256 constant PRESALE_SUPPLY=4121;
  uint256 constant WHITELIST_SUPPLY=4000;
  uint256 constant MINTLIST_SUPPLY=4000;

  uint256 constant PUBLIC_MINT_LIMIT_PER_ADDR=8121;
  uint256 constant WHITELIST_MINT_LIMIT_PER_ADDR=2;
  uint256 constant MINTLIST_LIMIT_PER_ADDR=3;

  uint256 constant PRESALE_MINT_PRICE=0;
  uint256 constant PUBLIC_MINT_PRICE=0.3 ether;
  uint256 constant WHITELIST_MINT_PRICE=0.22 ether;
  uint256 constant MINTLIST_MINT_PRICE=0.2 ether;

  address payable treasuryWallet;

  constructor() ERC721A("Hertz","HERTZ"){
    treasuryWallet=payable(msg.sender);
    whitelistMintedTotal=0;
    mintListMintedTotal=0;
    presaleMintTotal=0;
  }

  receive() external payable {}

  function royaltyInfo(uint256 _tokenId, uint256 _value)
      external
      view
      returns (address _receiver, uint256 _royaltyAmount){
        if(_tokenId<=TOTAL_SUPPLY){
        return (treasuryWallet,_value.mul(75).div(1000));
        }

      }

  function getTreasuryWallet() public view returns(address){
      return treasuryWallet;
    }

  function setTreasuryWallet(address _wallet) external onlyOwner{
    require(_wallet!=address(0x0));
    treasuryWallet=payable(_wallet);
  }

  function isPublicSaleActive() external view returns (bool){
    return publicSaleActive;
  }

  function isWhitelistSaleActive() external view returns (bool){
    return whitelistSaleActive;
  }

  function isMintListSaleActive() external view returns (bool){
    return mintListSaleActive;
  }

  function getMintListPrice() public pure returns (uint256){
    return MINTLIST_MINT_PRICE;
  }
  function getPresalePrice() public pure returns (uint256){
    return PRESALE_MINT_PRICE;
  }

  function getWhitelistPrice() public pure returns (uint256){
    return WHITELIST_MINT_PRICE;
  }

  function getPublicPrice() public pure returns (uint256){
    return PUBLIC_MINT_PRICE;
  }

  function setPublicSaleActive(bool newStatus) external onlyOwner{
    publicSaleActive=newStatus;
  }

  function setWhitelistSaleActive(bool newStatus) external onlyOwner{
    whitelistSaleActive=newStatus;
  }

  function setMintListSaleActive(bool newStatus) external onlyOwner{
    mintListSaleActive=newStatus;
  }

  function addToWhitelist(address[] memory addresses) external onlyOwner {
    for(uint256 i=0;i<addresses.length;i++){
      whitelistedAddresses[addresses[i]]=true;
    }
  }

  function addToMintList(address[] memory addresses) external onlyOwner {
    for(uint256 i=0;i<addresses.length;i++){
      mintListAddresses[addresses[i]]=true;
    }
  }

  function setBaseExtension(string memory _newBaseExtension) external  onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

  function presaleMint(address recipient,uint256 quantity) external payable onlyOwner nonReentrant{
    require(quantity>0);
    require(msg.value>=PRESALE_MINT_PRICE*quantity);
    require(presaleMintTotal+quantity<=PRESALE_SUPPLY);
    require(_totalMinted()+quantity<=TOTAL_SUPPLY);

    _safeMint(recipient,quantity);
  }

  function publicMint(uint256 quantity) external payable nonReentrant{
    require(publicSaleActive);
    require(quantity>0);
    require(quantity<=PUBLIC_MINT_LIMIT_PER_ADDR);
    require(msg.value>=PUBLIC_MINT_PRICE*quantity);
    require(_totalMinted()+quantity<=TOTAL_SUPPLY);

    _safeMint(msg.sender,quantity);
  }

  function mintListMint(uint256 quantity) external payable nonReentrant{
    require(mintListSaleActive);
    require(quantity>0);
    require(mintListAddresses[msg.sender]);
    require(msg.value>=MINTLIST_MINT_PRICE*quantity);
    require(_totalMinted()+quantity<=TOTAL_SUPPLY);
    require(mintListMintedTotal+quantity<=MINTLIST_SUPPLY);
    require(mintListMintedCount[msg.sender]+quantity<=MINTLIST_LIMIT_PER_ADDR);

    _safeMint(msg.sender,quantity);
    mintListMintedTotal+=quantity;
    mintListMintedCount[msg.sender]=mintListMintedCount[msg.sender]+quantity;
  }

  function whitelistMint(uint256 quantity) external payable nonReentrant{
    require(whitelistSaleActive);
    require(quantity>0);
    require(whitelistedAddresses[msg.sender]);
    require(msg.value>=WHITELIST_MINT_PRICE*quantity);
    require(_totalMinted()+quantity<=TOTAL_SUPPLY);
    require(whitelistMintedTotal+quantity<=WHITELIST_SUPPLY);
    require(whitelistMintedCount[msg.sender]+quantity<=WHITELIST_MINT_LIMIT_PER_ADDR);

    _safeMint(msg.sender,quantity);
    whitelistMintedTotal+=quantity;
    whitelistMintedCount[msg.sender]=whitelistMintedCount[msg.sender]+quantity;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory){
        require(tokenId<TOTAL_SUPPLY,"ERC721Metadata: URI query for nonexistent token");

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

  function withdraw() external {
    treasuryWallet.sendValue(address(this).balance);
  }

  function setBaseURI(string memory _base) external onlyOwner{
    tokenBaseURI=_base;
  }

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

File 1 of 7: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity 0.8.15;

/**
 * @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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0

pragma solidity 0.8.15;


/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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 virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 4 of 7: IERC2981Royalties.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.15;

interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

File 5 of 7: Ownable.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.15;

abstract contract Context {
	function _msgSender() internal view virtual returns (address) {
		return msg.sender;
	}
}

contract Ownable is Context {
	address private _owner;
	address private _previousOwner;
	event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

	constructor () {
		address msgSender = _msgSender();
		_owner = msgSender;
		emit OwnershipTransferred(address(0), msgSender);
	}

	function owner() public view returns (address) {
		return _owner;
	}

	modifier onlyOwner() {
		require(_owner == _msgSender(), "Ownable: caller is not the owner");
		_;
	}

	function renounceOwnership() public virtual onlyOwner {
		emit OwnershipTransferred(_owner, address(0));
		_owner = address(0);
	}

}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT


pragma solidity 0.8.15;


library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToMintList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTreasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"isMintListSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintListAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintListMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintListMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setMintListSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setWhitelistSaleActive","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":"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":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608090815264173539b7b760d91b60a052601490620000269082620001ad565b503480156200003457600080fd5b50604051806040016040528060058152602001642432b93a3d60d91b815250604051806040016040528060058152602001642422a92a2d60d91b8152508160029081620000829190620001ad565b506003620000918282620001ad565b50506000808055600880546001600160a01b031916339081179091556040519092508291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600a55601580546001600160a01b0319163317905560006012819055601181905560105562000279565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013357607f821691505b6020821081036200015457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a857600081815260208120601f850160051c81016020861015620001835750805b601f850160051c820191505b81811015620001a4578281556001016200018f565b5050505b505050565b81516001600160401b03811115620001c957620001c962000108565b620001e181620001da84546200011e565b846200015a565b602080601f831160018114620002195760008415620002005750858301515b600019600386901b1c1916600185901b178555620001a4565b600085815260208120601f198616915b828110156200024a5788860151825594840194600190910190840162000229565b5085821015620002695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61224580620002896000396000f3fe6080604052600436106102765760003560e01c80636a78f2271161014f5780639e1aa4da116100c1578063c87b56dd1161007a578063c87b56dd14610745578063da3ef23f14610765578063e2e06fa314610785578063e3491ca1146107a5578063e985e9c5146107d2578063fa1bbb7f146107f257600080fd5b80639e1aa4da1461069c578063a22cb465146106b2578063a5bde5ef146106d2578063a8602fea146106ed578063b88d4fde1461070d578063b98451cf1461072d57600080fd5b8063868ff4a211610113578063868ff4a21461061a5780638da5cb5b1461062d57806395d89b411461064b57806396b1ce21146106605780639aebec05146106735780639b6a67091461068957600080fd5b80636a78f2271461059157806370a08231146105b1578063715018a6146105d157806377ee4b0f146105e65780637f649783146105fa57600080fd5b806323b872dd116101e857806333acccd8116101ac57806333acccd8146104d1578063363e86fe146105015780633ccfd60b1461051c57806342842e0e1461053157806355f804b3146105515780636352211e1461057157600080fd5b806323b872dd146104215780632a55205a146104415780632b070324146104805780632c035b74146104a05780632db11544146104be57600080fd5b80630da51cd71161023a5780630da51cd7146103635780630ede5aa614610388578063165e46c4146103a857806318160ddd146103be578063194e80ce146103d75780631e84c4131461040457600080fd5b806301ffc9a71461028257806306c933d8146102b757806306fdde03146102e7578063081812fc14610309578063095ea7b31461034157600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611b09565b610810565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102a26102d2366004611b42565b600c6020526000908152604090205460ff1681565b3480156102f357600080fd5b506102fc610862565b6040516102ae9190611bb5565b34801561031557600080fd5b50610329610324366004611bc8565b6108f4565b6040516001600160a01b0390911681526020016102ae565b34801561034d57600080fd5b5061036161035c366004611be1565b610938565b005b34801561036f57600080fd5b5067030d98d59a9600005b6040519081526020016102ae565b34801561039457600080fd5b506103616103a3366004611c1b565b610a0a565b3480156103b457600080fd5b5061037a60115481565b3480156103ca57600080fd5b506001546000540361037a565b3480156103e357600080fd5b5061037a6103f2366004611b42565b600f6020526000908152604090205481565b34801561041057600080fd5b50600b54610100900460ff166102a2565b34801561042d57600080fd5b5061036161043c366004611c36565b610a59565b34801561044d57600080fd5b5061046161045c366004611c72565b610a69565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561048c57600080fd5b5061036161049b366004611cdb565b610aa4565b3480156104ac57600080fd5b506015546001600160a01b0316610329565b6103616104cc366004611bc8565b610b3a565b3480156104dd57600080fd5b506102a26104ec366004611b42565b600d6020526000908152604090205460ff1681565b34801561050d57600080fd5b50670429d069189e000061037a565b34801561052857600080fd5b50610361610bc9565b34801561053d57600080fd5b5061036161054c366004611c36565b610be1565b34801561055d57600080fd5b5061036161056c366004611de0565b610bfc565b34801561057d57600080fd5b5061032961058c366004611bc8565b610c32565b34801561059d57600080fd5b506103616105ac366004611c1b565b610c3d565b3480156105bd57600080fd5b5061037a6105cc366004611b42565b610c7a565b3480156105dd57600080fd5b50610361610cc3565b3480156105f257600080fd5b50600061037a565b34801561060657600080fd5b50610361610615366004611cdb565b610d37565b610361610628366004611bc8565b610dc9565b34801561063957600080fd5b506008546001600160a01b0316610329565b34801561065757600080fd5b506102fc610ee4565b61036161066e366004611bc8565b610ef3565b34801561067f57600080fd5b5061037a60105481565b610361610697366004611be1565b611014565b3480156106a857600080fd5b5061037a60125481565b3480156106be57600080fd5b506103616106cd366004611e29565b6110bc565b3480156106de57600080fd5b506702c68af0bb14000061037a565b3480156106f957600080fd5b50610361610708366004611b42565b611151565b34801561071957600080fd5b50610361610728366004611e5c565b6111b0565b34801561073957600080fd5b50600b5460ff166102a2565b34801561075157600080fd5b506102fc610760366004611bc8565b6111fa565b34801561077157600080fd5b50610361610780366004611de0565b6112c4565b34801561079157600080fd5b506103616107a0366004611c1b565b6112fa565b3480156107b157600080fd5b5061037a6107c0366004611b42565b600e6020526000908152604090205481565b3480156107de57600080fd5b506102a26107ed366004611ed8565b61133e565b3480156107fe57600080fd5b50600b5462010000900460ff166102a2565b60006301ffc9a760e01b6001600160e01b03198316148061084157506380ac58cd60e01b6001600160e01b03198316145b8061085c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087190611f02565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90611f02565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff8261136c565b61091c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094382611393565b9050806001600160a01b0316836001600160a01b0316036109775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109ae57610991813361133e565b6109ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a3d5760405162461bcd60e51b8152600401610a3490611f3c565b60405180910390fd5b600b8054911515620100000262ff000019909216919091179055565b610a648383836113fa565b505050565b600080611fb98411610a9d576015546001600160a01b0316610a986103e8610a9286604b6115b4565b90611636565b915091505b9250929050565b6008546001600160a01b03163314610ace5760405162461bcd60e51b8152600401610a3490611f3c565b60005b8151811015610b36576001600d6000848481518110610af257610af2611f71565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b2e81611f9d565b915050610ad1565b5050565b610b42611678565b600b54610100900460ff16610b5657600080fd5b60008111610b6357600080fd5b611fb9811115610b7257600080fd5b610b8481670429d069189e0000611fb6565b341015610b9057600080fd5b611fb981610b9d60005490565b610ba79190611fd5565b1115610bb257600080fd5b610bbc33826116d1565b610bc66001600a55565b50565b601554610bdf906001600160a01b0316476116eb565b565b610a64838383604051806020016040528060008152506111b0565b6008546001600160a01b03163314610c265760405162461bcd60e51b8152600401610a3490611f3c565b6013610b368282612033565b600061085c82611393565b6008546001600160a01b03163314610c675760405162461bcd60e51b8152600401610a3490611f3c565b600b805460ff1916911515919091179055565b600081600003610c9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610a3490611f3c565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b6008546001600160a01b03163314610d615760405162461bcd60e51b8152600401610a3490611f3c565b60005b8151811015610b36576001600c6000848481518110610d8557610d85611f71565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dc181611f9d565b915050610d64565b610dd1611678565b600b5460ff16610de057600080fd5b60008111610ded57600080fd5b336000908152600c602052604090205460ff16610e0957600080fd5b610e1b8167030d98d59a960000611fb6565b341015610e2757600080fd5b611fb981610e3460005490565b610e3e9190611fd5565b1115610e4957600080fd5b610fa081601254610e5a9190611fd5565b1115610e6557600080fd5b336000908152600e6020526040902054600290610e83908390611fd5565b1115610e8e57600080fd5b610e9833826116d1565b8060126000828254610eaa9190611fd5565b9091555050336000908152600e6020526040902054610eca908290611fd5565b336000908152600e6020526040902055610bc66001600a55565b60606003805461087190611f02565b610efb611678565b600b5462010000900460ff16610f1057600080fd5b60008111610f1d57600080fd5b336000908152600d602052604090205460ff16610f3957600080fd5b610f4b816702c68af0bb140000611fb6565b341015610f5757600080fd5b611fb981610f6460005490565b610f6e9190611fd5565b1115610f7957600080fd5b610fa081601154610f8a9190611fd5565b1115610f9557600080fd5b336000908152600f6020526040902054600390610fb3908390611fd5565b1115610fbe57600080fd5b610fc833826116d1565b8060116000828254610fda9190611fd5565b9091555050336000908152600f6020526040902054610ffa908290611fd5565b336000908152600f6020526040902055610bc66001600a55565b6008546001600160a01b0316331461103e5760405162461bcd60e51b8152600401610a3490611f3c565b611046611678565b6000811161105357600080fd5b61105e816000611fb6565b34101561106a57600080fd5b6110198160105461107b9190611fd5565b111561108657600080fd5b611fb98161109360005490565b61109d9190611fd5565b11156110a857600080fd5b6110b282826116d1565b610b366001600a55565b336001600160a01b038316036110e55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610a3490611f3c565b6001600160a01b03811661118e57600080fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6111bb8484846113fa565b6001600160a01b0383163b156111f4576111d784848484611804565b6111f4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611fb982106112655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a34565b600061126f6118f0565b9050600081511161128f57604051806020016040528060008152506112bd565b80611299846118ff565b60146040516020016112ad939291906120f3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610a3490611f3c565b6014610b368282612033565b6008546001600160a01b031633146113245760405162461bcd60e51b8152600401610a3490611f3c565b600b80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600080548210801561085c575050600090815260046020526040902054600160e01b161590565b6000816000548110156113e15760008181526004602052604081205490600160e01b821690036113df575b806000036112bd5750600019016000818152600460205260409020546113be565b505b604051636f96cda160e11b815260040160405180910390fd5b600061140582611393565b9050836001600160a01b0316816001600160a01b0316146114385760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806114685750611468863361133e565b8061147b57506001600160a01b03821633145b90508061149b57604051632ce44b5f60e11b815260040160405180910390fd5b846000036114bc57604051633a954ecd60e21b815260040160405180910390fd5b81156114df57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b881781179091558416900361156a576001840160008181526004602052604081205490036115685760005481146115685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826000036115c65750600061085c565b60006115d28385611fb6565b9050826115df8583612193565b146112bd5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a34565b60006112bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061194e565b6002600a54036116ca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b6002600a55565b610b36828260405180602001604052806000815250611985565b8047101561173b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a34565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611788576040519150601f19603f3d011682016040523d82523d6000602084013e61178d565b606091505b5050905080610a645760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a34565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118399033908990889088906004016121b5565b6020604051808303816000875af1925050508015611874575060408051601f3d908101601f19168201909252611871918101906121f2565b60015b6118d2573d8080156118a2576040519150601f19603f3d011682016040523d82523d6000602084013e6118a7565b606091505b5080516000036118ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606013805461087190611f02565b604080516080810191829052607f0190826030600a8206018353600a90045b801561193c57600183039250600a81066030018353600a900461191e565b50819003601f19909101908152919050565b6000818361196f5760405162461bcd60e51b8152600401610a349190611bb5565b50600061197c8486612193565b95945050505050565b600054836000036119a857604051622e076360e81b815260040160405180910390fd5b826000036119c95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a9e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a676000878480600101955087611804565b611a84576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a1c578260005414611a9957600080fd5b611ae3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a9f575b5060009081556111f49085838684565b6001600160e01b031981168114610bc657600080fd5b600060208284031215611b1b57600080fd5b81356112bd81611af3565b80356001600160a01b0381168114611b3d57600080fd5b919050565b600060208284031215611b5457600080fd5b6112bd82611b26565b60005b83811015611b78578181015183820152602001611b60565b838111156111f45750506000910152565b60008151808452611ba1816020860160208601611b5d565b601f01601f19169290920160200192915050565b6020815260006112bd6020830184611b89565b600060208284031215611bda57600080fd5b5035919050565b60008060408385031215611bf457600080fd5b611bfd83611b26565b946020939093013593505050565b80358015158114611b3d57600080fd5b600060208284031215611c2d57600080fd5b6112bd82611c0b565b600080600060608486031215611c4b57600080fd5b611c5484611b26565b9250611c6260208501611b26565b9150604084013590509250925092565b60008060408385031215611c8557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611cd357611cd3611c94565b604052919050565b60006020808385031215611cee57600080fd5b823567ffffffffffffffff80821115611d0657600080fd5b818501915085601f830112611d1a57600080fd5b813581811115611d2c57611d2c611c94565b8060051b9150611d3d848301611caa565b8181529183018401918481019088841115611d5757600080fd5b938501935b83851015611d7c57611d6d85611b26565b82529385019390850190611d5c565b98975050505050505050565b600067ffffffffffffffff831115611da257611da2611c94565b611db5601f8401601f1916602001611caa565b9050828152838383011115611dc957600080fd5b828260208301376000602084830101529392505050565b600060208284031215611df257600080fd5b813567ffffffffffffffff811115611e0957600080fd5b8201601f81018413611e1a57600080fd5b6118e884823560208401611d88565b60008060408385031215611e3c57600080fd5b611e4583611b26565b9150611e5360208401611c0b565b90509250929050565b60008060008060808587031215611e7257600080fd5b611e7b85611b26565b9350611e8960208601611b26565b925060408501359150606085013567ffffffffffffffff811115611eac57600080fd5b8501601f81018713611ebd57600080fd5b611ecc87823560208401611d88565b91505092959194509250565b60008060408385031215611eeb57600080fd5b611ef483611b26565b9150611e5360208401611b26565b600181811c90821680611f1657607f821691505b602082108103611f3657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611faf57611faf611f87565b5060010190565b6000816000190483118215151615611fd057611fd0611f87565b500290565b60008219821115611fe857611fe8611f87565b500190565b601f821115610a6457600081815260208120601f850160051c810160208610156120145750805b601f850160051c820191505b818110156115ac57828155600101612020565b815167ffffffffffffffff81111561204d5761204d611c94565b6120618161205b8454611f02565b84611fed565b602080601f831160018114612096576000841561207e5750858301515b600019600386901b1c1916600185901b1785556115ac565b600085815260208120601f198616915b828110156120c5578886015182559484019460019091019084016120a6565b50858210156120e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206121068285838a01611b5d565b8551918401916121198184848a01611b5d565b855492019160009061212a81611f02565b60018281168015612142576001811461215757612183565b60ff1984168752821515830287019450612183565b896000528560002060005b8481101561217b57815489820152908301908701612162565b505082870194505b50929a9950505050505050505050565b6000826121b057634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e890830184611b89565b9695505050505050565b60006020828403121561220457600080fd5b81516112bd81611af356fea2646970667358221220547242cd8a5d90dabd6430db75d2de54480b1dac6257195b30fb8953268be0d364736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c80636a78f2271161014f5780639e1aa4da116100c1578063c87b56dd1161007a578063c87b56dd14610745578063da3ef23f14610765578063e2e06fa314610785578063e3491ca1146107a5578063e985e9c5146107d2578063fa1bbb7f146107f257600080fd5b80639e1aa4da1461069c578063a22cb465146106b2578063a5bde5ef146106d2578063a8602fea146106ed578063b88d4fde1461070d578063b98451cf1461072d57600080fd5b8063868ff4a211610113578063868ff4a21461061a5780638da5cb5b1461062d57806395d89b411461064b57806396b1ce21146106605780639aebec05146106735780639b6a67091461068957600080fd5b80636a78f2271461059157806370a08231146105b1578063715018a6146105d157806377ee4b0f146105e65780637f649783146105fa57600080fd5b806323b872dd116101e857806333acccd8116101ac57806333acccd8146104d1578063363e86fe146105015780633ccfd60b1461051c57806342842e0e1461053157806355f804b3146105515780636352211e1461057157600080fd5b806323b872dd146104215780632a55205a146104415780632b070324146104805780632c035b74146104a05780632db11544146104be57600080fd5b80630da51cd71161023a5780630da51cd7146103635780630ede5aa614610388578063165e46c4146103a857806318160ddd146103be578063194e80ce146103d75780631e84c4131461040457600080fd5b806301ffc9a71461028257806306c933d8146102b757806306fdde03146102e7578063081812fc14610309578063095ea7b31461034157600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611b09565b610810565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102a26102d2366004611b42565b600c6020526000908152604090205460ff1681565b3480156102f357600080fd5b506102fc610862565b6040516102ae9190611bb5565b34801561031557600080fd5b50610329610324366004611bc8565b6108f4565b6040516001600160a01b0390911681526020016102ae565b34801561034d57600080fd5b5061036161035c366004611be1565b610938565b005b34801561036f57600080fd5b5067030d98d59a9600005b6040519081526020016102ae565b34801561039457600080fd5b506103616103a3366004611c1b565b610a0a565b3480156103b457600080fd5b5061037a60115481565b3480156103ca57600080fd5b506001546000540361037a565b3480156103e357600080fd5b5061037a6103f2366004611b42565b600f6020526000908152604090205481565b34801561041057600080fd5b50600b54610100900460ff166102a2565b34801561042d57600080fd5b5061036161043c366004611c36565b610a59565b34801561044d57600080fd5b5061046161045c366004611c72565b610a69565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561048c57600080fd5b5061036161049b366004611cdb565b610aa4565b3480156104ac57600080fd5b506015546001600160a01b0316610329565b6103616104cc366004611bc8565b610b3a565b3480156104dd57600080fd5b506102a26104ec366004611b42565b600d6020526000908152604090205460ff1681565b34801561050d57600080fd5b50670429d069189e000061037a565b34801561052857600080fd5b50610361610bc9565b34801561053d57600080fd5b5061036161054c366004611c36565b610be1565b34801561055d57600080fd5b5061036161056c366004611de0565b610bfc565b34801561057d57600080fd5b5061032961058c366004611bc8565b610c32565b34801561059d57600080fd5b506103616105ac366004611c1b565b610c3d565b3480156105bd57600080fd5b5061037a6105cc366004611b42565b610c7a565b3480156105dd57600080fd5b50610361610cc3565b3480156105f257600080fd5b50600061037a565b34801561060657600080fd5b50610361610615366004611cdb565b610d37565b610361610628366004611bc8565b610dc9565b34801561063957600080fd5b506008546001600160a01b0316610329565b34801561065757600080fd5b506102fc610ee4565b61036161066e366004611bc8565b610ef3565b34801561067f57600080fd5b5061037a60105481565b610361610697366004611be1565b611014565b3480156106a857600080fd5b5061037a60125481565b3480156106be57600080fd5b506103616106cd366004611e29565b6110bc565b3480156106de57600080fd5b506702c68af0bb14000061037a565b3480156106f957600080fd5b50610361610708366004611b42565b611151565b34801561071957600080fd5b50610361610728366004611e5c565b6111b0565b34801561073957600080fd5b50600b5460ff166102a2565b34801561075157600080fd5b506102fc610760366004611bc8565b6111fa565b34801561077157600080fd5b50610361610780366004611de0565b6112c4565b34801561079157600080fd5b506103616107a0366004611c1b565b6112fa565b3480156107b157600080fd5b5061037a6107c0366004611b42565b600e6020526000908152604090205481565b3480156107de57600080fd5b506102a26107ed366004611ed8565b61133e565b3480156107fe57600080fd5b50600b5462010000900460ff166102a2565b60006301ffc9a760e01b6001600160e01b03198316148061084157506380ac58cd60e01b6001600160e01b03198316145b8061085c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087190611f02565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90611f02565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff8261136c565b61091c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094382611393565b9050806001600160a01b0316836001600160a01b0316036109775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109ae57610991813361133e565b6109ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a3d5760405162461bcd60e51b8152600401610a3490611f3c565b60405180910390fd5b600b8054911515620100000262ff000019909216919091179055565b610a648383836113fa565b505050565b600080611fb98411610a9d576015546001600160a01b0316610a986103e8610a9286604b6115b4565b90611636565b915091505b9250929050565b6008546001600160a01b03163314610ace5760405162461bcd60e51b8152600401610a3490611f3c565b60005b8151811015610b36576001600d6000848481518110610af257610af2611f71565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610b2e81611f9d565b915050610ad1565b5050565b610b42611678565b600b54610100900460ff16610b5657600080fd5b60008111610b6357600080fd5b611fb9811115610b7257600080fd5b610b8481670429d069189e0000611fb6565b341015610b9057600080fd5b611fb981610b9d60005490565b610ba79190611fd5565b1115610bb257600080fd5b610bbc33826116d1565b610bc66001600a55565b50565b601554610bdf906001600160a01b0316476116eb565b565b610a64838383604051806020016040528060008152506111b0565b6008546001600160a01b03163314610c265760405162461bcd60e51b8152600401610a3490611f3c565b6013610b368282612033565b600061085c82611393565b6008546001600160a01b03163314610c675760405162461bcd60e51b8152600401610a3490611f3c565b600b805460ff1916911515919091179055565b600081600003610c9d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610a3490611f3c565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b6008546001600160a01b03163314610d615760405162461bcd60e51b8152600401610a3490611f3c565b60005b8151811015610b36576001600c6000848481518110610d8557610d85611f71565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610dc181611f9d565b915050610d64565b610dd1611678565b600b5460ff16610de057600080fd5b60008111610ded57600080fd5b336000908152600c602052604090205460ff16610e0957600080fd5b610e1b8167030d98d59a960000611fb6565b341015610e2757600080fd5b611fb981610e3460005490565b610e3e9190611fd5565b1115610e4957600080fd5b610fa081601254610e5a9190611fd5565b1115610e6557600080fd5b336000908152600e6020526040902054600290610e83908390611fd5565b1115610e8e57600080fd5b610e9833826116d1565b8060126000828254610eaa9190611fd5565b9091555050336000908152600e6020526040902054610eca908290611fd5565b336000908152600e6020526040902055610bc66001600a55565b60606003805461087190611f02565b610efb611678565b600b5462010000900460ff16610f1057600080fd5b60008111610f1d57600080fd5b336000908152600d602052604090205460ff16610f3957600080fd5b610f4b816702c68af0bb140000611fb6565b341015610f5757600080fd5b611fb981610f6460005490565b610f6e9190611fd5565b1115610f7957600080fd5b610fa081601154610f8a9190611fd5565b1115610f9557600080fd5b336000908152600f6020526040902054600390610fb3908390611fd5565b1115610fbe57600080fd5b610fc833826116d1565b8060116000828254610fda9190611fd5565b9091555050336000908152600f6020526040902054610ffa908290611fd5565b336000908152600f6020526040902055610bc66001600a55565b6008546001600160a01b0316331461103e5760405162461bcd60e51b8152600401610a3490611f3c565b611046611678565b6000811161105357600080fd5b61105e816000611fb6565b34101561106a57600080fd5b6110198160105461107b9190611fd5565b111561108657600080fd5b611fb98161109360005490565b61109d9190611fd5565b11156110a857600080fd5b6110b282826116d1565b610b366001600a55565b336001600160a01b038316036110e55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610a3490611f3c565b6001600160a01b03811661118e57600080fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6111bb8484846113fa565b6001600160a01b0383163b156111f4576111d784848484611804565b6111f4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611fb982106112655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a34565b600061126f6118f0565b9050600081511161128f57604051806020016040528060008152506112bd565b80611299846118ff565b60146040516020016112ad939291906120f3565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610a3490611f3c565b6014610b368282612033565b6008546001600160a01b031633146113245760405162461bcd60e51b8152600401610a3490611f3c565b600b80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600080548210801561085c575050600090815260046020526040902054600160e01b161590565b6000816000548110156113e15760008181526004602052604081205490600160e01b821690036113df575b806000036112bd5750600019016000818152600460205260409020546113be565b505b604051636f96cda160e11b815260040160405180910390fd5b600061140582611393565b9050836001600160a01b0316816001600160a01b0316146114385760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b03908116919086163314806114685750611468863361133e565b8061147b57506001600160a01b03821633145b90508061149b57604051632ce44b5f60e11b815260040160405180910390fd5b846000036114bc57604051633a954ecd60e21b815260040160405180910390fd5b81156114df57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b881781179091558416900361156a576001840160008181526004602052604081205490036115685760005481146115685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826000036115c65750600061085c565b60006115d28385611fb6565b9050826115df8583612193565b146112bd5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a34565b60006112bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061194e565b6002600a54036116ca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a34565b6002600a55565b610b36828260405180602001604052806000815250611985565b8047101561173b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a34565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611788576040519150601f19603f3d011682016040523d82523d6000602084013e61178d565b606091505b5050905080610a645760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a34565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118399033908990889088906004016121b5565b6020604051808303816000875af1925050508015611874575060408051601f3d908101601f19168201909252611871918101906121f2565b60015b6118d2573d8080156118a2576040519150601f19603f3d011682016040523d82523d6000602084013e6118a7565b606091505b5080516000036118ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606013805461087190611f02565b604080516080810191829052607f0190826030600a8206018353600a90045b801561193c57600183039250600a81066030018353600a900461191e565b50819003601f19909101908152919050565b6000818361196f5760405162461bcd60e51b8152600401610a349190611bb5565b50600061197c8486612193565b95945050505050565b600054836000036119a857604051622e076360e81b815260040160405180910390fd5b826000036119c95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a9e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a676000878480600101955087611804565b611a84576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a1c578260005414611a9957600080fd5b611ae3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a9f575b5060009081556111f49085838684565b6001600160e01b031981168114610bc657600080fd5b600060208284031215611b1b57600080fd5b81356112bd81611af3565b80356001600160a01b0381168114611b3d57600080fd5b919050565b600060208284031215611b5457600080fd5b6112bd82611b26565b60005b83811015611b78578181015183820152602001611b60565b838111156111f45750506000910152565b60008151808452611ba1816020860160208601611b5d565b601f01601f19169290920160200192915050565b6020815260006112bd6020830184611b89565b600060208284031215611bda57600080fd5b5035919050565b60008060408385031215611bf457600080fd5b611bfd83611b26565b946020939093013593505050565b80358015158114611b3d57600080fd5b600060208284031215611c2d57600080fd5b6112bd82611c0b565b600080600060608486031215611c4b57600080fd5b611c5484611b26565b9250611c6260208501611b26565b9150604084013590509250925092565b60008060408385031215611c8557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611cd357611cd3611c94565b604052919050565b60006020808385031215611cee57600080fd5b823567ffffffffffffffff80821115611d0657600080fd5b818501915085601f830112611d1a57600080fd5b813581811115611d2c57611d2c611c94565b8060051b9150611d3d848301611caa565b8181529183018401918481019088841115611d5757600080fd5b938501935b83851015611d7c57611d6d85611b26565b82529385019390850190611d5c565b98975050505050505050565b600067ffffffffffffffff831115611da257611da2611c94565b611db5601f8401601f1916602001611caa565b9050828152838383011115611dc957600080fd5b828260208301376000602084830101529392505050565b600060208284031215611df257600080fd5b813567ffffffffffffffff811115611e0957600080fd5b8201601f81018413611e1a57600080fd5b6118e884823560208401611d88565b60008060408385031215611e3c57600080fd5b611e4583611b26565b9150611e5360208401611c0b565b90509250929050565b60008060008060808587031215611e7257600080fd5b611e7b85611b26565b9350611e8960208601611b26565b925060408501359150606085013567ffffffffffffffff811115611eac57600080fd5b8501601f81018713611ebd57600080fd5b611ecc87823560208401611d88565b91505092959194509250565b60008060408385031215611eeb57600080fd5b611ef483611b26565b9150611e5360208401611b26565b600181811c90821680611f1657607f821691505b602082108103611f3657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611faf57611faf611f87565b5060010190565b6000816000190483118215151615611fd057611fd0611f87565b500290565b60008219821115611fe857611fe8611f87565b500190565b601f821115610a6457600081815260208120601f850160051c810160208610156120145750805b601f850160051c820191505b818110156115ac57828155600101612020565b815167ffffffffffffffff81111561204d5761204d611c94565b6120618161205b8454611f02565b84611fed565b602080601f831160018114612096576000841561207e5750858301515b600019600386901b1c1916600185901b1785556115ac565b600085815260208120601f198616915b828110156120c5578886015182559484019460019091019084016120a6565b50858210156120e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206121068285838a01611b5d565b8551918401916121198184848a01611b5d565b855492019160009061212a81611f02565b60018281168015612142576001811461215757612183565b60ff1984168752821515830287019450612183565b896000528560002060005b8481101561217b57815489820152908301908701612162565b505082870194505b50929a9950505050505050505050565b6000826121b057634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e890830184611b89565b9695505050505050565b60006020828403121561220457600080fd5b81516112bd81611af356fea2646970667358221220547242cd8a5d90dabd6430db75d2de54480b1dac6257195b30fb8953268be0d364736f6c634300080f0033

Deployed Bytecode Sourcemap

227:5856:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12501:607:1;;;;;;;;;;-1:-1:-1;12501:607:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:7;;558:22;540:41;;528:2;513:18;12501:607:1;;;;;;;;472:50:2;;;;;;;;;;-1:-1:-1;472:50:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;17399:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19400:200::-;;;;;;;;;;-1:-1:-1;19400:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:7;;;2043:51;;2031:2;2016:18;19400:200:1;1897:203:7;18876:463:1;;;;;;;;;;-1:-1:-1;18876:463:1;;;;;:::i;:::-;;:::i;:::-;;2606:96:2;;;;;;;;;;-1:-1:-1;1319:10:2;2606:96;;;2510:25:7;;;2498:2;2483:18;2606:96:2;2364:177:7;3014:104:2;;;;;;;;;;-1:-1:-1;3014:104:2;;;;;:::i;:::-;;:::i;727:34::-;;;;;;;;;;;;;;;;11584:309:1;;;;;;;;;;-1:-1:-1;11846:12:1;;11637:7;11830:13;:28;11584:309;;635:52:2;;;;;;;;;;-1:-1:-1;635:52:2;;;;;:::i;:::-;;;;;;;;;;;;;;2115:92;;;;;;;;;;-1:-1:-1;2186:16:2;;;;;;;2115:92;;20260:164:1;;;;;;;;;;-1:-1:-1;20260:164:1;;;;;:::i;:::-;;:::i;1618:252:2:-;;;;;;;;;;-1:-1:-1;1618:252:2;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3674:32:7;;;3656:51;;3738:2;3723:18;;3716:34;;;;3629:18;1618:252:2;3482:274:7;3300:170:2;;;;;;;;;;-1:-1:-1;3300:170:2;;;;;:::i;:::-;;:::i;1874:93::-;;;;;;;;;;-1:-1:-1;1946:14:2;;-1:-1:-1;;;;;1946:14:2;1874:93;;3938:320;;;;;;:::i;:::-;;:::i;526:47::-;;;;;;;;;;-1:-1:-1;526:47:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;2706:90;;;;;;;;;;-1:-1:-1;1268:9:2;2706:90;;5799:87;;;;;;;;;;;;;:::i;20490:179:1:-;;;;;;;;;;-1:-1:-1;20490:179:1;;;;;:::i;:::-;;:::i;5890:88:2:-;;;;;;;;;;-1:-1:-1;5890:88:2;;;;;:::i;:::-;;:::i;17195:142:1:-;;;;;;;;;;-1:-1:-1;17195:142:1;;;;;:::i;:::-;;:::i;2904:106:2:-;;;;;;;;;;-1:-1:-1;2904:106:2;;;;;:::i;:::-;;:::i;13167:231:1:-;;;;;;;;;;-1:-1:-1;13167:231:1;;;;;:::i;:::-;;:::i;666:130:4:-;;;;;;;;;;;;;:::i;2510:92:2:-;;;;;;;;;;-1:-1:-1;2558:7:2;2510:92;;3122:174;;;;;;;;;;-1:-1:-1;3122:174:2;;;;;:::i;:::-;;:::i;4838:590::-;;;;;;:::i;:::-;;:::i;491:68:4:-;;;;;;;;;;-1:-1:-1;549:6:4;;-1:-1:-1;;;;;549:6:4;491:68;;17561:102:1;;;;;;;;;;;;;:::i;4262:572:2:-;;;;;;:::i;:::-;;:::i;692:31::-;;;;;;;;;;;;;;;;3611:323;;;;;;:::i;:::-;;:::i;765:35::-;;;;;;;;;;;;;;;;19667:303:1;;;;;;;;;;-1:-1:-1;19667:303:1;;;;;:::i;:::-;;:::i;2413:94:2:-;;;;;;;;;;-1:-1:-1;1370:9:2;2413:94;;1971:140;;;;;;;;;;-1:-1:-1;1971:140:2;;;;;:::i;:::-;;:::i;20735:385:1:-;;;;;;;;;;-1:-1:-1;20735:385:1;;;;;:::i;:::-;;:::i;2211:98:2:-;;;;;;;;;;-1:-1:-1;2285:19:2;;;;2211:98;;5432:363;;;;;;;;;;-1:-1:-1;5432:363:2;;;;;:::i;:::-;;:::i;3474:133::-;;;;;;;;;;-1:-1:-1;3474:133:2;;;;;:::i;:::-;;:::i;2800:100::-;;;;;;;;;;-1:-1:-1;2800:100:2;;;;;:::i;:::-;;:::i;578:53::-;;;;;;;;;;-1:-1:-1;578:53:2;;;;;:::i;:::-;;;;;;;;;;;;;;20036:162:1;;;;;;;;;;-1:-1:-1;20036:162:1;;;;;:::i;:::-;;:::i;2313:96:2:-;;;;;;;;;;-1:-1:-1;2386:18:2;;;;;;;2313:96;;12501:607:1;12586:4;-1:-1:-1;;;;;;;;;12881:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;12957:25:1;;;12881:101;:177;;;-1:-1:-1;;;;;;;;;;13033:25:1;;;12881:177;12862:196;12501:607;-1:-1:-1;;12501:607:1:o;17399:98::-;17453:13;17485:5;17478:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17399:98;:::o;19400:200::-;19468:7;19492:16;19500:7;19492;:16::i;:::-;19487:64;;19517:34;;-1:-1:-1;;;19517:34:1;;;;;;;;;;;19487:64;-1:-1:-1;19569:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;19569:24:1;;19400:200::o;18876:463::-;18948:13;18980:27;18999:7;18980:18;:27::i;:::-;18948:61;;19029:5;-1:-1:-1;;;;;19023:11:1;:2;-1:-1:-1;;;;;19023:11:1;;19019:48;;19043:24;;-1:-1:-1;;;19043:24:1;;;;;;;;;;;19019:48;35355:10;-1:-1:-1;;;;;19082:28:1;;;19078:172;;19129:44;19146:5;35355:10;20036:162;:::i;19129:44::-;19124:126;;19200:35;;-1:-1:-1;;;19200:35:1;;;;;;;;;;;19124:126;19260:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19260:29:1;-1:-1:-1;;;;;19260:29:1;;;;;;;;;19304:28;;19260:24;;19304:28;;;;;;;18938:401;18876:463;;:::o;3014:104:2:-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;;;;;;;;;3085:18:2::1;:28:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3085:28:2;;::::1;::::0;;;::::1;::::0;;3014:104::o;20260:164:1:-;20389:28;20399:4;20405:2;20409:7;20389:9;:28::i;:::-;20260:164;;;:::o;1618:252:2:-;1714:17;1733:22;909:4;1769:8;:22;1766:95;;1810:14;;-1:-1:-1;;;;;1810:14:2;1825:24;1844:4;1825:14;:6;1836:2;1825:10;:14::i;:::-;:18;;:24::i;:::-;1802:48;;;;1766:95;1618:252;;;;;:::o;3300:170::-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;3380:9:2::1;3376:90;3394:9;:16;3392:1;:18;3376:90;;;3455:4;3423:17;:31;3441:9;3451:1;3441:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3423:31:2::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3423:31:2;:36;;-1:-1:-1;;3423:36:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3411:3;::::1;::::0;::::1;:::i;:::-;;;;3376:90;;;;3300:170:::0;:::o;3938:320::-;2246:21:5;:19;:21::i;:::-;4019:16:2::1;::::0;::::1;::::0;::::1;;;4011:25;;;::::0;::::1;;4059:1;4050:8;:10;4042:19;;;::::0;::::1;;1085:4;4075:8;:36;;4067:45;;;::::0;::::1;;4137:26;4155:8:::0;1268:9:::1;4137:26;:::i;:::-;4126:9;:37;;4118:46;;;::::0;::::1;;909:4;4193:8;4178:14;12033:7:1::0;12217:13;;11986:279;4178:14:2::1;:23;;;;:::i;:::-;:37;;4170:46;;;::::0;::::1;;4223:30;4233:10;4244:8;4223:9;:30::i;:::-;2288:20:5::0;1701:1;2790:7;:22;2610:209;2288:20;3938:320:2;:::o;5799:87::-;5834:14;;:47;;-1:-1:-1;;;;;5834:14:2;5859:21;5834:24;:47::i;:::-;5799:87::o;20490:179:1:-;20623:39;20640:4;20646:2;20650:7;20623:39;;;;;;;;;;;;:16;:39::i;5890:88:2:-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;5955:12:2::1;:18;5968:5:::0;5955:12;:18:::1;:::i;17195:142:1:-:0;17259:7;17301:27;17320:7;17301:18;:27::i;2904:106:2:-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;2976:19:2::1;:29:::0;;-1:-1:-1;;2976:29:2::1;::::0;::::1;;::::0;;;::::1;::::0;;2904:106::o;13167:231:1:-;13231:7;13272:5;13282:1;13254:29;13250:70;;13292:28;;-1:-1:-1;;;13292:28:1;;;;;;;;;;;13250:70;-1:-1:-1;;;;;;13337:25:1;;;;;:18;:25;;;;;;8644:13;13337:54;;13167:231::o;666:130:4:-;595:6;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;750:6:::1;::::0;729:40:::1;::::0;766:1:::1;::::0;-1:-1:-1;;;;;750:6:4::1;::::0;729:40:::1;::::0;766:1;;729:40:::1;773:6;:19:::0;;-1:-1:-1;;;;;;773:19:4::1;::::0;;666:130::o;3122:174:2:-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;3203:9:2::1;3199:93;3217:9;:16;3215:1;:18;3199:93;;;3281:4;3246:20;:34;3267:9;3277:1;3267:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3246:34:2::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3246:34:2;:39;;-1:-1:-1;;3246:39:2::1;::::0;::::1;;::::0;;;::::1;::::0;;3234:3;::::1;::::0;::::1;:::i;:::-;;;;3199:93;;4838:590:::0;2246:21:5;:19;:21::i;:::-;4922:19:2::1;::::0;::::1;;4914:28;;;::::0;::::1;;4965:1;4956:8;:10;4948:19;;;::::0;::::1;;5002:10;4981:32;::::0;;;:20:::1;:32;::::0;;;;;::::1;;4973:41;;;::::0;::::1;;5039:29;5060:8:::0;1319:10:::1;5039:29;:::i;:::-;5028:9;:40;;5020:49;;;::::0;::::1;;909:4;5098:8;5083:14;12033:7:1::0;12217:13;;11986:279;5083:14:2::1;:23;;;;:::i;:::-;:37;;5075:46;;;::::0;::::1;;991:4;5156:8;5135:20;;:29;;;;:::i;:::-;:47;;5127:56;;;::::0;::::1;;5218:10;5197:32;::::0;;;:20:::1;:32;::::0;;;;;1140:1:::1;::::0;5197:41:::1;::::0;5230:8;;5197:41:::1;:::i;:::-;:72;;5189:81;;;::::0;::::1;;5277:30;5287:10;5298:8;5277:9;:30::i;:::-;5335:8;5313:20;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;5403:10:2::1;5382:32;::::0;;;:20:::1;:32;::::0;;;;;:41:::1;::::0;5415:8;;5382:41:::1;:::i;:::-;5370:10;5349:32;::::0;;;:20:::1;:32;::::0;;;;:74;2288:20:5;1701:1;2790:7;:22;2610:209;17561:102:1;17617:13;17649:7;17642:14;;;;;:::i;4262:572:2:-;2246:21:5;:19;:21::i;:::-;4345:18:2::1;::::0;;;::::1;;;4337:27;;;::::0;::::1;;4387:1;4378:8;:10;4370:19;;;::::0;::::1;;4421:10;4403:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;4395:38;;;::::0;::::1;;4458:28;4478:8:::0;1370:9:::1;4458:28;:::i;:::-;4447:9;:39;;4439:48;;;::::0;::::1;;909:4;4516:8;4501:14;12033:7:1::0;12217:13;;11986:279;4501:14:2::1;:23;;;;:::i;:::-;:37;;4493:46;;;::::0;::::1;;1032:4;4573:8;4553:19;;:28;;;;:::i;:::-;:45;;4545:54;;;::::0;::::1;;4633:10;4613:31;::::0;;;:19:::1;:31;::::0;;;;;1186:1:::1;::::0;4613:40:::1;::::0;4645:8;;4613:40:::1;:::i;:::-;:65;;4605:74;;;::::0;::::1;;4686:30;4696:10;4707:8;4686:9;:30::i;:::-;4743:8;4722:19;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;4809:10:2::1;4789:31;::::0;;;:19:::1;:31;::::0;;;;;:40:::1;::::0;4821:8;;4789:40:::1;:::i;:::-;4777:10;4757:31;::::0;;;:19:::1;:31;::::0;;;;:72;2288:20:5;1701:1;2790:7;:22;2610:209;3611:323:2;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;2246:21:5::1;:19;:21::i;:::-;3730:1:2::2;3721:8;:10;3713:19;;;::::0;::::2;;3757:27;3776:8:::0;1228:1:::2;3757:27;:::i;:::-;3746:9;:38;;3738:47;;;::::0;::::2;;949:4;3816:8;3799:16;;:25;;;;:::i;:::-;:41;;3791:50;;;::::0;::::2;;909:4;3870:8;3855:14;12033:7:1::0;12217:13;;11986:279;3855:14:2::2;:23;;;;:::i;:::-;:37;;3847:46;;;::::0;::::2;;3900:29;3910:9;3920:8;3900:9;:29::i;:::-;2288:20:5::1;1701:1:::0;2790:7;:22;2610:209;19667:303:1;35355:10;-1:-1:-1;;;;;19765:31:1;;;19761:61;;19805:17;;-1:-1:-1;;;19805:17:1;;;;;;;;;;;19761:61;35355:10;19833:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;19833:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;19833:60:1;;;;;;;;;;19908:55;;540:41:7;;;19833:49:1;;35355:10;19908:55;;513:18:7;19908:55:1;;;;;;;19667:303;;:::o;1971:140:2:-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;2047:21:2;::::1;2039:30;;;::::0;::::1;;2075:14;:31:::0;;-1:-1:-1;;;;;;2075:31:2::1;-1:-1:-1::0;;;;;2075:31:2;;;::::1;::::0;;;::::1;::::0;;1971:140::o;20735:385:1:-;20896:28;20906:4;20912:2;20916:7;20896:9;:28::i;:::-;-1:-1:-1;;;;;20938:14:1;;;:19;20934:180;;20976:56;21007:4;21013:2;21017:7;21026:5;20976:30;:56::i;:::-;20971:143;;21059:40;;-1:-1:-1;;;21059:40:1;;;;;;;;;;;20971:143;20735:385;;;;:::o;5432:363:2:-;5505:13;909:4;5537:7;:20;5529:79;;;;-1:-1:-1;;;5529:79:2;;11056:2:7;5529:79:2;;;11038:21:7;11095:2;11075:18;;;11068:30;11134:34;11114:18;;;11107:62;-1:-1:-1;;;11185:18:7;;;11178:45;11240:19;;5529:79:2;10854:411:7;5529:79:2;5619:28;5650:10;:8;:10::i;:::-;5619:41;;5708:1;5683:14;5677:28;:32;:111;;;;;;;;;;;;;;;;;5735:14;5750:18;5760:7;5750:9;:18::i;:::-;5769:13;5718:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5677:111;5670:118;5432:363;-1:-1:-1;;;5432:363:2:o;3474:133::-;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;3567:13:2::1;:33;3583:17:::0;3567:13;:33:::1;:::i;2800:100::-:0;595:6:4;;-1:-1:-1;;;;;595:6:4;35355:10:1;595:22:4;587:67;;;;-1:-1:-1;;;587:67:4;;;;;;;:::i;:::-;2869:16:2::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;2869:26:2;;::::1;::::0;;;::::1;::::0;;2800:100::o;20036:162:1:-;-1:-1:-1;;;;;20156:25:1;;;20133:4;20156:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20036:162::o;21366:268::-;21423:4;21510:13;;21500:7;:23;21458:150;;;;-1:-1:-1;;21560:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;21560:43:1;:48;;21366:268::o;14772:1105::-;14839:7;14873;14971:13;;14964:4;:20;14960:853;;;15008:14;15025:23;;;:17;:23;;;;;;;-1:-1:-1;;;15112:23:1;;:28;;15108:687;;15623:111;15630:6;15640:1;15630:11;15623:111;;-1:-1:-1;;;15700:6:1;15682:25;;;;:17;:25;;;;;;15623:111;;15108:687;14986:827;14960:853;15839:31;;-1:-1:-1;;;15839:31:1;;;;;;;;;;;26486:2595;26596:27;26626;26645:7;26626:18;:27::i;:::-;26596:57;;26709:4;-1:-1:-1;;;;;26668:45:1;26684:19;-1:-1:-1;;;;;26668:45:1;;26664:86;;26722:28;;-1:-1:-1;;;26722:28:1;;;;;;;;;;;26664:86;26761:23;26787:24;;;:15;:24;;;;;;-1:-1:-1;;;;;26787:24:1;;;;26761:23;26848:27;;35355:10;26848:27;;:86;;-1:-1:-1;26891:43:1;26908:4;35355:10;20036:162;:::i;26891:43::-;26848:140;;;-1:-1:-1;;;;;;26950:38:1;;35355:10;26950:38;26848:140;26822:167;;27005:17;27000:66;;27031:35;;-1:-1:-1;;;27031:35:1;;;;;;;;;;;27000:66;27098:2;27105:1;27080:26;27076:62;;27115:23;;-1:-1:-1;;;27115:23:1;;;;;;;;;;;27076:62;27277:15;27259:39;27255:101;;27321:24;;;;:15;:24;;;;;27314:31;;-1:-1:-1;;;;;;27314:31:1;;;27255:101;-1:-1:-1;;;;;27716:24:1;;;;;;;:18;:24;;;;;;;;27714:26;;-1:-1:-1;;27714:26:1;;;27784:22;;;;;;;;27782:24;;-1:-1:-1;27782:24:1;;;28070:26;;;:17;:26;;;;;-1:-1:-1;;;28156:15:1;9283:3;28156:41;28115:83;;:126;;28070:171;;;28358:46;;:51;;28354:616;;28461:1;28451:11;;28429:19;28582:30;;;:17;:30;;;;;;:35;;28578:378;;28718:13;;28703:11;:28;28699:239;;28863:30;;;;:17;:30;;;;;:52;;;28699:239;28411:559;28354:616;29014:7;29010:2;-1:-1:-1;;;;;28995:27:1;29004:4;-1:-1:-1;;;;;28995:27:1;;;;;;;;;;;29032:42;26586:2495;;;26486:2595;;;:::o;596:239:6:-;654:7;677:1;682;677:6;673:45;;-1:-1:-1;706:1:6;699:8;;673:45;727:9;739:5;743:1;739;:5;:::i;:::-;727:17;-1:-1:-1;771:1:6;762:5;766:1;727:17;762:5;:::i;:::-;:10;754:56;;;;-1:-1:-1;;;754:56:6;;12929:2:7;754:56:6;;;12911:21:7;12968:2;12948:18;;;12941:30;13007:34;12987:18;;;12980:62;-1:-1:-1;;;13058:18:7;;;13051:31;13099:19;;754:56:6;12727:397:7;841:130:6;899:7;925:39;929:1;932;925:39;;;;;;;;;;;;;;;;;:3;:39::i;2321:283:5:-;1744:1;2449:7;;:19;2441:63;;;;-1:-1:-1;;;2441:63:5;;13331:2:7;2441:63:5;;;13313:21:7;13370:2;13350:18;;;13343:30;13409:33;13389:18;;;13382:61;13460:18;;2441:63:5;13129:355:7;2441:63:5;1744:1;2579:7;:18;2321:283::o;21713:102:1:-;21781:27;21791:2;21795:8;21781:27;;;;;;;;;;;;:9;:27::i;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:0;;13691:2:7;2493:73:0;;;13673:21:7;13730:2;13710:18;;;13703:30;13769:31;13749:18;;;13742:59;13818:18;;2493:73:0;13489:353:7;2493:73:0;2578:12;2596:9;-1:-1:-1;;;;;2596:14:0;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:0;;14259:2:7;2639:78:0;;;14241:21:7;14298:2;14278:18;;;14271:30;14337:34;14317:18;;;14310:62;14408:28;14388:18;;;14381:56;14454:19;;2639:78:0;14057:422:7;32809:697:1;32987:88;;-1:-1:-1;;;32987:88:1;;32967:4;;-1:-1:-1;;;;;32987:45:1;;;;;:88;;35355:10;;33054:4;;33060:7;;33069:5;;32987:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32987:88:1;;;;;;;;-1:-1:-1;;32987:88:1;;;;;;;;;;;;:::i;:::-;;;32983:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33265:6;:13;33282:1;33265:18;33261:229;;33310:40;;-1:-1:-1;;;33310:40:1;;;;;;;;;;;33261:229;33450:6;33444:13;33435:6;33431:2;33427:15;33420:38;32983:517;-1:-1:-1;;;;;;33143:64:1;-1:-1:-1;;;33143:64:1;;-1:-1:-1;32983:517:1;32809:697;;;;;;:::o;5982:99:2:-;6034:13;6064:12;6057:19;;;;;:::i;35473:1904:1:-;35936:4;35930:11;;35943:3;35926:21;;36019:17;;;;36702:11;;;36583:5;36832:2;36846;36836:13;;36828:22;36702:11;36815:36;36886:2;36876:13;;36477:666;36904:4;36477:666;;;37074:1;37069:3;37065:11;37058:18;;37124:2;37118:4;37114:13;37110:2;37106:22;37101:3;37093:36;36997:2;36987:13;;36477:666;;;-1:-1:-1;37171:13:1;;;-1:-1:-1;;37284:12:1;;;37342:19;;;37284:12;35473:1904;-1:-1:-1;35473:1904:1:o;977:185:6:-;1063:7;1097:12;1090:5;1082:28;;;;-1:-1:-1;;;1082:28:6;;;;;;;;:::i;:::-;-1:-1:-1;1120:9:6;1132:5;1136:1;1132;:5;:::i;:::-;1120:17;977:185;-1:-1:-1;;;;;977:185:6:o;22175:2194:1:-;22293:20;22316:13;22361:2;22368:1;22343:26;22339:58;;22378:19;;-1:-1:-1;;;22378:19:1;;;;;;;;;;;22339:58;22411:8;22423:1;22411:13;22407:44;;22433:18;;-1:-1:-1;;;22433:18:1;;;;;;;;;;;22407:44;-1:-1:-1;;;;;22987:22:1;;;;;;:18;:22;;;;8778:2;22987:22;;;:70;;23025:31;23013:44;;22987:70;;;23293:31;;;:17;:31;;;;;23384:15;9283:3;23384:41;23343:83;;-1:-1:-1;23461:13:1;;9536:3;23446:56;23343:160;23293:210;;:31;;23581:23;;;;23623:14;:19;23619:622;;23662:308;23692:38;;23717:12;;-1:-1:-1;;;;;23692:38:1;;;23709:1;;23692:38;;23709:1;;23692:38;23757:69;23796:1;23800:2;23804:14;;;;;;23820:5;23757:30;:69::i;:::-;23752:172;;23861:40;;-1:-1:-1;;;23861:40:1;;;;;;;;;;;23752:172;23965:3;23950:12;:18;23662:308;;24049:12;24032:13;;:29;24028:43;;24063:8;;;24028:43;23619:622;;;24110:117;24140:40;;24165:14;;;;;-1:-1:-1;;;;;24140:40:1;;;24157:1;;24140:40;;24157:1;;24140:40;24222:3;24207:12;:18;24110:117;;23619:622;-1:-1:-1;24254:13:1;:28;;;24302:60;;24335:2;24339:12;24353:8;24302:60;:::i;14:131:7:-;-1:-1:-1;;;;;;88:32:7;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:7;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:258::-;1033:1;1043:113;1057:6;1054:1;1051:13;1043:113;;;1133:11;;;1127:18;1114:11;;;1107:39;1079:2;1072:10;1043:113;;;1174:6;1171:1;1168:13;1165:48;;;-1:-1:-1;;1209:1:7;1191:16;;1184:27;961:258::o;1224:::-;1266:3;1304:5;1298:12;1331:6;1326:3;1319:19;1347:63;1403:6;1396:4;1391:3;1387:14;1380:4;1373:5;1369:16;1347:63;:::i;:::-;1464:2;1443:15;-1:-1:-1;;1439:29:7;1430:39;;;;1471:4;1426:50;;1224:258;-1:-1:-1;;1224:258:7:o;1487:220::-;1636:2;1625:9;1618:21;1599:4;1656:45;1697:2;1686:9;1682:18;1674:6;1656:45;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:7;;1712:180;-1:-1:-1;1712:180:7:o;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:7:o;2546:160::-;2611:20;;2667:13;;2660:21;2650:32;;2640:60;;2696:1;2693;2686:12;2711:180;2767:6;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2859:26;2875:9;2859:26;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:248::-;3297:6;3305;3358:2;3346:9;3337:7;3333:23;3329:32;3326:52;;;3374:1;3371;3364:12;3326:52;-1:-1:-1;;3397:23:7;;;3467:2;3452:18;;;3439:32;;-1:-1:-1;3229:248:7:o;3761:127::-;3822:10;3817:3;3813:20;3810:1;3803:31;3853:4;3850:1;3843:15;3877:4;3874:1;3867:15;3893:275;3964:2;3958:9;4029:2;4010:13;;-1:-1:-1;;4006:27:7;3994:40;;4064:18;4049:34;;4085:22;;;4046:62;4043:88;;;4111:18;;:::i;:::-;4147:2;4140:22;3893:275;;-1:-1:-1;3893:275:7:o;4173:952::-;4257:6;4288:2;4331;4319:9;4310:7;4306:23;4302:32;4299:52;;;4347:1;4344;4337:12;4299:52;4387:9;4374:23;4416:18;4457:2;4449:6;4446:14;4443:34;;;4473:1;4470;4463:12;4443:34;4511:6;4500:9;4496:22;4486:32;;4556:7;4549:4;4545:2;4541:13;4537:27;4527:55;;4578:1;4575;4568:12;4527:55;4614:2;4601:16;4636:2;4632;4629:10;4626:36;;;4642:18;;:::i;:::-;4688:2;4685:1;4681:10;4671:20;;4711:28;4735:2;4731;4727:11;4711:28;:::i;:::-;4773:15;;;4843:11;;;4839:20;;;4804:12;;;;4871:19;;;4868:39;;;4903:1;4900;4893:12;4868:39;4927:11;;;;4947:148;4963:6;4958:3;4955:15;4947:148;;;5029:23;5048:3;5029:23;:::i;:::-;5017:36;;4980:12;;;;5073;;;;4947:148;;;5114:5;4173:952;-1:-1:-1;;;;;;;;4173:952:7:o;5130:407::-;5195:5;5229:18;5221:6;5218:30;5215:56;;;5251:18;;:::i;:::-;5289:57;5334:2;5313:15;;-1:-1:-1;;5309:29:7;5340:4;5305:40;5289:57;:::i;:::-;5280:66;;5369:6;5362:5;5355:21;5409:3;5400:6;5395:3;5391:16;5388:25;5385:45;;;5426:1;5423;5416:12;5385:45;5475:6;5470:3;5463:4;5456:5;5452:16;5439:43;5529:1;5522:4;5513:6;5506:5;5502:18;5498:29;5491:40;5130:407;;;;;:::o;5542:451::-;5611:6;5664:2;5652:9;5643:7;5639:23;5635:32;5632:52;;;5680:1;5677;5670:12;5632:52;5720:9;5707:23;5753:18;5745:6;5742:30;5739:50;;;5785:1;5782;5775:12;5739:50;5808:22;;5861:4;5853:13;;5849:27;-1:-1:-1;5839:55:7;;5890:1;5887;5880:12;5839:55;5913:74;5979:7;5974:2;5961:16;5956:2;5952;5948:11;5913:74;:::i;5998:254::-;6063:6;6071;6124:2;6112:9;6103:7;6099:23;6095:32;6092:52;;;6140:1;6137;6130:12;6092:52;6163:29;6182:9;6163:29;:::i;:::-;6153:39;;6211:35;6242:2;6231:9;6227:18;6211:35;:::i;:::-;6201:45;;5998:254;;;;;:::o;6257:667::-;6352:6;6360;6368;6376;6429:3;6417:9;6408:7;6404:23;6400:33;6397:53;;;6446:1;6443;6436:12;6397:53;6469:29;6488:9;6469:29;:::i;:::-;6459:39;;6517:38;6551:2;6540:9;6536:18;6517:38;:::i;:::-;6507:48;;6602:2;6591:9;6587:18;6574:32;6564:42;;6657:2;6646:9;6642:18;6629:32;6684:18;6676:6;6673:30;6670:50;;;6716:1;6713;6706:12;6670:50;6739:22;;6792:4;6784:13;;6780:27;-1:-1:-1;6770:55:7;;6821:1;6818;6811:12;6770:55;6844:74;6910:7;6905:2;6892:16;6887:2;6883;6879:11;6844:74;:::i;:::-;6834:84;;;6257:667;;;;;;;:::o;6929:260::-;6997:6;7005;7058:2;7046:9;7037:7;7033:23;7029:32;7026:52;;;7074:1;7071;7064:12;7026:52;7097:29;7116:9;7097:29;:::i;:::-;7087:39;;7145:38;7179:2;7168:9;7164:18;7145:38;:::i;7194:380::-;7273:1;7269:12;;;;7316;;;7337:61;;7391:4;7383:6;7379:17;7369:27;;7337:61;7444:2;7436:6;7433:14;7413:18;7410:38;7407:161;;7490:10;7485:3;7481:20;7478:1;7471:31;7525:4;7522:1;7515:15;7553:4;7550:1;7543:15;7407:161;;7194:380;;;:::o;7579:356::-;7781:2;7763:21;;;7800:18;;;7793:30;7859:34;7854:2;7839:18;;7832:62;7926:2;7911:18;;7579:356::o;7940:127::-;8001:10;7996:3;7992:20;7989:1;7982:31;8032:4;8029:1;8022:15;8056:4;8053:1;8046:15;8072:127;8133:10;8128:3;8124:20;8121:1;8114:31;8164:4;8161:1;8154:15;8188:4;8185:1;8178:15;8204:135;8243:3;8264:17;;;8261:43;;8284:18;;:::i;:::-;-1:-1:-1;8331:1:7;8320:13;;8204:135::o;8344:168::-;8384:7;8450:1;8446;8442:6;8438:14;8435:1;8432:21;8427:1;8420:9;8413:17;8409:45;8406:71;;;8457:18;;:::i;:::-;-1:-1:-1;8497:9:7;;8344:168::o;8517:128::-;8557:3;8588:1;8584:6;8581:1;8578:13;8575:39;;;8594:18;;:::i;:::-;-1:-1:-1;8630:9:7;;8517:128::o;8776:545::-;8878:2;8873:3;8870:11;8867:448;;;8914:1;8939:5;8935:2;8928:17;8984:4;8980:2;8970:19;9054:2;9042:10;9038:19;9035:1;9031:27;9025:4;9021:38;9090:4;9078:10;9075:20;9072:47;;;-1:-1:-1;9113:4:7;9072:47;9168:2;9163:3;9159:12;9156:1;9152:20;9146:4;9142:31;9132:41;;9223:82;9241:2;9234:5;9231:13;9223:82;;;9286:17;;;9267:1;9256:13;9223:82;;9497:1352;9623:3;9617:10;9650:18;9642:6;9639:30;9636:56;;;9672:18;;:::i;:::-;9701:97;9791:6;9751:38;9783:4;9777:11;9751:38;:::i;:::-;9745:4;9701:97;:::i;:::-;9853:4;;9917:2;9906:14;;9934:1;9929:663;;;;10636:1;10653:6;10650:89;;;-1:-1:-1;10705:19:7;;;10699:26;10650:89;-1:-1:-1;;9454:1:7;9450:11;;;9446:24;9442:29;9432:40;9478:1;9474:11;;;9429:57;10752:81;;9899:944;;9929:663;8723:1;8716:14;;;8760:4;8747:18;;-1:-1:-1;;9965:20:7;;;10083:236;10097:7;10094:1;10091:14;10083:236;;;10186:19;;;10180:26;10165:42;;10278:27;;;;10246:1;10234:14;;;;10113:19;;10083:236;;;10087:3;10347:6;10338:7;10335:19;10332:201;;;10408:19;;;10402:26;-1:-1:-1;;10491:1:7;10487:14;;;10503:3;10483:24;10479:37;10475:42;10460:58;10445:74;;10332:201;-1:-1:-1;;;;;10579:1:7;10563:14;;;10559:22;10546:36;;-1:-1:-1;9497:1352:7:o;11270:1230::-;11494:3;11532:6;11526:13;11558:4;11571:51;11615:6;11610:3;11605:2;11597:6;11593:15;11571:51;:::i;:::-;11685:13;;11644:16;;;;11707:55;11685:13;11644:16;11729:15;;;11707:55;:::i;:::-;11851:13;;11784:20;;;11824:1;;11889:36;11851:13;11889:36;:::i;:::-;11944:1;11961:18;;;11988:141;;;;12143:1;12138:337;;;;11954:521;;11988:141;-1:-1:-1;;12023:24:7;;12009:39;;12100:16;;12093:24;12079:39;;12068:51;;;-1:-1:-1;11988:141:7;;12138:337;12169:6;12166:1;12159:17;12217:2;12214:1;12204:16;12242:1;12256:169;12270:8;12267:1;12264:15;12256:169;;;12352:14;;12337:13;;;12330:37;12395:16;;;;12287:10;;12256:169;;;12260:3;;12456:8;12449:5;12445:20;12438:27;;11954:521;-1:-1:-1;12491:3:7;;11270:1230;-1:-1:-1;;;;;;;;;;11270:1230:7:o;12505:217::-;12545:1;12571;12561:132;;12615:10;12610:3;12606:20;12603:1;12596:31;12650:4;12647:1;12640:15;12678:4;12675:1;12668:15;12561:132;-1:-1:-1;12707:9:7;;12505:217::o;14484:489::-;-1:-1:-1;;;;;14753:15:7;;;14735:34;;14805:15;;14800:2;14785:18;;14778:43;14852:2;14837:18;;14830:34;;;14900:3;14895:2;14880:18;;14873:31;;;14678:4;;14921:46;;14947:19;;14939:6;14921:46;:::i;:::-;14913:54;14484:489;-1:-1:-1;;;;;;14484:489:7:o;14978:249::-;15047:6;15100:2;15088:9;15079:7;15075:23;15071:32;15068:52;;;15116:1;15113;15106:12;15068:52;15148:9;15142:16;15167:30;15191:5;15167:30;:::i

Swarm Source

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