ETH Price: $3,182.69 (-8.02%)
Gas: 3 Gwei

Token

t3rm.dev (t3rm)
 

Overview

Max Total Supply

112 t3rm

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
champoonk.eth
Balance
1 t3rm
0xb130a894187664b22b823de7bb886e5c09e27d51
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:
t3rm

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: t3rm.sol
// SPDX-License-Identifier: MIT
// https://t3rm.dev
pragma solidity ^0.8.0;

import "./ERC721URIStorage.sol";
import "./Ownable.sol";
import "./Counters.sol";

contract t3rm is ERC721URIStorage, Ownable {
  /**
   * Token IDs counter.
   *
   * Provides an auto-incremented ID for each token minted.
   */
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIDs;

  /**
   * Launch block number.
   *
   * Prevents minting until the platform launches.
   */
   uint private _launchBlock;

  /**
   * Mapping of package hash to tokenID.
   */
   mapping(bytes32 => uint) private _packages;

   /**
   * Mapping of tokenID to package hash.
   */
   mapping(uint => string) private _tokens;

   /**
   * Mapping of tokenID to creator.
   */
   mapping(uint => address) private _creators;

  /**
   * Mapping of package to frozen status.
   */
  mapping(uint => bool) private _frozen;

  /**
   * Contract metadata URI.
   */
  string private _contractURI;

  /**
   * Mint fee
   *
   * Defines the price required to register a package.
   */
  uint private _mintFee;

   /**
   * Mint fee floor
   *
   * Defines the lowest price for the minting fee.
   */
  uint private _mintFeeFloor;

  /**
   * List mint at.
   *
   * Internally stores the block numbers for the last mint event.
   * Used to calculate the block delta for price adjustments.
   */
  uint private _lastMintAt;

  /**
   * Update frequency.
   *
   * Defines the frequency for the mint fee adjustment.
   *
   * Example: A value of 500 increases the _mintFee if a new token is
   * minted with fewer than 500 blocks since the previous minting, and
   * decreases the value if more than 500 blocks have been created.
   *
   * This is used to optimize prices to achieve a steady flow of dev.
   */
  uint private _updateFreq;

  /**
   * Update amount.
   *
   * Defines the divisor used in the mint fee rebalancing update.
   *
   * Example: A value of 20 will increase or decrease the _mintFee
   * by 5 percent.
   */
  uint private _updateAmt;

  /**
   * Constructor to deploy the contract.
   *
   * Sets the initial settings for the contract.
   */
  constructor(
    string memory _name,
    string memory _symbol,
    string memory __contractURI,
    uint __mintFee,
    uint __mintFeeFloor,
    uint __updateFreq,
    uint __updatAmt,
    uint __launchBlock
  ) ERC721(_name, _symbol) {
    _contractURI = __contractURI;
    _mintFee = __mintFee;
    _mintFeeFloor = __mintFeeFloor;
    _updateFreq = __updateFreq;
    _updateAmt = __updatAmt;
    _launchBlock = __launchBlock;

    // Reserved: connect
    _packages[0x06e7a5e6cac387364da652310717d5f91789fd895ebf5dc658e0dcd80a2f9a42] = type(uint256).max;

    // Reserved: disconnect
    _packages[0x017399084a6301db582204dd3505f7ead52eb83de2b3c608d8503256263026cf] = type(uint256).max;

    // Reserved: info
    _packages[0x3820cab827512459062f4d6dd584c03d5f2ec29517c1c68c886f18f041fc4fc7] = type(uint256).max;

    // Reserved: list
    _packages[0xbe8e25a9981f15070e47df9c1c85829f53ccec91a1340eac095113ab184fae5f] = type(uint256).max;

    // Reserved: mint
    _packages[0x5b4ea791576315f49763e091eb2b21ee4f1789045afc8e036b44288714996993] = type(uint256).max;

    // Reserved: update
    _packages[0xfdcff868f2b2010d7dde03b445b78c840f2a012dd6208aa14b5c673094f0aa31] = type(uint256).max;

    // Reserved: freeze
    _packages[0x1238908b973638e0ad25d4933d8d3a76f918aaa8cbb3bee6bc1d0adcb26cec59] = type(uint256).max;
  }

  /**
   * package Hash helper.
   *
   * Accepts lowercase letters, numbers, hyphens, periods, and underscores.
   * Returns a keccak256 hash.
   */
  function _packageHash(string memory str) private pure returns (bytes32) {
    bytes memory b = bytes(str);

    for (uint i; i<b.length; i++){
      bytes1 char = b[i];

      require (
        (char >= 0x30 && char <= 0x39) || //0-9
        (char >= 0x61 && char <= 0x7A) || //a-z
        (char == 0x2D) || //-
        (char == 0x2E) || //.
        (char == 0x5F) //_
      , "package contains invalid characters.");
    }

    return keccak256(abi.encode(string(b)));
  }

  /**
   * Contract metadata URI
   *
   * Provides the URI for the contract metadata.
   */
  function contractURI() public view returns (string memory) {
    return string(abi.encodePacked(_baseURI(), _contractURI));
  }

  /**
   * Override for the OpenZeppelin ERC721 baseURI function.
   *
   * All tokenURIs will use a deterministic multihash for the
   * metadata, hosted behind a gateway-agnostic IPFS protocol.
   */
  function _baseURI() internal view virtual override returns (string memory) {
    return "ipfs://";
  }

  /**
   * Get the launch block.
   *
   * Returns the block number when tokens can be minted.
   */
  function launchBlock() public view returns (uint) {
    return _launchBlock;
  }

  /**
   * Get the current total supply of tokens.
   *
   * Returns the total number of tokens minted.
   */
  function totalSupply() public view returns (uint) {
    return _tokenIDs.current();
  }

  /**
   * Get token ID of package.
   *
   * Returns the token ID.
   */
  function token(string memory _package) public view returns (uint) {
    bytes32 _cmd = _packageHash(_package);
    uint tokedID = _packages[_cmd];
    require(tokedID > 0, "package not found.");

    return tokedID;
  }

  /**
   * Get the package string for a tokenID.
   *
   * Returns the registered package.
   */
  function package(uint _tokenId) public view returns (string memory) {
    require(_tokenId <= _tokenIDs.current(), "Token doesn't exist.");

    return _tokens[_tokenId];
  }

  /**
   * Get the creator of a token.
   *
   * Returns the creator's address.
   */
  function creator(uint _tokenId) public view returns (address) {
    require(_tokenId <= _tokenIDs.current(), "Token doesn't exist.");

    return _creators[_tokenId];
  }

  /**
   * Get frozen status.
   *
   * Returns true if a tokenURI is unable to be updated.
   */
  function frozen(string memory _package) public view returns (bool) {
    bytes32 _cmd = _packageHash(_package);
    uint tokedID = _packages[_cmd];
    require(tokedID > 0, "package not found.");

    return _frozen[tokedID];
  }

  /**
   * Get the current mint fee.
   *
   * Returns the current transfer amount required to mint
   * a new token.
   */
  function mintFee() public view returns (uint) {
    return _mintFee;
  }

  /**
   * Get the current mint fee floor price.
   *
   * Returns the lowest price for a token minting.
   */
  function mintFeeFloor() public view returns (uint) {
    return _mintFeeFloor;
  }

  /**
   * Get code
   *
   * Returns the source code multihash for a package.
   */
  function code(string memory _package) public view returns (string memory) {
    bytes32 _cmd = _packageHash(_package);
    uint tokenID = _packages[_cmd];
    require(tokenID > 0, "package not found.");

    return tokenURI(tokenID);
  }

  /**
   * Update the mint fee.
   *
   * Adjusts the mint fee based on the block delta between
   * the last token minted.
   */
  function _updateMintFee() private {
    uint blockDelta = block.number - _lastMintAt;
    blockDelta > _updateFreq
      ? _mintFee -= _mintFee/_updateAmt
      : _mintFee += _mintFee/_updateAmt;

    if (_mintFee < _mintFeeFloor) _mintFee = _mintFeeFloor;
  }

  /**
   * Mint a token to an address.
   *
   * Requires payment of _mintFee.
   */
  function mintTo(
    address _receiver,
    string memory _package,
    string memory _tokenURI
  ) public payable returns (uint) {
    require(block.number >= _launchBlock, "Platform hasn't launched.");
    require(msg.value >= _mintFee, "Requires minimum fee.");

    bytes32 _cmd = _packageHash(_package);
    require(_packages[_cmd] == 0, "package in use.");

    payable(owner()).transfer(msg.value);

    _updateMintFee();
    _lastMintAt = block.number;

    _tokenIDs.increment();
    uint tokenId = _tokenIDs.current();
    _mint(_receiver, tokenId);
    _setTokenURI(tokenId, _tokenURI);
    _packages[_cmd] = tokenId;
    _tokens[tokenId] = _package;
    _creators[tokenId] = msg.sender;

    return tokenId;
  }

  /**
   * Mint a token to the sender.
   *
   * Requires payment of _mintFee.
   */
  function mint(string memory _package, string memory _tokenURI) public payable returns (uint) {
    return mintTo(msg.sender, _package, _tokenURI);
  }

  /**
   * Update a package.
   *
   * Requires ownership of token.
   */
  function update(string memory _package, string memory _tokenURI) public {
    bytes32 _cmd = _packageHash(_package);
    uint tokenID = _packages[_cmd];
    require(tokenID > 0, "package not found.");
    require(ownerOf(tokenID) == msg.sender, "Only the owner can update the token.");
    require(!_frozen[tokenID], "Token is frozen and cannot be updated.");

    _setTokenURI(tokenID, _tokenURI);
  }

  /**
   * Freeze a package.
   *
   * Requires ownership of token.
   */
  function freeze(string memory _package) public {
    bytes32 _cmd = _packageHash(_package);
    uint tokenID = _packages[_cmd];
    require(tokenID > 0, "package not found.");
    require(ownerOf(tokenID) == msg.sender, "Only the owner can freeze the token.");
    require(!_frozen[tokenID], "Already frozen.");

    _frozen[tokenID] = true;
  }

  /**
   * Admin function: Update mint fee.
   *
   * Updates the _mintFee value.
   */
  function adminUpdateMintFee(uint __mintFee) onlyOwner public {
    _mintFee = __mintFee;
  }

  /**
   * Admin function: Update mint fee floor.
   *
   * Updates the _mintFeeFloor value.
   */
  function adminUpdateMintFeeFloor(uint __mintFeeFloor) onlyOwner public {
    _mintFeeFloor = __mintFeeFloor;
    if (_mintFeeFloor > _mintFee) _mintFee = _mintFeeFloor;
  }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 13: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

pragma solidity ^0.8.0;

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

File 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"__contractURI","type":"string"},{"internalType":"uint256","name":"__mintFee","type":"uint256"},{"internalType":"uint256","name":"__mintFeeFloor","type":"uint256"},{"internalType":"uint256","name":"__updateFreq","type":"uint256"},{"internalType":"uint256","name":"__updatAmt","type":"uint256"},{"internalType":"uint256","name":"__launchBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"__mintFee","type":"uint256"}],"name":"adminUpdateMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__mintFeeFloor","type":"uint256"}],"name":"adminUpdateMintFeeFloor","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":"string","name":"_package","type":"string"}],"name":"code","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_package","type":"string"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_package","type":"string"}],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_package","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFeeFloor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"string","name":"_package","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"package","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_package","type":"string"}],"name":"token","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_package","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002ac438038062002ac483398101604081905262000034916200038d565b8751889088906200004d90600090602085019062000230565b5080516200006390600190602084019062000230565b505050620000806200007a620001da60201b60201c565b620001de565b85516200009590600e90602089019062000230565b50600f949094556010929092556012556013556009555050600a602052506000197fae1a07ceb7e02c239212f915778e51953637d290ff7610c02490b7bd1405473c8190557fa73fae20e3093a1d065a8a192c217697ac55a332d15d7c45a66a278715cd69678190557f165c4c8ada6a1d0c15234257e3af3ac124b7ec869a4f94721ccf868912bd925e8190557f71607104bd43a17d14c044f7e35f155ce1198aa4d4dbd2c89208590d033936228190557f1cace1943b2a462b6e9d279d2ff124606da6a17fc3b3e260f57dc21a2ab89d168190557fe84578c876fa443ac1f52aedfdf76ae639ed60d05d8b2e0d6c8fbb35305347b78190557f1238908b973638e0ad25d4933d8d3a76f918aaa8cbb3bee6bc1d0adcb26cec596000527f6bc85611eb6857ef3e9d59984c73f4990e741c1a5d0f22ec22d7c03a2abd304955620004a2565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023e906200044f565b90600052602060002090601f016020900481019282620002625760008555620002ad565b82601f106200027d57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad57825182559160200191906001019062000290565b50620002bb929150620002bf565b5090565b5b80821115620002bb5760008155600101620002c0565b600082601f830112620002e857600080fd5b81516001600160401b03808211156200030557620003056200048c565b604051601f8301601f19908116603f011681019082821181831017156200033057620003306200048c565b816040528381526020925086838588010111156200034d57600080fd5b600091505b8382101562000371578582018301518183018401529082019062000352565b83821115620003835760008385830101525b9695505050505050565b600080600080600080600080610100898b031215620003ab57600080fd5b88516001600160401b0380821115620003c357600080fd5b620003d18c838d01620002d6565b995060208b0151915080821115620003e857600080fd5b620003f68c838d01620002d6565b985060408b01519150808211156200040d57600080fd5b506200041c8b828c01620002d6565b965050606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600181811c908216806200046457607f821691505b602082108114156200048657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61261280620004b26000396000f3fe6080604052600436106101e35760003560e01c80638aa0fdad11610102578063c87b56dd11610095578063e8a3d48511610064578063e8a3d48514610545578063e985e9c51461055a578063f2fde38b146105a3578063f4c84d19146105c357600080fd5b8063c87b56dd146104d0578063d00efb2f146104f0578063e6a86fb014610505578063e7450a4a1461052557600080fd5b8063976e0c6c116100d1578063976e0c6c14610450578063a22cb46514610470578063a677f99214610490578063b88d4fde146104b057600080fd5b80638aa0fdad146103ea5780638da5cb5b146103fd578063946ad0e81461041b57806395d89b411461043b57600080fd5b806342842e0e1161017a5780636b2593c9116101495780636b2593c91461038257806370a08231146103a2578063715018a6146103c25780637897f76a146103d757600080fd5b806342842e0e14610302578063510b5158146103225780635bb98910146103425780636352211e1461036257600080fd5b806313966db5116101b657806313966db51461029957806318160ddd146102b85780631ef72778146102cd57806323b872dd146102e257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612149565b6105e3565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610635565b604051610214919061237e565b34801561024b57600080fd5b5061025f61025a36600461221c565b6106c7565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b5061029761029236600461211f565b610754565b005b3480156102a557600080fd5b50600f545b604051908152602001610214565b3480156102c457600080fd5b506102aa61086a565b3480156102d957600080fd5b506010546102aa565b3480156102ee57600080fd5b506102976102fd366004611fb7565b61087a565b34801561030e57600080fd5b5061029761031d366004611fb7565b6108ab565b34801561032e57600080fd5b5061025f61033d36600461221c565b6108c6565b34801561034e57600080fd5b5061029761035d36600461221c565b610933565b34801561036e57600080fd5b5061025f61037d36600461221c565b610962565b34801561038e57600080fd5b5061020861039d366004612183565b6109d9565b3480156103ae57600080fd5b506102aa6103bd366004611f69565b610a2d565b3480156103ce57600080fd5b50610297610ab4565b6102aa6103e53660046120ab565b610aea565b6102aa6103f83660046121b8565b610cae565b34801561040957600080fd5b506007546001600160a01b031661025f565b34801561042757600080fd5b506102aa610436366004612183565b610cc2565b34801561044757600080fd5b50610232610cfd565b34801561045c57600080fd5b5061023261046b36600461221c565b610d0c565b34801561047c57600080fd5b5061029761048b36600461206f565b610dfb565b34801561049c57600080fd5b506102326104ab366004612183565b610ec0565b3480156104bc57600080fd5b506102976104cb366004611ff3565b610f0d565b3480156104dc57600080fd5b506102326104eb36600461221c565b610f45565b3480156104fc57600080fd5b506009546102aa565b34801561051157600080fd5b50610297610520366004612183565b6110a7565b34801561053157600080fd5b5061029761054036600461221c565b6111bb565b34801561055157600080fd5b506102326111fe565b34801561056657600080fd5b50610208610575366004611f84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b506102976105be366004611f69565b61122f565b3480156105cf57600080fd5b506102976105de3660046121b8565b6112c7565b60006001600160e01b031982166380ac58cd60e01b148061061457506001600160e01b03198216635b5e139f60e01b145b8061062f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064490612504565b80601f016020809104026020016040519081016040528092919081815260200182805461067090612504565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d2826113e5565b6107385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075f82610962565b9050806001600160a01b0316836001600160a01b031614156107cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072f565b336001600160a01b03821614806107e957506107e98133610575565b61085b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072f565b6108658383611402565b505050565b600061087560085490565b905090565b6108843382611470565b6108a05760405162461bcd60e51b815260040161072f90612444565b610865838383611556565b61086583838360405180602001604052806000815250610f0d565b60006108d160085490565b8211156109175760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b604482015260640161072f565b506000908152600c60205260409020546001600160a01b031690565b6007546001600160a01b0316331461095d5760405162461bcd60e51b815260040161072f9061240f565b600f55565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072f565b6000806109e5836116f6565b6000818152600a602052604090205490915080610a145760405162461bcd60e51b815260040161072f906123e3565b6000908152600d602052604090205460ff169392505050565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072f565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610ade5760405162461bcd60e51b815260040161072f9061240f565b610ae86000611860565b565b6000600954431015610b3e5760405162461bcd60e51b815260206004820152601960248201527f506c6174666f726d206861736e2774206c61756e636865642e00000000000000604482015260640161072f565b600f54341015610b885760405162461bcd60e51b81526020600482015260156024820152742932b8bab4b932b99036b4b734b6bab6903332b29760591b604482015260640161072f565b6000610b93846116f6565b6000818152600a602052604090205490915015610be45760405162461bcd60e51b815260206004820152600f60248201526e3830b1b5b0b3b29034b7103ab9b29760891b604482015260640161072f565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c1d573d6000803e3d6000fd5b50610c266118b2565b43601155610c38600880546001019055565b6000610c4360085490565b9050610c4f8682611937565b610c598185611a6a565b6000828152600a60209081526040808320849055838352600b82529091208651610c8592880190611e1e565b506000818152600c6020526040902080546001600160a01b031916331790559150509392505050565b6000610cbb338484610aea565b9392505050565b600080610cce836116f6565b6000818152600a602052604090205490915080610cbb5760405162461bcd60e51b815260040161072f906123e3565b60606001805461064490612504565b6060610d1760085490565b821115610d5d5760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b604482015260640161072f565b6000828152600b602052604090208054610d7690612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290612504565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b50505050509050919050565b6001600160a01b038216331415610e545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606000610ecd836116f6565b6000818152600a602052604090205490915080610efc5760405162461bcd60e51b815260040161072f906123e3565b610f0581610f45565b949350505050565b610f173383611470565b610f335760405162461bcd60e51b815260040161072f90612444565b610f3f84848484611af5565b50505050565b6060610f50826113e5565b610fb65760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161072f565b60008281526006602052604081208054610fcf90612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90612504565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505090506000611059611b28565b905080516000141561106c575092915050565b81511561109e578082604051602001611086929190612261565b60405160208183030381529060405292505050919050565b610f0584611b49565b60006110b2826116f6565b6000818152600a6020526040902054909150806110e15760405162461bcd60e51b815260040161072f906123e3565b336110eb82610962565b6001600160a01b03161461114d5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c7920746865206f776e65722063616e20667265657a652074686520746f60448201526335b2b71760e11b606482015260840161072f565b6000818152600d602052604090205460ff161561119e5760405162461bcd60e51b815260206004820152600f60248201526e20b63932b0b23c90333937bd32b71760891b604482015260640161072f565b6000908152600d60205260409020805460ff191660011790555050565b6007546001600160a01b031633146111e55760405162461bcd60e51b815260040161072f9061240f565b6010819055600f548111156111fb57601054600f555b50565b6060611208611b28565b600e60405160200161121b929190612290565b604051602081830303815290604052905090565b6007546001600160a01b031633146112595760405162461bcd60e51b815260040161072f9061240f565b6001600160a01b0381166112be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b6111fb81611860565b60006112d2836116f6565b6000818152600a6020526040902054909150806113015760405162461bcd60e51b815260040161072f906123e3565b3361130b82610962565b6001600160a01b03161461136d5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c7920746865206f776e65722063616e207570646174652074686520746f60448201526335b2b71760e11b606482015260840161072f565b6000818152600d602052604090205460ff16156113db5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e2069732066726f7a656e20616e642063616e6e6f742062652075706044820152653230ba32b21760d11b606482015260840161072f565b610f3f8184611a6a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143782610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061147b826113e5565b6114dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b60006114e783610962565b9050806001600160a01b0316846001600160a01b031614806115225750836001600160a01b0316611517846106c7565b6001600160a01b0316145b80610f0557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f05565b826001600160a01b031661156982610962565b6001600160a01b0316146115d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072f565b6001600160a01b0382166116335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072f565b61163e600082611402565b6001600160a01b03831660009081526003602052604081208054600192906116679084906124c1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611695908490612495565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b81518110156118305760008282815181106117185761171861259a565b01602001516001600160f81b0319169050600360fc1b811080159061174b5750603960f81b6001600160f81b0319821611155b8061177d5750606160f81b6001600160f81b031982161080159061177d5750603d60f91b6001600160f81b0319821611155b806117955750602d60f81b6001600160f81b03198216145b806117ad5750601760f91b6001600160f81b03198216145b806117c55750605f60f81b6001600160f81b03198216145b61181d5760405162461bcd60e51b8152602060048201526024808201527f7061636b61676520636f6e7461696e7320696e76616c6964206368617261637460448201526332b9399760e11b606482015260840161072f565b50806118288161253f565b9150506116fb565b5080604051602001611842919061237e565b60405160208183030381529060405280519060200120915050919050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000601154436118c291906124c1565b905060125481116118f957601354600f546118dd91906124ad565b600f60008282546118ee9190612495565b925050819055611921565b601354600f5461190991906124ad565b600f600082825461191a91906124c1565b9250508190555b50601054600f5410156111fb57601054600f5550565b6001600160a01b03821661198d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072f565b611996816113e5565b156119e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072f565b6001600160a01b0382166000908152600360205260408120805460019290611a0c908490612495565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a73826113e5565b611ad65760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161072f565b6000828152600660209081526040909120825161086592840190611e1e565b611b00848484611556565b611b0c84848484611c13565b610f3f5760405162461bcd60e51b815260040161072f90612391565b604080518082019091526007815266697066733a2f2f60c81b602082015290565b6060611b54826113e5565b611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072f565b6000611bc2611b28565b90506000815111611be25760405180602001604052806000815250610cbb565b80611bec84611d20565b604051602001611bfd929190612261565b6040516020818303038152906040529392505050565b60006001600160a01b0384163b15611d1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c57903390899088908890600401612341565b602060405180830381600087803b158015611c7157600080fd5b505af1925050508015611ca1575060408051601f3d908101601f19168201909252611c9e91810190612166565b60015b611cfb573d808015611ccf576040519150601f19603f3d011682016040523d82523d6000602084013e611cd4565b606091505b508051611cf35760405162461bcd60e51b815260040161072f90612391565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f05565b506001949350505050565b606081611d445750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d6e5780611d588161253f565b9150611d679050600a836124ad565b9150611d48565b60008167ffffffffffffffff811115611d8957611d896125b0565b6040519080825280601f01601f191660200182016040528015611db3576020820181803683370190505b5090505b8415610f0557611dc86001836124c1565b9150611dd5600a8661255a565b611de0906030612495565b60f81b818381518110611df557611df561259a565b60200101906001600160f81b031916908160001a905350611e17600a866124ad565b9450611db7565b828054611e2a90612504565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed26125b0565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa6125b0565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600082601f830112611f5a57600080fd5b610cbb83833560208501611eb7565b600060208284031215611f7b57600080fd5b610cbb82611f2d565b60008060408385031215611f9757600080fd5b611fa083611f2d565b9150611fae60208401611f2d565b90509250929050565b600080600060608486031215611fcc57600080fd5b611fd584611f2d565b9250611fe360208501611f2d565b9150604084013590509250925092565b6000806000806080858703121561200957600080fd5b61201285611f2d565b935061202060208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561204357600080fd5b8501601f8101871361205457600080fd5b61206387823560208401611eb7565b91505092959194509250565b6000806040838503121561208257600080fd5b61208b83611f2d565b9150602083013580151581146120a057600080fd5b809150509250929050565b6000806000606084860312156120c057600080fd5b6120c984611f2d565b9250602084013567ffffffffffffffff808211156120e657600080fd5b6120f287838801611f49565b9350604086013591508082111561210857600080fd5b5061211586828701611f49565b9150509250925092565b6000806040838503121561213257600080fd5b61213b83611f2d565b946020939093013593505050565b60006020828403121561215b57600080fd5b8135610cbb816125c6565b60006020828403121561217857600080fd5b8151610cbb816125c6565b60006020828403121561219557600080fd5b813567ffffffffffffffff8111156121ac57600080fd5b610f0584828501611f49565b600080604083850312156121cb57600080fd5b823567ffffffffffffffff808211156121e357600080fd5b6121ef86838701611f49565b9350602085013591508082111561220557600080fd5b5061221285828601611f49565b9150509250929050565b60006020828403121561222e57600080fd5b5035919050565b6000815180845261224d8160208601602086016124d8565b601f01601f19169290920160200192915050565b600083516122738184602088016124d8565b8351908301906122878183602088016124d8565b01949350505050565b6000835160206122a382858389016124d8565b845491840191600090600181811c90808316806122c157607f831692505b8583108114156122df57634e487b7160e01b85526022600452602485fd5b8080156122f3576001811461230457612331565b60ff19851688528388019550612331565b60008b81526020902060005b858110156123295781548a820152908401908801612310565b505083880195505b50939a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237490830184612235565b9695505050505050565b602081526000610cbb6020830184612235565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601290820152713830b1b5b0b3b2903737ba103337bab7321760711b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124a8576124a861256e565b500190565b6000826124bc576124bc612584565b500490565b6000828210156124d3576124d361256e565b500390565b60005b838110156124f35781810151838201526020016124db565b83811115610f3f5750506000910152565b600181811c9082168061251857607f821691505b6020821081141561253957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125535761255361256e565b5060010190565b60008261256957612569612584565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111fb57600080fdfea26469706673582212200b5c71c9dc4f93398fb8491ae96d487d0e7c4a52f900c822ce13bab26dcc66a964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000c8883500000000000000000000000000000000000000000000000000000000000000087433726d2e64657600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047433726d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d633551755a4a437961526a335345436344686650644b56756e626243514c316631586659336b384b77675776000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638aa0fdad11610102578063c87b56dd11610095578063e8a3d48511610064578063e8a3d48514610545578063e985e9c51461055a578063f2fde38b146105a3578063f4c84d19146105c357600080fd5b8063c87b56dd146104d0578063d00efb2f146104f0578063e6a86fb014610505578063e7450a4a1461052557600080fd5b8063976e0c6c116100d1578063976e0c6c14610450578063a22cb46514610470578063a677f99214610490578063b88d4fde146104b057600080fd5b80638aa0fdad146103ea5780638da5cb5b146103fd578063946ad0e81461041b57806395d89b411461043b57600080fd5b806342842e0e1161017a5780636b2593c9116101495780636b2593c91461038257806370a08231146103a2578063715018a6146103c25780637897f76a146103d757600080fd5b806342842e0e14610302578063510b5158146103225780635bb98910146103425780636352211e1461036257600080fd5b806313966db5116101b657806313966db51461029957806318160ddd146102b85780631ef72778146102cd57806323b872dd146102e257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612149565b6105e3565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610635565b604051610214919061237e565b34801561024b57600080fd5b5061025f61025a36600461221c565b6106c7565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b5061029761029236600461211f565b610754565b005b3480156102a557600080fd5b50600f545b604051908152602001610214565b3480156102c457600080fd5b506102aa61086a565b3480156102d957600080fd5b506010546102aa565b3480156102ee57600080fd5b506102976102fd366004611fb7565b61087a565b34801561030e57600080fd5b5061029761031d366004611fb7565b6108ab565b34801561032e57600080fd5b5061025f61033d36600461221c565b6108c6565b34801561034e57600080fd5b5061029761035d36600461221c565b610933565b34801561036e57600080fd5b5061025f61037d36600461221c565b610962565b34801561038e57600080fd5b5061020861039d366004612183565b6109d9565b3480156103ae57600080fd5b506102aa6103bd366004611f69565b610a2d565b3480156103ce57600080fd5b50610297610ab4565b6102aa6103e53660046120ab565b610aea565b6102aa6103f83660046121b8565b610cae565b34801561040957600080fd5b506007546001600160a01b031661025f565b34801561042757600080fd5b506102aa610436366004612183565b610cc2565b34801561044757600080fd5b50610232610cfd565b34801561045c57600080fd5b5061023261046b36600461221c565b610d0c565b34801561047c57600080fd5b5061029761048b36600461206f565b610dfb565b34801561049c57600080fd5b506102326104ab366004612183565b610ec0565b3480156104bc57600080fd5b506102976104cb366004611ff3565b610f0d565b3480156104dc57600080fd5b506102326104eb36600461221c565b610f45565b3480156104fc57600080fd5b506009546102aa565b34801561051157600080fd5b50610297610520366004612183565b6110a7565b34801561053157600080fd5b5061029761054036600461221c565b6111bb565b34801561055157600080fd5b506102326111fe565b34801561056657600080fd5b50610208610575366004611f84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105af57600080fd5b506102976105be366004611f69565b61122f565b3480156105cf57600080fd5b506102976105de3660046121b8565b6112c7565b60006001600160e01b031982166380ac58cd60e01b148061061457506001600160e01b03198216635b5e139f60e01b145b8061062f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064490612504565b80601f016020809104026020016040519081016040528092919081815260200182805461067090612504565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d2826113e5565b6107385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061075f82610962565b9050806001600160a01b0316836001600160a01b031614156107cd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161072f565b336001600160a01b03821614806107e957506107e98133610575565b61085b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072f565b6108658383611402565b505050565b600061087560085490565b905090565b6108843382611470565b6108a05760405162461bcd60e51b815260040161072f90612444565b610865838383611556565b61086583838360405180602001604052806000815250610f0d565b60006108d160085490565b8211156109175760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b604482015260640161072f565b506000908152600c60205260409020546001600160a01b031690565b6007546001600160a01b0316331461095d5760405162461bcd60e51b815260040161072f9061240f565b600f55565b6000818152600260205260408120546001600160a01b03168061062f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161072f565b6000806109e5836116f6565b6000818152600a602052604090205490915080610a145760405162461bcd60e51b815260040161072f906123e3565b6000908152600d602052604090205460ff169392505050565b60006001600160a01b038216610a985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161072f565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610ade5760405162461bcd60e51b815260040161072f9061240f565b610ae86000611860565b565b6000600954431015610b3e5760405162461bcd60e51b815260206004820152601960248201527f506c6174666f726d206861736e2774206c61756e636865642e00000000000000604482015260640161072f565b600f54341015610b885760405162461bcd60e51b81526020600482015260156024820152742932b8bab4b932b99036b4b734b6bab6903332b29760591b604482015260640161072f565b6000610b93846116f6565b6000818152600a602052604090205490915015610be45760405162461bcd60e51b815260206004820152600f60248201526e3830b1b5b0b3b29034b7103ab9b29760891b604482015260640161072f565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c1d573d6000803e3d6000fd5b50610c266118b2565b43601155610c38600880546001019055565b6000610c4360085490565b9050610c4f8682611937565b610c598185611a6a565b6000828152600a60209081526040808320849055838352600b82529091208651610c8592880190611e1e565b506000818152600c6020526040902080546001600160a01b031916331790559150509392505050565b6000610cbb338484610aea565b9392505050565b600080610cce836116f6565b6000818152600a602052604090205490915080610cbb5760405162461bcd60e51b815260040161072f906123e3565b60606001805461064490612504565b6060610d1760085490565b821115610d5d5760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b604482015260640161072f565b6000828152600b602052604090208054610d7690612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290612504565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b50505050509050919050565b6001600160a01b038216331415610e545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606000610ecd836116f6565b6000818152600a602052604090205490915080610efc5760405162461bcd60e51b815260040161072f906123e3565b610f0581610f45565b949350505050565b610f173383611470565b610f335760405162461bcd60e51b815260040161072f90612444565b610f3f84848484611af5565b50505050565b6060610f50826113e5565b610fb65760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161072f565b60008281526006602052604081208054610fcf90612504565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90612504565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505090506000611059611b28565b905080516000141561106c575092915050565b81511561109e578082604051602001611086929190612261565b60405160208183030381529060405292505050919050565b610f0584611b49565b60006110b2826116f6565b6000818152600a6020526040902054909150806110e15760405162461bcd60e51b815260040161072f906123e3565b336110eb82610962565b6001600160a01b03161461114d5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c7920746865206f776e65722063616e20667265657a652074686520746f60448201526335b2b71760e11b606482015260840161072f565b6000818152600d602052604090205460ff161561119e5760405162461bcd60e51b815260206004820152600f60248201526e20b63932b0b23c90333937bd32b71760891b604482015260640161072f565b6000908152600d60205260409020805460ff191660011790555050565b6007546001600160a01b031633146111e55760405162461bcd60e51b815260040161072f9061240f565b6010819055600f548111156111fb57601054600f555b50565b6060611208611b28565b600e60405160200161121b929190612290565b604051602081830303815290604052905090565b6007546001600160a01b031633146112595760405162461bcd60e51b815260040161072f9061240f565b6001600160a01b0381166112be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b6111fb81611860565b60006112d2836116f6565b6000818152600a6020526040902054909150806113015760405162461bcd60e51b815260040161072f906123e3565b3361130b82610962565b6001600160a01b03161461136d5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c7920746865206f776e65722063616e207570646174652074686520746f60448201526335b2b71760e11b606482015260840161072f565b6000818152600d602052604090205460ff16156113db5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e2069732066726f7a656e20616e642063616e6e6f742062652075706044820152653230ba32b21760d11b606482015260840161072f565b610f3f8184611a6a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143782610962565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061147b826113e5565b6114dc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161072f565b60006114e783610962565b9050806001600160a01b0316846001600160a01b031614806115225750836001600160a01b0316611517846106c7565b6001600160a01b0316145b80610f0557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f05565b826001600160a01b031661156982610962565b6001600160a01b0316146115d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161072f565b6001600160a01b0382166116335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161072f565b61163e600082611402565b6001600160a01b03831660009081526003602052604081208054600192906116679084906124c1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611695908490612495565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b81518110156118305760008282815181106117185761171861259a565b01602001516001600160f81b0319169050600360fc1b811080159061174b5750603960f81b6001600160f81b0319821611155b8061177d5750606160f81b6001600160f81b031982161080159061177d5750603d60f91b6001600160f81b0319821611155b806117955750602d60f81b6001600160f81b03198216145b806117ad5750601760f91b6001600160f81b03198216145b806117c55750605f60f81b6001600160f81b03198216145b61181d5760405162461bcd60e51b8152602060048201526024808201527f7061636b61676520636f6e7461696e7320696e76616c6964206368617261637460448201526332b9399760e11b606482015260840161072f565b50806118288161253f565b9150506116fb565b5080604051602001611842919061237e565b60405160208183030381529060405280519060200120915050919050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000601154436118c291906124c1565b905060125481116118f957601354600f546118dd91906124ad565b600f60008282546118ee9190612495565b925050819055611921565b601354600f5461190991906124ad565b600f600082825461191a91906124c1565b9250508190555b50601054600f5410156111fb57601054600f5550565b6001600160a01b03821661198d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072f565b611996816113e5565b156119e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072f565b6001600160a01b0382166000908152600360205260408120805460019290611a0c908490612495565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a73826113e5565b611ad65760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161072f565b6000828152600660209081526040909120825161086592840190611e1e565b611b00848484611556565b611b0c84848484611c13565b610f3f5760405162461bcd60e51b815260040161072f90612391565b604080518082019091526007815266697066733a2f2f60c81b602082015290565b6060611b54826113e5565b611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072f565b6000611bc2611b28565b90506000815111611be25760405180602001604052806000815250610cbb565b80611bec84611d20565b604051602001611bfd929190612261565b6040516020818303038152906040529392505050565b60006001600160a01b0384163b15611d1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c57903390899088908890600401612341565b602060405180830381600087803b158015611c7157600080fd5b505af1925050508015611ca1575060408051601f3d908101601f19168201909252611c9e91810190612166565b60015b611cfb573d808015611ccf576040519150601f19603f3d011682016040523d82523d6000602084013e611cd4565b606091505b508051611cf35760405162461bcd60e51b815260040161072f90612391565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f05565b506001949350505050565b606081611d445750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d6e5780611d588161253f565b9150611d679050600a836124ad565b9150611d48565b60008167ffffffffffffffff811115611d8957611d896125b0565b6040519080825280601f01601f191660200182016040528015611db3576020820181803683370190505b5090505b8415610f0557611dc86001836124c1565b9150611dd5600a8661255a565b611de0906030612495565b60f81b818381518110611df557611df561259a565b60200101906001600160f81b031916908160001a905350611e17600a866124ad565b9450611db7565b828054611e2a90612504565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed26125b0565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa6125b0565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600082601f830112611f5a57600080fd5b610cbb83833560208501611eb7565b600060208284031215611f7b57600080fd5b610cbb82611f2d565b60008060408385031215611f9757600080fd5b611fa083611f2d565b9150611fae60208401611f2d565b90509250929050565b600080600060608486031215611fcc57600080fd5b611fd584611f2d565b9250611fe360208501611f2d565b9150604084013590509250925092565b6000806000806080858703121561200957600080fd5b61201285611f2d565b935061202060208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561204357600080fd5b8501601f8101871361205457600080fd5b61206387823560208401611eb7565b91505092959194509250565b6000806040838503121561208257600080fd5b61208b83611f2d565b9150602083013580151581146120a057600080fd5b809150509250929050565b6000806000606084860312156120c057600080fd5b6120c984611f2d565b9250602084013567ffffffffffffffff808211156120e657600080fd5b6120f287838801611f49565b9350604086013591508082111561210857600080fd5b5061211586828701611f49565b9150509250925092565b6000806040838503121561213257600080fd5b61213b83611f2d565b946020939093013593505050565b60006020828403121561215b57600080fd5b8135610cbb816125c6565b60006020828403121561217857600080fd5b8151610cbb816125c6565b60006020828403121561219557600080fd5b813567ffffffffffffffff8111156121ac57600080fd5b610f0584828501611f49565b600080604083850312156121cb57600080fd5b823567ffffffffffffffff808211156121e357600080fd5b6121ef86838701611f49565b9350602085013591508082111561220557600080fd5b5061221285828601611f49565b9150509250929050565b60006020828403121561222e57600080fd5b5035919050565b6000815180845261224d8160208601602086016124d8565b601f01601f19169290920160200192915050565b600083516122738184602088016124d8565b8351908301906122878183602088016124d8565b01949350505050565b6000835160206122a382858389016124d8565b845491840191600090600181811c90808316806122c157607f831692505b8583108114156122df57634e487b7160e01b85526022600452602485fd5b8080156122f3576001811461230457612331565b60ff19851688528388019550612331565b60008b81526020902060005b858110156123295781548a820152908401908801612310565b505083880195505b50939a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061237490830184612235565b9695505050505050565b602081526000610cbb6020830184612235565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601290820152713830b1b5b0b3b2903737ba103337bab7321760711b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124a8576124a861256e565b500190565b6000826124bc576124bc612584565b500490565b6000828210156124d3576124d361256e565b500390565b60005b838110156124f35781810151838201526020016124db565b83811115610f3f5750506000910152565b600181811c9082168061251857607f821691505b6020821081141561253957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125535761255361256e565b5060010190565b60008261256957612569612584565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111fb57600080fdfea26469706673582212200b5c71c9dc4f93398fb8491ae96d487d0e7c4a52f900c822ce13bab26dcc66a964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000168000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000c8883500000000000000000000000000000000000000000000000000000000000000087433726d2e64657600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047433726d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d633551755a4a437961526a335345436344686650644b56756e626243514c316631586659336b384b77675776000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): t3rm.dev
Arg [1] : _symbol (string): t3rm
Arg [2] : __contractURI (string): Qmc5QuZJCyaRj3SECcDhfPdKVunbbCQL1f1XfY3k8KwgWv
Arg [3] : __mintFee (uint256): 100000000000000000
Arg [4] : __mintFeeFloor (uint256): 10000000000000000
Arg [5] : __updateFreq (uint256): 5760
Arg [6] : __updatAmt (uint256): 20
Arg [7] : __launchBlock (uint256): 13142069

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [4] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000001680
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [7] : 0000000000000000000000000000000000000000000000000000000000c88835
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 7433726d2e646576000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 7433726d00000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [13] : 516d633551755a4a437961526a335345436344686650644b56756e626243514c
Arg [14] : 316631586659336b384b77675776000000000000000000000000000000000000


Deployed Bytecode Sourcemap

160:9552:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1431:300:4;;;;;;;;;;-1:-1:-1;1431:300:4;;;;;:::i;:::-;;:::i;:::-;;;8254:14:13;;8247:22;8229:41;;8217:2;8202:18;1431:300:4;;;;;;;;2349:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7552:32:13;;;7534:51;;7522:2;7507:18;3860:217:4;7388:203:13;3398:401:4;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;:::-;;6308:72:12;;;;;;;;;;-1:-1:-1;6367:8:12;;6308:72;;;19576:25:13;;;19564:2;19549:18;6308:72:12;19430:177:13;4930:87:12;;;;;;;;;;;;;:::i;6495:82::-;;;;;;;;;;-1:-1:-1;6559:13:12;;6495:82;;4724:330:4;;;;;;;;;;-1:-1:-1;4724:330:4;;;;;:::i;:::-;;:::i;5120:179::-;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;5679:170:12:-;;;;;;;;;;-1:-1:-1;5679:170:12;;;;;:::i;:::-;;:::i;9343:92::-;;;;;;;;;;-1:-1:-1;9343:92:12;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;5951:229:12:-;;;;;;;;;;-1:-1:-1;5951:229:12;;;;;:::i;:::-;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:10:-;;;;;;;;;;;;;:::i;7386:723:12:-;;;;;;:::i;:::-;;:::i;8198:150::-;;;;;;:::i;:::-;;:::i;966:85:10:-;;;;;;;;;;-1:-1:-1;1038:6:10;;-1:-1:-1;;;;;1038:6:10;966:85;;5095:219:12;;;;;;;;;;-1:-1:-1;5095:219:12;;;;;:::i;:::-;;:::i;2511:102:4:-;;;;;;;;;;;;;:::i;5415:174:12:-;;;;;;;;;;-1:-1:-1;5415:174:12;;;;;:::i;:::-;;:::i;4144:290:4:-;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;6666:237:12:-;;;;;;;;;;-1:-1:-1;6666:237:12;;;;;:::i;:::-;;:::i;5365:320:4:-;;;;;;;;;;-1:-1:-1;5365:320:4;;;;;:::i;:::-;;:::i;386:663:5:-;;;;;;;;;;-1:-1:-1;386:663:5;;;;;:::i;:::-;;:::i;4736:80:12:-;;;;;;;;;;-1:-1:-1;4799:12:12;;4736:80;;8906:345;;;;;;;;;;-1:-1:-1;8906:345:12;;;;;:::i;:::-;;:::i;9538:172::-;;;;;;;;;;-1:-1:-1;9538:172:12;;;;;:::i;:::-;;:::i;4196:127::-;;;;;;;;;;;;;:::i;4500:162:4:-;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1839:189:10;;;;;;;;;;-1:-1:-1;1839:189:10;;;;;:::i;:::-;;:::i;8426:402:12:-;;;;;;;;;;-1:-1:-1;8426:402:12;;;;;:::i;:::-;;:::i;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1688:36:4;1549:175;1431:300;-1:-1:-1;;1431:300:4:o;2349:98::-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;-1:-1:-1;;;3955:73:4;;14958:2:13;3955:73:4;;;14940:21:13;14997:2;14977:18;;;14970:30;15036:34;15016:18;;;15009:62;-1:-1:-1;;;15087:18:13;;;15080:42;15139:19;;3955:73:4;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;17309:2:13;3527:57:4;;;17291:21:13;17348:2;17328:18;;;17321:30;17387:34;17367:18;;;17360:62;-1:-1:-1;;;17438:18:13;;;17431:31;17479:19;;3527:57:4;17107:397:13;3527:57:4;666:10:1;-1:-1:-1;;;;;3616:21:4;;;;:62;;-1:-1:-1;3641:37:4;3658:5;666:10:1;4500:162:4;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;11817:2:13;3595:165:4;;;11799:21:13;11856:2;11836:18;;;11829:30;11895:34;11875:18;;;11868:62;11966:26;11946:18;;;11939:54;12010:19;;3595:165:4;11615:420:13;3595:165:4;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;4930:87:12:-;4974:4;4993:19;:9;864:14:2;;773:112;4993:19:12;4986:26;;4930:87;:::o;4724:330:4:-;4913:41;666:10:1;4946:7:4;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;5120:179::-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;5679:170:12:-;5732:7;5767:19;:9;864:14:2;;773:112;5767:19:12;5755:8;:31;;5747:64;;;;-1:-1:-1;;;5747:64:12;;18055:2:13;5747:64:12;;;18037:21:13;18094:2;18074:18;;;18067:30;-1:-1:-1;;;18113:18:13;;;18106:50;18173:18;;5747:64:12;17853:344:13;5747:64:12;-1:-1:-1;5825:19:12;;;;:9;:19;;;;;;-1:-1:-1;;;;;5825:19:12;;5679:170::o;9343:92::-;1038:6:10;;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;9410:8:12::1;:20:::0;9343:92::o;2052:235:4:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;12653:2:13;2185:73:4;;;12635:21:13;12692:2;12672:18;;;12665:30;12731:34;12711:18;;;12704:62;-1:-1:-1;;;12782:18:13;;;12775:39;12831:19;;2185:73:4;12451:405:13;5951:229:12;6012:4;6024:12;6039:22;6052:8;6039:12;:22::i;:::-;6067:12;6082:15;;;:9;:15;;;;;;6024:37;;-1:-1:-1;6111:11:12;6103:42;;;;-1:-1:-1;;;6103:42:12;;;;;;;:::i;:::-;6159:16;;;;:7;:16;;;;;;;;;5951:229;-1:-1:-1;;;5951:229:12:o;1790:205:4:-;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;12242:2:13;1881:74:4;;;12224:21:13;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:13;;;12364:40;12421:19;;1881:74:4;12040:406:13;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:10:-;1038:6;;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;7386:723:12:-;7510:4;7546:12;;7530;:28;;7522:66;;;;-1:-1:-1;;;7522:66:12;;14604:2:13;7522:66:12;;;14586:21:13;14643:2;14623:18;;;14616:30;14682:27;14662:18;;;14655:55;14727:18;;7522:66:12;14402:349:13;7522:66:12;7615:8;;7602:9;:21;;7594:55;;;;-1:-1:-1;;;7594:55:12;;9890:2:13;7594:55:12;;;9872:21:13;9929:2;9909:18;;;9902:30;-1:-1:-1;;;9948:18:13;;;9941:51;10009:18;;7594:55:12;9688:345:13;7594:55:12;7656:12;7671:22;7684:8;7671:12;:22::i;:::-;7707:15;;;;:9;:15;;;;;;7656:37;;-1:-1:-1;7707:20:12;7699:48;;;;-1:-1:-1;;;7699:48:12;;16965:2:13;7699:48:12;;;16947:21:13;17004:2;16984:18;;;16977:30;-1:-1:-1;;;17023:18:13;;;17016:45;17078:18;;7699:48:12;16763:339:13;7699:48:12;1038:6:10;;7754:36:12;;-1:-1:-1;;;;;1038:6:10;;;;7780:9:12;7754:36;;;;;;;;;7780:9;1038:6:10;7754:36:12;;;;;;;;;;;;;;;;;;;;;7797:16;:14;:16::i;:::-;7833:12;7819:11;:26;7852:21;:9;978:19:2;;996:1;978:19;;;891:123;7852:21:12;7879:12;7894:19;:9;864:14:2;;773:112;7894:19:12;7879:34;;7919:25;7925:9;7936:7;7919:5;:25::i;:::-;7950:32;7963:7;7972:9;7950:12;:32::i;:::-;7988:15;;;;:9;:15;;;;;;;;:25;;;8019:16;;;:7;:16;;;;;:27;;;;;;;;:::i;:::-;-1:-1:-1;8052:18:12;;;;:9;:18;;;;;:31;;-1:-1:-1;;;;;;8052:31:12;8073:10;8052:31;;;8062:7;-1:-1:-1;;7386:723:12;;;;;:::o;8198:150::-;8285:4;8304:39;8311:10;8323:8;8333:9;8304:6;:39::i;:::-;8297:46;8198:150;-1:-1:-1;;;8198:150:12:o;5095:219::-;5155:4;5167:12;5182:22;5195:8;5182:12;:22::i;:::-;5210:12;5225:15;;;:9;:15;;;;;;5167:37;;-1:-1:-1;5254:11:12;5246:42;;;;-1:-1:-1;;;5246:42:12;;;;;;;:::i;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;5415:174:12:-;5468:13;5509:19;:9;864:14:2;;773:112;5509:19:12;5497:8;:31;;5489:64;;;;-1:-1:-1;;;5489:64:12;;18055:2:13;5489:64:12;;;18037:21:13;18094:2;18074:18;;;18067:30;-1:-1:-1;;;18113:18:13;;;18106:50;18173:18;;5489:64:12;17853:344:13;5489:64:12;5567:17;;;;:7;:17;;;;;5560:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5415:174;;;:::o;4144:290:4:-;-1:-1:-1;;;;;4246:24:4;;666:10:1;4246:24:4;;4238:62;;;;-1:-1:-1;;;4238:62:4;;10645:2:13;4238:62:4;;;10627:21:13;10684:2;10664:18;;;10657:30;10723:27;10703:18;;;10696:55;10768:18;;4238:62:4;10443:349:13;4238:62:4;666:10:1;4311:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;4379:48;;8229:41:13;;;4311:42:4;;666:10:1;4379:48:4;;8202:18:13;4379:48:4;;;;;;;4144:290;;:::o;6666:237:12:-;6725:13;6746:12;6761:22;6774:8;6761:12;:22::i;:::-;6789:12;6804:15;;;:9;:15;;;;;;6746:37;;-1:-1:-1;6833:11:12;6825:42;;;;-1:-1:-1;;;6825:42:12;;;;;;;:::i;:::-;6881:17;6890:7;6881:8;:17::i;:::-;6874:24;6666:237;-1:-1:-1;;;;6666:237:12:o;5365:320:4:-;5534:41;666:10:1;5567:7:4;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;386:663:5:-;459:13;492:16;500:7;492;:16::i;:::-;484:78;;;;-1:-1:-1;;;484:78:5;;14186:2:13;484:78:5;;;14168:21:13;14225:2;14205:18;;;14198:30;14264:34;14244:18;;;14237:62;-1:-1:-1;;;14315:18:13;;;14308:47;14372:19;;484:78:5;13984:413:13;484:78:5;573:23;599:19;;;:10;:19;;;;;573:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:18;649:10;:8;:10::i;:::-;628:31;;738:4;732:18;754:1;732:23;728:70;;;-1:-1:-1;778:9:5;386:663;-1:-1:-1;;386:663:5:o;728:70::-;900:23;;:27;896:106;;974:4;980:9;957:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;943:48;;;;386:663;;;:::o;896:106::-;1019:23;1034:7;1019:14;:23::i;8906:345:12:-;8959:12;8974:22;8987:8;8974:12;:22::i;:::-;9002:12;9017:15;;;:9;:15;;;;;;8959:37;;-1:-1:-1;9046:11:12;9038:42;;;;-1:-1:-1;;;9038:42:12;;;;;;;:::i;:::-;9114:10;9094:16;9102:7;9094;:16::i;:::-;-1:-1:-1;;;;;9094:30:12;;9086:79;;;;-1:-1:-1;;;9086:79:12;;19227:2:13;9086:79:12;;;19209:21:13;19266:2;19246:18;;;19239:30;19305:34;19285:18;;;19278:62;-1:-1:-1;;;19356:18:13;;;19349:34;19400:19;;9086:79:12;19025:400:13;9086:79:12;9180:16;;;;:7;:16;;;;;;;;9179:17;9171:45;;;;-1:-1:-1;;;9171:45:12;;17711:2:13;9171:45:12;;;17693:21:13;17750:2;17730:18;;;17723:30;-1:-1:-1;;;17769:18:13;;;17762:45;17824:18;;9171:45:12;17509:339:13;9171:45:12;9223:16;;;;:7;:16;;;;;:23;;-1:-1:-1;;9223:23:12;9242:4;9223:23;;;-1:-1:-1;;8906:345:12:o;9538:172::-;1038:6:10;;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;9615:13:12::1;:30:::0;;;9671:8:::1;::::0;9655:24;::::1;9651:54;;;9692:13;::::0;9681:8:::1;:24:::0;9651:54:::1;9538:172:::0;:::o;4196:127::-;4240:13;4292:10;:8;:10::i;:::-;4304:12;4275:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4261:57;;4196:127;:::o;1839:189:10:-;1038:6;;-1:-1:-1;;;;;1038:6:10;666:10:1;1178:23:10;1170:68;;;;-1:-1:-1;;;1170:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:10;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:10;;9126:2:13;1919:73:10::1;::::0;::::1;9108:21:13::0;9165:2;9145:18;;;9138:30;9204:34;9184:18;;;9177:62;-1:-1:-1;;;9255:18:13;;;9248:36;9301:19;;1919:73:10::1;8924:402:13::0;1919:73:10::1;2002:19;2012:8;2002:9;:19::i;8426:402:12:-:0;8504:12;8519:22;8532:8;8519:12;:22::i;:::-;8547:12;8562:15;;;:9;:15;;;;;;8504:37;;-1:-1:-1;8591:11:12;8583:42;;;;-1:-1:-1;;;8583:42:12;;;;;;;:::i;:::-;8659:10;8639:16;8647:7;8639;:16::i;:::-;-1:-1:-1;;;;;8639:30:12;;8631:79;;;;-1:-1:-1;;;8631:79:12;;11412:2:13;8631:79:12;;;11394:21:13;11451:2;11431:18;;;11424:30;11490:34;11470:18;;;11463:62;-1:-1:-1;;;11541:18:13;;;11534:34;11585:19;;8631:79:12;11210:400:13;8631:79:12;8725:16;;;;:7;:16;;;;;;;;8724:17;8716:68;;;;-1:-1:-1;;;8716:68:12;;15732:2:13;8716:68:12;;;15714:21:13;15771:2;15751:18;;;15744:30;15810:34;15790:18;;;15783:62;-1:-1:-1;;;15861:18:13;;;15854:36;15907:19;;8716:68:12;15530:402:13;8716:68:12;8791:32;8804:7;8813:9;8791:12;:32::i;7157:125:4:-;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;;;7157:125::o;11008:171::-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;-1:-1:-1;;;7549:73:4;;10999:2:13;7549:73:4;;;10981:21:13;11038:2;11018:18;;;11011:30;11077:34;11057:18;;;11050:62;-1:-1:-1;;;11128:18:13;;;11121:42;11180:19;;7549:73:4;10797:408:13;7549:73:4;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;4500:162;10337:560;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;16139:2:13;10456:85:4;;;16121:21:13;16178:2;16158:18;;;16151:30;16217:34;16197:18;;;16190:62;-1:-1:-1;;;16268:18:13;;;16261:39;16317:19;;10456:85:4;15937:405:13;10456:85:4;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;10240:2:13;10551:65:4;;;10222:21:13;10279:2;10259:18;;;10252:30;10318:34;10298:18;;;10291:62;-1:-1:-1;;;10369:18:13;;;10362:34;10413:19;;10551:65:4;10038:400:13;10551:65:4;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;3626:473:12:-;3689:7;3727:3;3689:7;3738:311;3753:1;:8;3751:1;:10;3738:311;;;3775:11;3789:1;3791;3789:4;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;3789:4:12;;-1:-1:-1;;;;3821:12:12;;;;;:28;;-1:-1:-1;;;;;;;;;;3837:12:12;;;;3821:28;3820:78;;;-1:-1:-1;;;;;;;;;;3869:12:12;;;;;;:28;;-1:-1:-1;;;;;;;;;;3885:12:12;;;;3869:28;3820:110;;;-1:-1:-1;;;;;;;;;;3917:12:12;;;3820:110;:140;;;-1:-1:-1;;;;;;;;;;3947:12:12;;;3820:140;:170;;;-1:-1:-1;;;;;;;;;;3977:12:12;;;3820:170;3802:240;;;;-1:-1:-1;;;3802:240:12;;18822:2:13;3802:240:12;;;18804:21:13;18861:2;18841:18;;;18834:30;18900:34;18880:18;;;18873:62;-1:-1:-1;;;18951:18:13;;;18944:34;18995:19;;3802:240:12;18620:400:13;3802:240:12;-1:-1:-1;3763:3:12;;;;:::i;:::-;;;;3738:311;;;;4090:1;4072:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;4062:32;;;;;;4055:39;;;3626:473;;;:::o;2034:169:10:-;2108:6;;;-1:-1:-1;;;;;2124:17:10;;;-1:-1:-1;;;;;;2124:17:10;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;7037:260:12:-;7077:15;7110:11;;7095:12;:26;;;;:::i;:::-;7077:44;;7140:11;;7127:10;:24;:104;;7221:10;;7212:8;;:19;;;;:::i;:::-;7200:8;;:31;;;;;;;:::i;:::-;;;;;;;7127:104;;;7181:10;;7172:8;;:19;;;;:::i;:::-;7160:8;;:31;;;;;;;:::i;:::-;;;;;;;7127:104;;7253:13;;7242:8;;:24;7238:54;;;7279:13;;7268:8;:24;7071:226;7037:260::o;9076:372:4:-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;13825:2:13;9147:61:4;;;13807:21:13;;;13844:18;;;13837:30;13903:34;13883:18;;;13876:62;13955:18;;9147:61:4;13623:356:13;9147:61:4;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;-1:-1:-1;;;9218:58:4;;9533:2:13;9218:58:4;;;9515:21:13;9572:2;9552:18;;;9545:30;9611;9591:18;;;9584:58;9659:18;;9218:58:4;9331:352:13;9218:58:4;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;1196:214:5:-;1295:16;1303:7;1295;:16::i;:::-;1287:75;;;;-1:-1:-1;;;1287:75:5;;13063:2:13;1287:75:5;;;13045:21:13;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:13;;;13185:44;13246:19;;1287:75:5;12861:410:13;1287:75:5;1372:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;4529:102:12:-;4610:16;;;;;;;;;;;;-1:-1:-1;;;4610:16:12;;;;;4529:102::o;2679:329:4:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;-1:-1:-1;;;2777:76:4;;16549:2:13;2777:76:4;;;16531:21:13;16588:2;16568:18;;;16561:30;16627:34;16607:18;;;16600:62;-1:-1:-1;;;16678:18:13;;;16671:45;16733:19;;2777:76:4;16347:411:13;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;11732:778::-;11882:4;-1:-1:-1;;;;;11902:13:4;;1034:20:0;1080:8;11898:606:4;;11937:72;;-1:-1:-1;;;11937:72:4;;-1:-1:-1;;;;;11937:36:4;;;;;:72;;666:10:1;;11988:4:4;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;275:703:11:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:13;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:617::-;2963:6;2971;2979;3032:2;3020:9;3011:7;3007:23;3003:32;3000:52;;;3048:1;3045;3038:12;3000:52;3071:29;3090:9;3071:29;:::i;:::-;3061:39;;3151:2;3140:9;3136:18;3123:32;3174:18;3215:2;3207:6;3204:14;3201:34;;;3231:1;3228;3221:12;3201:34;3254:50;3296:7;3287:6;3276:9;3272:22;3254:50;:::i;:::-;3244:60;;3357:2;3346:9;3342:18;3329:32;3313:48;;3386:2;3376:8;3373:16;3370:36;;;3402:1;3399;3392:12;3370:36;;3425:52;3469:7;3458:8;3447:9;3443:24;3425:52;:::i;:::-;3415:62;;;2866:617;;;;;:::o;3488:254::-;3556:6;3564;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3656:29;3675:9;3656:29;:::i;:::-;3646:39;3732:2;3717:18;;;;3704:32;;-1:-1:-1;;;3488:254:13:o;3747:245::-;3805:6;3858:2;3846:9;3837:7;3833:23;3829:32;3826:52;;;3874:1;3871;3864:12;3826:52;3913:9;3900:23;3932:30;3956:5;3932:30;:::i;3997:249::-;4066:6;4119:2;4107:9;4098:7;4094:23;4090:32;4087:52;;;4135:1;4132;4125:12;4087:52;4167:9;4161:16;4186:30;4210:5;4186:30;:::i;4251:322::-;4320:6;4373:2;4361:9;4352:7;4348:23;4344:32;4341:52;;;4389:1;4386;4379:12;4341:52;4429:9;4416:23;4462:18;4454:6;4451:30;4448:50;;;4494:1;4491;4484:12;4448:50;4517;4559:7;4550:6;4539:9;4535:22;4517:50;:::i;4578:543::-;4666:6;4674;4727:2;4715:9;4706:7;4702:23;4698:32;4695:52;;;4743:1;4740;4733:12;4695:52;4783:9;4770:23;4812:18;4853:2;4845:6;4842:14;4839:34;;;4869:1;4866;4859:12;4839:34;4892:50;4934:7;4925:6;4914:9;4910:22;4892:50;:::i;:::-;4882:60;;4995:2;4984:9;4980:18;4967:32;4951:48;;5024:2;5014:8;5011:16;5008:36;;;5040:1;5037;5030:12;5008:36;;5063:52;5107:7;5096:8;5085:9;5081:24;5063:52;:::i;:::-;5053:62;;;4578:543;;;;;:::o;5126:180::-;5185:6;5238:2;5226:9;5217:7;5213:23;5209:32;5206:52;;;5254:1;5251;5244:12;5206:52;-1:-1:-1;5277:23:13;;5126:180;-1:-1:-1;5126:180:13:o;5311:257::-;5352:3;5390:5;5384:12;5417:6;5412:3;5405:19;5433:63;5489:6;5482:4;5477:3;5473:14;5466:4;5459:5;5455:16;5433:63;:::i;:::-;5550:2;5529:15;-1:-1:-1;;5525:29:13;5516:39;;;;5557:4;5512:50;;5311:257;-1:-1:-1;;5311:257:13:o;5573:470::-;5752:3;5790:6;5784:13;5806:53;5852:6;5847:3;5840:4;5832:6;5828:17;5806:53;:::i;:::-;5922:13;;5881:16;;;;5944:57;5922:13;5881:16;5978:4;5966:17;;5944:57;:::i;:::-;6017:20;;5573:470;-1:-1:-1;;;;5573:470:13:o;6048:1335::-;6224:3;6262:6;6256:13;6288:4;6301:51;6345:6;6340:3;6335:2;6327:6;6323:15;6301:51;:::i;:::-;6437:13;;6374:16;;;;6410:1;;6497;6519:18;;;;6572;;;;6599:93;;6677:4;6667:8;6663:19;6651:31;;6599:93;6740:2;6730:8;6727:16;6707:18;6704:40;6701:167;;;-1:-1:-1;;;6767:33:13;;6823:4;6820:1;6813:15;6853:4;6774:3;6841:17;6701:167;6884:18;6911:110;;;;7035:1;7030:328;;;;6877:481;;6911:110;-1:-1:-1;;6946:24:13;;6932:39;;6991:20;;;;-1:-1:-1;6911:110:13;;7030:328;19685:1;19678:14;;;19722:4;19709:18;;7125:1;7139:169;7153:8;7150:1;7147:15;7139:169;;;7235:14;;7220:13;;;7213:37;7278:16;;;;7170:10;;7139:169;;;7143:3;;7339:8;7332:5;7328:20;7321:27;;6877:481;-1:-1:-1;7374:3:13;;6048:1335;-1:-1:-1;;;;;;;;;;6048:1335:13:o;7596:488::-;-1:-1:-1;;;;;7865:15:13;;;7847:34;;7917:15;;7912:2;7897:18;;7890:43;7964:2;7949:18;;7942:34;;;8012:3;8007:2;7992:18;;7985:31;;;7790:4;;8033:45;;8058:19;;8050:6;8033:45;:::i;:::-;8025:53;7596:488;-1:-1:-1;;;;;;7596:488:13:o;8281:219::-;8430:2;8419:9;8412:21;8393:4;8450:44;8490:2;8479:9;8475:18;8467:6;8450:44;:::i;8505:414::-;8707:2;8689:21;;;8746:2;8726:18;;;8719:30;8785:34;8780:2;8765:18;;8758:62;-1:-1:-1;;;8851:2:13;8836:18;;8829:48;8909:3;8894:19;;8505:414::o;13276:342::-;13478:2;13460:21;;;13517:2;13497:18;;;13490:30;-1:-1:-1;;;13551:2:13;13536:18;;13529:48;13609:2;13594:18;;13276:342::o;15169:356::-;15371:2;15353:21;;;15390:18;;;15383:30;15449:34;15444:2;15429:18;;15422:62;15516:2;15501:18;;15169:356::o;18202:413::-;18404:2;18386:21;;;18443:2;18423:18;;;18416:30;18482:34;18477:2;18462:18;;18455:62;-1:-1:-1;;;18548:2:13;18533:18;;18526:47;18605:3;18590:19;;18202:413::o;19738:128::-;19778:3;19809:1;19805:6;19802:1;19799:13;19796:39;;;19815:18;;:::i;:::-;-1:-1:-1;19851:9:13;;19738:128::o;19871:120::-;19911:1;19937;19927:35;;19942:18;;:::i;:::-;-1:-1:-1;19976:9:13;;19871:120::o;19996:125::-;20036:4;20064:1;20061;20058:8;20055:34;;;20069:18;;:::i;:::-;-1:-1:-1;20106:9:13;;19996:125::o;20126:258::-;20198:1;20208:113;20222:6;20219:1;20216:13;20208:113;;;20298:11;;;20292:18;20279:11;;;20272:39;20244:2;20237:10;20208:113;;;20339:6;20336:1;20333:13;20330:48;;;-1:-1:-1;;20374:1:13;20356:16;;20349:27;20126:258::o;20389:380::-;20468:1;20464:12;;;;20511;;;20532:61;;20586:4;20578:6;20574:17;20564:27;;20532:61;20639:2;20631:6;20628:14;20608:18;20605:38;20602:161;;;20685:10;20680:3;20676:20;20673:1;20666:31;20720:4;20717:1;20710:15;20748:4;20745:1;20738:15;20602:161;;20389:380;;;:::o;20774:135::-;20813:3;-1:-1:-1;;20834:17:13;;20831:43;;;20854:18;;:::i;:::-;-1:-1:-1;20901:1:13;20890:13;;20774:135::o;20914:112::-;20946:1;20972;20962:35;;20977:18;;:::i;:::-;-1:-1:-1;21011:9:13;;20914:112::o;21031:127::-;21092:10;21087:3;21083:20;21080:1;21073:31;21123:4;21120:1;21113:15;21147:4;21144:1;21137:15;21163:127;21224:10;21219:3;21215:20;21212:1;21205:31;21255:4;21252:1;21245:15;21279:4;21276:1;21269:15;21295:127;21356:10;21351:3;21347:20;21344:1;21337:31;21387:4;21384:1;21377:15;21411:4;21408:1;21401:15;21427:127;21488:10;21483:3;21479:20;21476:1;21469:31;21519:4;21516:1;21509:15;21543:4;21540:1;21533:15;21559:131;-1:-1:-1;;;;;;21633:32:13;;21623:43;;21613:71;;21680:1;21677;21670:12

Swarm Source

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