ETH Price: $3,312.23 (-3.55%)
Gas: 15 Gwei

Token

Audioglyphs (AG)
 

Overview

Max Total Supply

10,000 AG

Holders

2,696

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
taoba.eth
Balance
1 AG
0x335c0552eb130f3dfbe6efcb4d2895aed1e9938b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 randomly generated, infinite audio NFTs derived from on-chain Pixelglyph data.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Audioglyphs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-16
*/

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  function _verifyCallResult(
    bool success,
    bytes memory returndata,
    string memory errorMessage
  ) private pure returns (bytes memory) {
    if (success) {
      return returndata;
    } else {
      // Look for revert reason and bubble it up if present
      if (returndata.length > 0) {
        // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
  /**
   * @dev Returns the total amount of tokens stored by the contract.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
   * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    external
    view
    returns (uint256 tokenId);

  /**
   * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
   * Use along with {totalSupply} to enumerate all tokens.
   */
  function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
  // Mapping from owner to list of owned token IDs
  mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

  // Mapping from token ID to index of the owner tokens list
  mapping(uint256 => uint256) private _ownedTokensIndex;

  // Array with all token ids, used for enumeration
  uint256[] private _allTokens;

  // Mapping from token id to position in the allTokens array
  mapping(uint256 => uint256) private _allTokensIndex;

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    virtual
    override
    returns (uint256)
  {
    require(
      index < ERC721.balanceOf(owner),
      "ERC721Enumerable: owner index out of bounds"
    );
    return _ownedTokens[owner][index];
  }

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

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

  /**
   * @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` cannot be the zero address.
   * - `to` cannot be the zero address.
   *
   * 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 override {
    super._beforeTokenTransfer(from, to, tokenId);

    if (from == address(0)) {
      _addTokenToAllTokensEnumeration(tokenId);
    } else if (from != to) {
      _removeTokenFromOwnerEnumeration(from, tokenId);
    }
    if (to == address(0)) {
      _removeTokenFromAllTokensEnumeration(tokenId);
    } else if (to != from) {
      _addTokenToOwnerEnumeration(to, tokenId);
    }
  }

  /**
   * @dev Private function to add a token to this extension's ownership-tracking data structures.
   * @param to address representing the new owner of the given token ID
   * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
   */
  function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
    uint256 length = ERC721.balanceOf(to);
    _ownedTokens[to][length] = tokenId;
    _ownedTokensIndex[tokenId] = length;
  }

  /**
   * @dev Private function to add a token to this extension's token tracking data structures.
   * @param tokenId uint256 ID of the token to be added to the tokens list
   */
  function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
    _allTokensIndex[tokenId] = _allTokens.length;
    _allTokens.push(tokenId);
  }

  /**
   * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
   * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
   * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
   * This has O(1) time complexity, but alters the order of the _ownedTokens array.
   * @param from address representing the previous owner of the given token ID
   * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
   */
  function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
    private
  {
    // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
    // then delete the last slot (swap and pop).

    uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
    uint256 tokenIndex = _ownedTokensIndex[tokenId];

    // When the token to delete is the last token, the swap operation is unnecessary
    if (tokenIndex != lastTokenIndex) {
      uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

      _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
      _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
    }

    // This also deletes the contents at the last position of the array
    delete _ownedTokensIndex[tokenId];
    delete _ownedTokens[from][lastTokenIndex];
  }

  /**
   * @dev Private function to remove a token from this extension's token tracking data structures.
   * This has O(1) time complexity, but alters the order of the _allTokens array.
   * @param tokenId uint256 ID of the token to be removed from the tokens list
   */
  function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
    // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
    // then delete the last slot (swap and pop).

    uint256 lastTokenIndex = _allTokens.length - 1;
    uint256 tokenIndex = _allTokensIndex[tokenId];

    // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
    // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
    // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
    uint256 lastTokenId = _allTokens[lastTokenIndex];

    _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
    _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

    // This also deletes the contents at the last position of the array
    delete _allTokensIndex[tokenId];
    _allTokens.pop();
  }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/Audioglyphs.sol

pragma solidity >=0.4.22 <0.9.0;

/**
                   ___             __            __        
  ____ ___  ______/ (_)___  ____ _/ /_  ______  / /_  _____
 / __ `/ / / / __  / / __ \/ __ `/ / / / / __ \/ __ \/ ___/
/ /_/ / /_/ / /_/ / / /_/ / /_/ / / /_/ / /_/ / / / (__  ) 
\__,_/\__,_/\__,_/_/\____/\__, /_/\__, / .___/_/ /_/____/  
                         /____/  /____/_/                  

10,000 randomly generated, infinite audio NFTs derived from on-chain Pixelglyph data.

Each Audioglyph synthesizes a unique, infinite stream of music directly in your browser at lossless quality.

by nftboi, tr666, and background cook


 */

contract Audioglyphs is ERC721Enumerable, Ownable {
  string BASE_URI;
  address public pixelglyphs;
  uint256 regularPrice = 0.06 ether;
  bool public openToPublic;

  constructor(address pixelglyphsAddr, string memory baseUri)
    ERC721("Audioglyphs", "AG")
  {
    pixelglyphs = pixelglyphsAddr;
    BASE_URI = baseUri;
  }

  event Minted(uint256 indexed tokenId);

  uint256 globalId;

  function _mintInternal(uint256 amount, address to) internal {
    for (uint256 i = 0; i < amount; i++) {
      uint256 tokenId = ++globalId;
      _safeMint(to, tokenId);
      emit Minted(tokenId);
    }
  }

  function mint(uint256 amount) public payable {
    require(openToPublic, "AG: Not open to public yet");
    require(globalId < 10000, "AG: All minted");
    require(msg.value == amount * regularPrice, "AG: Incorrect value sent");
    require(globalId + amount <= 10000, "AG: Cannot mint amount");
    require(amount > 0 && amount <= 20, "AG: Max 20 per transaction");
    _mintInternal(amount, msg.sender);
  }

  uint256 teamMintCount;

  function teamMint(uint256 amount, address to) public onlyOwner {
    require(teamMintCount < 100, "AG: Team mint max 100");
    require(
      teamMintCount + amount <= 100,
      "AG: Amount + team mint count invalid"
    );
    teamMintCount += amount;
    _mintInternal(amount, to);
  }

  function open() public onlyOwner {
    openToPublic = true;
  }

  function setBaseUri(string memory baseUri) public onlyOwner {
    BASE_URI = baseUri;
  }

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

  function withdraw(address sendTo) public onlyOwner {
    uint256 balance = address(this).balance;
    payable(sendTo).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"pixelglyphsAddr","type":"address"},{"internalType":"string","name":"baseUri","type":"string"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openToPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixelglyphs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sendTo","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600d553480156200001c57600080fd5b50604051620025e6380380620025e68339810160408190526200003f91620001f4565b604080518082018252600b81526a417564696f676c7970687360a81b602080830191825283518085019094526002845261414760f01b9084015281519192916200008c916000916200014e565b508051620000a29060019060208401906200014e565b505050620000bf620000b9620000f860201b60201c565b620000fc565b600c80546001600160a01b0319166001600160a01b0384161790558051620000ef90600b9060208401906200014e565b50505062000339565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015c90620002e6565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b6000806040838503121562000207578182fd5b82516001600160a01b03811681146200021e578283fd5b602084810151919350906001600160401b03808211156200023d578384fd5b818601915086601f83011262000251578384fd5b81518181111562000266576200026662000323565b604051601f8201601f19168101850183811182821017156200028c576200028c62000323565b6040528181528382018501891015620002a3578586fd5b8592505b81831015620002c65783830185015181840186015291840191620002a7565b81831115620002d757858583830101525b80955050505050509250929050565b600281046001821680620002fb57607f821691505b602082108114156200031d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61229d80620003496000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063afc39ee31161008a578063c87b56dd11610064578063c87b56dd1461042b578063e985e9c51461044b578063f2fde38b1461046b578063fcfff16f1461048b57610181565b8063afc39ee3146103d6578063b88d4fde146103eb578063bfa457bc1461040b57610181565b8063715018a6146103445780638da5cb5b1461035957806395d89b411461036e578063a0712d6814610383578063a0bcfc7f14610396578063a22cb465146103b657610181565b806323b872dd1161013e5780634f6ccce7116101185780634f6ccce7146102c457806351cff8d9146102e45780636352211e1461030457806370a082311461032457610181565b806323b872dd146102645780632f745c591461028457806342842e0e146102a457610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d5780631831ccf21461024f575b600080fd5b34801561019257600080fd5b506101a66101a136600461191f565b6104a0565b6040516101b39190611a83565b60405180910390f35b3480156101c857600080fd5b506101d16104cd565b6040516101b39190611a8e565b3480156101ea57600080fd5b506101fe6101f936600461199d565b61055f565b6040516101b39190611a32565b34801561021757600080fd5b5061022b6102263660046118f6565b6105ab565b005b34801561023957600080fd5b50610242610643565b6040516101b3919061210e565b34801561025b57600080fd5b506101a6610649565b34801561027057600080fd5b5061022b61027f366004611808565b610652565b34801561029057600080fd5b5061024261029f3660046118f6565b61068a565b3480156102b057600080fd5b5061022b6102bf366004611808565b6106dc565b3480156102d057600080fd5b506102426102df36600461199d565b6106f7565b3480156102f057600080fd5b5061022b6102ff3660046117bc565b610752565b34801561031057600080fd5b506101fe61031f36600461199d565b6107c9565b34801561033057600080fd5b5061024261033f3660046117bc565b6107fe565b34801561035057600080fd5b5061022b610842565b34801561036557600080fd5b506101fe61088d565b34801561037a57600080fd5b506101d161089c565b61022b61039136600461199d565b6108ab565b3480156103a257600080fd5b5061022b6103b1366004611957565b610984565b3480156103c257600080fd5b5061022b6103d13660046118bc565b6109da565b3480156103e257600080fd5b506101fe610aa8565b3480156103f757600080fd5b5061022b610406366004611843565b610ab7565b34801561041757600080fd5b5061022b6104263660046119b5565b610af6565b34801561043757600080fd5b506101d161044636600461199d565b610ba7565b34801561045757600080fd5b506101a66104663660046117d6565b610c2a565b34801561047757600080fd5b5061022b6104863660046117bc565b610c58565b34801561049757600080fd5b5061022b610cc6565b60006001600160e01b0319821663780e9d6360e01b14806104c557506104c582610d14565b90505b919050565b6060600080546104dc906121a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610508906121a5565b80156105555780601f1061052a57610100808354040283529160200191610555565b820191906000526020600020905b81548152906001019060200180831161053857829003601f168201915b5050505050905090565b600061056a82610d54565b61058f5760405162461bcd60e51b815260040161058690611ea9565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b6826107c9565b9050806001600160a01b0316836001600160a01b031614156105ea5760405162461bcd60e51b815260040161058690611fc2565b806001600160a01b03166105fc610d71565b6001600160a01b03161480610618575061061881610466610d71565b6106345760405162461bcd60e51b815260040161058690611d84565b61063e8383610d75565b505050565b60085490565b600e5460ff1681565b61066361065d610d71565b82610de3565b61067f5760405162461bcd60e51b81526004016105869061203a565b61063e838383610e68565b6000610695836107fe565b82106106b35760405162461bcd60e51b815260040161058690611aa1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61063e83838360405180602001604052806000815250610ab7565b6000610701610643565b821061071f5760405162461bcd60e51b81526004016105869061208b565b6008828154811061074057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61075a610d71565b6001600160a01b031661076b61088d565b6001600160a01b0316146107915760405162461bcd60e51b815260040161058690611ef5565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561063e573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806104c55760405162461bcd60e51b815260040161058690611e2b565b60006001600160a01b0382166108265760405162461bcd60e51b815260040161058690611de1565b506001600160a01b031660009081526003602052604090205490565b61084a610d71565b6001600160a01b031661085b61088d565b6001600160a01b0316146108815760405162461bcd60e51b815260040161058690611ef5565b61088b6000610f95565b565b600a546001600160a01b031690565b6060600180546104dc906121a5565b600e5460ff166108cd5760405162461bcd60e51b8152600401610586906120d7565b612710600f54106108f05760405162461bcd60e51b815260040161058690611bf2565b600d546108fd9082612143565b341461091b5760405162461bcd60e51b815260040161058690612003565b61271081600f5461092c9190612117565b111561094a5760405162461bcd60e51b815260040161058690611d54565b60008111801561095b575060148111155b6109775760405162461bcd60e51b815260040161058690611b84565b6109818133610fe7565b50565b61098c610d71565b6001600160a01b031661099d61088d565b6001600160a01b0316146109c35760405162461bcd60e51b815260040161058690611ef5565b80516109d690600b90602084019061169c565b5050565b6109e2610d71565b6001600160a01b0316826001600160a01b03161415610a135760405162461bcd60e51b815260040161058690611ca2565b8060056000610a20610d71565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a64610d71565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a9c9190611a83565b60405180910390a35050565b600c546001600160a01b031681565b610ac8610ac2610d71565b83610de3565b610ae45760405162461bcd60e51b81526004016105869061203a565b610af084848484611052565b50505050565b610afe610d71565b6001600160a01b0316610b0f61088d565b6001600160a01b031614610b355760405162461bcd60e51b815260040161058690611ef5565b606460105410610b575760405162461bcd60e51b815260040161058690611cd9565b606482601054610b679190612117565b1115610b855760405162461bcd60e51b815260040161058690611c1a565b8160106000828254610b979190612117565b909155506109d690508282610fe7565b6060610bb282610d54565b610bce5760405162461bcd60e51b815260040161058690611f73565b6000610bd8611085565b90506000815111610bf85760405180602001604052806000815250610c23565b80610c0284611094565b604051602001610c13929190611a03565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c60610d71565b6001600160a01b0316610c7161088d565b6001600160a01b031614610c975760405162461bcd60e51b815260040161058690611ef5565b6001600160a01b038116610cbd5760405162461bcd60e51b815260040161058690611b3e565b61098181610f95565b610cce610d71565b6001600160a01b0316610cdf61088d565b6001600160a01b031614610d055760405162461bcd60e51b815260040161058690611ef5565b600e805460ff19166001179055565b60006001600160e01b031982166380ac58cd60e01b1480610d4557506001600160e01b03198216635b5e139f60e01b145b806104c557506104c5826111af565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610daa826107c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dee82610d54565b610e0a5760405162461bcd60e51b815260040161058690611d08565b6000610e15836107c9565b9050806001600160a01b0316846001600160a01b03161480610e505750836001600160a01b0316610e458461055f565b6001600160a01b0316145b80610e605750610e608185610c2a565b949350505050565b826001600160a01b0316610e7b826107c9565b6001600160a01b031614610ea15760405162461bcd60e51b815260040161058690611f2a565b6001600160a01b038216610ec75760405162461bcd60e51b815260040161058690611c5e565b610ed28383836111c8565b610edd600082610d75565b6001600160a01b0383166000908152600360205260408120805460019290610f06908490612162565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f34908490612117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8281101561063e576000600f60008154611003906121e0565b918290555090506110148382611251565b60405181907f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a2508061104a816121e0565b915050610fea565b61105d848484610e68565b6110698484848461126b565b610af05760405162461bcd60e51b815260040161058690611aec565b6060600b80546104dc906121a5565b6060816110b957506040805180820190915260018152600360fc1b60208201526104c8565b8160005b81156110e357806110cd816121e0565b91506110dc9050600a8361212f565b91506110bd565b60008167ffffffffffffffff81111561110c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611136576020820181803683370190505b5090505b8415610e605761114b600183612162565b9150611158600a866121fb565b611163906030612117565b60f81b81838151811061118657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506111a8600a8661212f565b945061113a565b6001600160e01b031981166301ffc9a760e01b14919050565b6111d383838361063e565b6001600160a01b0383166111ef576111ea81611386565b611212565b816001600160a01b0316836001600160a01b0316146112125761121283826113ca565b6001600160a01b03821661122e5761122981611467565b61063e565b826001600160a01b0316826001600160a01b03161461063e5761063e8282611540565b6109d6828260405180602001604052806000815250611584565b600061127f846001600160a01b03166115b7565b1561137b57836001600160a01b031663150b7a0261129b610d71565b8786866040518563ffffffff1660e01b81526004016112bd9493929190611a46565b602060405180830381600087803b1580156112d757600080fd5b505af1925050508015611307575060408051601f3d908101601f191682019092526113049181019061193b565b60015b611361573d808015611335576040519150601f19603f3d011682016040523d82523d6000602084013e61133a565b606091505b5080516113595760405162461bcd60e51b815260040161058690611aec565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e60565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016113d7846107fe565b6113e19190612162565b600083815260076020526040902054909150808214611434576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061147990600190612162565b600083815260096020526040812054600880549394509092849081106114af57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106114de57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061152457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061154b836107fe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61158e83836115bd565b61159b600084848461126b565b61063e5760405162461bcd60e51b815260040161058690611aec565b3b151590565b6001600160a01b0382166115e35760405162461bcd60e51b815260040161058690611e74565b6115ec81610d54565b156116095760405162461bcd60e51b815260040161058690611bbb565b611615600083836111c8565b6001600160a01b038216600090815260036020526040812080546001929061163e908490612117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116a8906121a5565b90600052602060002090601f0160209004810192826116ca5760008555611710565b82601f106116e357805160ff1916838001178555611710565b82800160010185558215611710579182015b828111156117105782518255916020019190600101906116f5565b5061171c929150611720565b5090565b5b8082111561171c5760008155600101611721565b600067ffffffffffffffff808411156117505761175061223b565b604051601f8501601f1916810160200182811182821017156117745761177461223b565b60405284815291508183850186101561178c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146104c857600080fd5b6000602082840312156117cd578081fd5b610c23826117a5565b600080604083850312156117e8578081fd5b6117f1836117a5565b91506117ff602084016117a5565b90509250929050565b60008060006060848603121561181c578081fd5b611825846117a5565b9250611833602085016117a5565b9150604084013590509250925092565b60008060008060808587031215611858578081fd5b611861856117a5565b935061186f602086016117a5565b925060408501359150606085013567ffffffffffffffff811115611891578182fd5b8501601f810187136118a1578182fd5b6118b087823560208401611735565b91505092959194509250565b600080604083850312156118ce578182fd5b6118d7836117a5565b9150602083013580151581146118eb578182fd5b809150509250929050565b60008060408385031215611908578182fd5b611911836117a5565b946020939093013593505050565b600060208284031215611930578081fd5b8135610c2381612251565b60006020828403121561194c578081fd5b8151610c2381612251565b600060208284031215611968578081fd5b813567ffffffffffffffff81111561197e578182fd5b8201601f8101841361198e578182fd5b610e6084823560208401611735565b6000602082840312156119ae578081fd5b5035919050565b600080604083850312156119c7578182fd5b823591506117ff602084016117a5565b600081518084526119ef816020860160208601612179565b601f01601f19169290920160200192915050565b60008351611a15818460208801612179565b835190830190611a29818360208801612179565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a79908301846119d7565b9695505050505050565b901515815260200190565b600060208252610c2360208301846119d7565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601a908201527f41473a204d617820323020706572207472616e73616374696f6e000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600e908201526d1051ce88105b1b081b5a5b9d195960921b604082015260600190565b60208082526024908201527f41473a20416d6f756e74202b207465616d206d696e7420636f756e7420696e76604082015263185b1a5960e21b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260159082015274041473a205465616d206d696e74206d61782031303605c1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152751051ce8810d85b9b9bdd081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f41473a20496e636f72726563742076616c75652073656e740000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601a908201527f41473a204e6f74206f70656e20746f207075626c696320796574000000000000604082015260600190565b90815260200190565b6000821982111561212a5761212a61220f565b500190565b60008261213e5761213e612225565b500490565b600081600019048311821515161561215d5761215d61220f565b500290565b6000828210156121745761217461220f565b500390565b60005b8381101561219457818101518382015260200161217c565b83811115610af05750506000910152565b6002810460018216806121b957607f821691505b602082108114156121da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121f4576121f461220f565b5060010190565b60008261220a5761220a612225565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098157600080fdfea26469706673582212204f5370e27298ff6e61a149713238dda9246e61df5289ab8b17f6bd168dfdfeae64736f6c63430008000033000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea60000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f7078672d70726f642e6865726f6b756170702e636f6d2f617564696f676c797068732f6d657461646174612f000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063afc39ee31161008a578063c87b56dd11610064578063c87b56dd1461042b578063e985e9c51461044b578063f2fde38b1461046b578063fcfff16f1461048b57610181565b8063afc39ee3146103d6578063b88d4fde146103eb578063bfa457bc1461040b57610181565b8063715018a6146103445780638da5cb5b1461035957806395d89b411461036e578063a0712d6814610383578063a0bcfc7f14610396578063a22cb465146103b657610181565b806323b872dd1161013e5780634f6ccce7116101185780634f6ccce7146102c457806351cff8d9146102e45780636352211e1461030457806370a082311461032457610181565b806323b872dd146102645780632f745c591461028457806342842e0e146102a457610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d5780631831ccf21461024f575b600080fd5b34801561019257600080fd5b506101a66101a136600461191f565b6104a0565b6040516101b39190611a83565b60405180910390f35b3480156101c857600080fd5b506101d16104cd565b6040516101b39190611a8e565b3480156101ea57600080fd5b506101fe6101f936600461199d565b61055f565b6040516101b39190611a32565b34801561021757600080fd5b5061022b6102263660046118f6565b6105ab565b005b34801561023957600080fd5b50610242610643565b6040516101b3919061210e565b34801561025b57600080fd5b506101a6610649565b34801561027057600080fd5b5061022b61027f366004611808565b610652565b34801561029057600080fd5b5061024261029f3660046118f6565b61068a565b3480156102b057600080fd5b5061022b6102bf366004611808565b6106dc565b3480156102d057600080fd5b506102426102df36600461199d565b6106f7565b3480156102f057600080fd5b5061022b6102ff3660046117bc565b610752565b34801561031057600080fd5b506101fe61031f36600461199d565b6107c9565b34801561033057600080fd5b5061024261033f3660046117bc565b6107fe565b34801561035057600080fd5b5061022b610842565b34801561036557600080fd5b506101fe61088d565b34801561037a57600080fd5b506101d161089c565b61022b61039136600461199d565b6108ab565b3480156103a257600080fd5b5061022b6103b1366004611957565b610984565b3480156103c257600080fd5b5061022b6103d13660046118bc565b6109da565b3480156103e257600080fd5b506101fe610aa8565b3480156103f757600080fd5b5061022b610406366004611843565b610ab7565b34801561041757600080fd5b5061022b6104263660046119b5565b610af6565b34801561043757600080fd5b506101d161044636600461199d565b610ba7565b34801561045757600080fd5b506101a66104663660046117d6565b610c2a565b34801561047757600080fd5b5061022b6104863660046117bc565b610c58565b34801561049757600080fd5b5061022b610cc6565b60006001600160e01b0319821663780e9d6360e01b14806104c557506104c582610d14565b90505b919050565b6060600080546104dc906121a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610508906121a5565b80156105555780601f1061052a57610100808354040283529160200191610555565b820191906000526020600020905b81548152906001019060200180831161053857829003601f168201915b5050505050905090565b600061056a82610d54565b61058f5760405162461bcd60e51b815260040161058690611ea9565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b6826107c9565b9050806001600160a01b0316836001600160a01b031614156105ea5760405162461bcd60e51b815260040161058690611fc2565b806001600160a01b03166105fc610d71565b6001600160a01b03161480610618575061061881610466610d71565b6106345760405162461bcd60e51b815260040161058690611d84565b61063e8383610d75565b505050565b60085490565b600e5460ff1681565b61066361065d610d71565b82610de3565b61067f5760405162461bcd60e51b81526004016105869061203a565b61063e838383610e68565b6000610695836107fe565b82106106b35760405162461bcd60e51b815260040161058690611aa1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61063e83838360405180602001604052806000815250610ab7565b6000610701610643565b821061071f5760405162461bcd60e51b81526004016105869061208b565b6008828154811061074057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61075a610d71565b6001600160a01b031661076b61088d565b6001600160a01b0316146107915760405162461bcd60e51b815260040161058690611ef5565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561063e573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806104c55760405162461bcd60e51b815260040161058690611e2b565b60006001600160a01b0382166108265760405162461bcd60e51b815260040161058690611de1565b506001600160a01b031660009081526003602052604090205490565b61084a610d71565b6001600160a01b031661085b61088d565b6001600160a01b0316146108815760405162461bcd60e51b815260040161058690611ef5565b61088b6000610f95565b565b600a546001600160a01b031690565b6060600180546104dc906121a5565b600e5460ff166108cd5760405162461bcd60e51b8152600401610586906120d7565b612710600f54106108f05760405162461bcd60e51b815260040161058690611bf2565b600d546108fd9082612143565b341461091b5760405162461bcd60e51b815260040161058690612003565b61271081600f5461092c9190612117565b111561094a5760405162461bcd60e51b815260040161058690611d54565b60008111801561095b575060148111155b6109775760405162461bcd60e51b815260040161058690611b84565b6109818133610fe7565b50565b61098c610d71565b6001600160a01b031661099d61088d565b6001600160a01b0316146109c35760405162461bcd60e51b815260040161058690611ef5565b80516109d690600b90602084019061169c565b5050565b6109e2610d71565b6001600160a01b0316826001600160a01b03161415610a135760405162461bcd60e51b815260040161058690611ca2565b8060056000610a20610d71565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a64610d71565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a9c9190611a83565b60405180910390a35050565b600c546001600160a01b031681565b610ac8610ac2610d71565b83610de3565b610ae45760405162461bcd60e51b81526004016105869061203a565b610af084848484611052565b50505050565b610afe610d71565b6001600160a01b0316610b0f61088d565b6001600160a01b031614610b355760405162461bcd60e51b815260040161058690611ef5565b606460105410610b575760405162461bcd60e51b815260040161058690611cd9565b606482601054610b679190612117565b1115610b855760405162461bcd60e51b815260040161058690611c1a565b8160106000828254610b979190612117565b909155506109d690508282610fe7565b6060610bb282610d54565b610bce5760405162461bcd60e51b815260040161058690611f73565b6000610bd8611085565b90506000815111610bf85760405180602001604052806000815250610c23565b80610c0284611094565b604051602001610c13929190611a03565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c60610d71565b6001600160a01b0316610c7161088d565b6001600160a01b031614610c975760405162461bcd60e51b815260040161058690611ef5565b6001600160a01b038116610cbd5760405162461bcd60e51b815260040161058690611b3e565b61098181610f95565b610cce610d71565b6001600160a01b0316610cdf61088d565b6001600160a01b031614610d055760405162461bcd60e51b815260040161058690611ef5565b600e805460ff19166001179055565b60006001600160e01b031982166380ac58cd60e01b1480610d4557506001600160e01b03198216635b5e139f60e01b145b806104c557506104c5826111af565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610daa826107c9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dee82610d54565b610e0a5760405162461bcd60e51b815260040161058690611d08565b6000610e15836107c9565b9050806001600160a01b0316846001600160a01b03161480610e505750836001600160a01b0316610e458461055f565b6001600160a01b0316145b80610e605750610e608185610c2a565b949350505050565b826001600160a01b0316610e7b826107c9565b6001600160a01b031614610ea15760405162461bcd60e51b815260040161058690611f2a565b6001600160a01b038216610ec75760405162461bcd60e51b815260040161058690611c5e565b610ed28383836111c8565b610edd600082610d75565b6001600160a01b0383166000908152600360205260408120805460019290610f06908490612162565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f34908490612117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8281101561063e576000600f60008154611003906121e0565b918290555090506110148382611251565b60405181907f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a90600090a2508061104a816121e0565b915050610fea565b61105d848484610e68565b6110698484848461126b565b610af05760405162461bcd60e51b815260040161058690611aec565b6060600b80546104dc906121a5565b6060816110b957506040805180820190915260018152600360fc1b60208201526104c8565b8160005b81156110e357806110cd816121e0565b91506110dc9050600a8361212f565b91506110bd565b60008167ffffffffffffffff81111561110c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611136576020820181803683370190505b5090505b8415610e605761114b600183612162565b9150611158600a866121fb565b611163906030612117565b60f81b81838151811061118657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506111a8600a8661212f565b945061113a565b6001600160e01b031981166301ffc9a760e01b14919050565b6111d383838361063e565b6001600160a01b0383166111ef576111ea81611386565b611212565b816001600160a01b0316836001600160a01b0316146112125761121283826113ca565b6001600160a01b03821661122e5761122981611467565b61063e565b826001600160a01b0316826001600160a01b03161461063e5761063e8282611540565b6109d6828260405180602001604052806000815250611584565b600061127f846001600160a01b03166115b7565b1561137b57836001600160a01b031663150b7a0261129b610d71565b8786866040518563ffffffff1660e01b81526004016112bd9493929190611a46565b602060405180830381600087803b1580156112d757600080fd5b505af1925050508015611307575060408051601f3d908101601f191682019092526113049181019061193b565b60015b611361573d808015611335576040519150601f19603f3d011682016040523d82523d6000602084013e61133a565b606091505b5080516113595760405162461bcd60e51b815260040161058690611aec565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e60565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016113d7846107fe565b6113e19190612162565b600083815260076020526040902054909150808214611434576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061147990600190612162565b600083815260096020526040812054600880549394509092849081106114af57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106114de57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061152457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061154b836107fe565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61158e83836115bd565b61159b600084848461126b565b61063e5760405162461bcd60e51b815260040161058690611aec565b3b151590565b6001600160a01b0382166115e35760405162461bcd60e51b815260040161058690611e74565b6115ec81610d54565b156116095760405162461bcd60e51b815260040161058690611bbb565b611615600083836111c8565b6001600160a01b038216600090815260036020526040812080546001929061163e908490612117565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116a8906121a5565b90600052602060002090601f0160209004810192826116ca5760008555611710565b82601f106116e357805160ff1916838001178555611710565b82800160010185558215611710579182015b828111156117105782518255916020019190600101906116f5565b5061171c929150611720565b5090565b5b8082111561171c5760008155600101611721565b600067ffffffffffffffff808411156117505761175061223b565b604051601f8501601f1916810160200182811182821017156117745761177461223b565b60405284815291508183850186101561178c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146104c857600080fd5b6000602082840312156117cd578081fd5b610c23826117a5565b600080604083850312156117e8578081fd5b6117f1836117a5565b91506117ff602084016117a5565b90509250929050565b60008060006060848603121561181c578081fd5b611825846117a5565b9250611833602085016117a5565b9150604084013590509250925092565b60008060008060808587031215611858578081fd5b611861856117a5565b935061186f602086016117a5565b925060408501359150606085013567ffffffffffffffff811115611891578182fd5b8501601f810187136118a1578182fd5b6118b087823560208401611735565b91505092959194509250565b600080604083850312156118ce578182fd5b6118d7836117a5565b9150602083013580151581146118eb578182fd5b809150509250929050565b60008060408385031215611908578182fd5b611911836117a5565b946020939093013593505050565b600060208284031215611930578081fd5b8135610c2381612251565b60006020828403121561194c578081fd5b8151610c2381612251565b600060208284031215611968578081fd5b813567ffffffffffffffff81111561197e578182fd5b8201601f8101841361198e578182fd5b610e6084823560208401611735565b6000602082840312156119ae578081fd5b5035919050565b600080604083850312156119c7578182fd5b823591506117ff602084016117a5565b600081518084526119ef816020860160208601612179565b601f01601f19169290920160200192915050565b60008351611a15818460208801612179565b835190830190611a29818360208801612179565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a79908301846119d7565b9695505050505050565b901515815260200190565b600060208252610c2360208301846119d7565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601a908201527f41473a204d617820323020706572207472616e73616374696f6e000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600e908201526d1051ce88105b1b081b5a5b9d195960921b604082015260600190565b60208082526024908201527f41473a20416d6f756e74202b207465616d206d696e7420636f756e7420696e76604082015263185b1a5960e21b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260159082015274041473a205465616d206d696e74206d61782031303605c1b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152751051ce8810d85b9b9bdd081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f41473a20496e636f72726563742076616c75652073656e740000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601a908201527f41473a204e6f74206f70656e20746f207075626c696320796574000000000000604082015260600190565b90815260200190565b6000821982111561212a5761212a61220f565b500190565b60008261213e5761213e612225565b500490565b600081600019048311821515161561215d5761215d61220f565b500290565b6000828210156121745761217461220f565b500390565b60005b8381101561219457818101518382015260200161217c565b83811115610af05750506000910152565b6002810460018216806121b957607f821691505b602082108114156121da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121f4576121f461220f565b5060010190565b60008261220a5761220a612225565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098157600080fdfea26469706673582212204f5370e27298ff6e61a149713238dda9246e61df5289ab8b17f6bd168dfdfeae64736f6c63430008000033

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

000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea60000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f7078672d70726f642e6865726f6b756170702e636f6d2f617564696f676c797068732f6d657461646174612f000000000000000000000000

-----Decoded View---------------
Arg [0] : pixelglyphsAddr (address): 0xF38d6BF300d52bA7880b43cDDB3F94ee3C6C4Ea6
Arg [1] : baseUri (string): https://pxg-prod.herokuapp.com/audioglyphs/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000f38d6bf300d52ba7880b43cddb3f94ee3c6c4ea6
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [3] : 68747470733a2f2f7078672d70726f642e6865726f6b756170702e636f6d2f61
Arg [4] : 7564696f676c797068732f6d657461646174612f000000000000000000000000


Deployed Bytecode Sourcemap

41814:1808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32987:260;;;;;;;;;;-1:-1:-1;32987:260:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20502:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22025:239::-;;;;;;;;;;-1:-1:-1;22025:239:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21590:377::-;;;;;;;;;;-1:-1:-1;21590:377:0;;;;;:::i;:::-;;:::i;:::-;;33686:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41958:24::-;;;;;;;;;;;;;:::i;22935:332::-;;;;;;;;;;-1:-1:-1;22935:332:0;;;;;:::i;:::-;;:::i;33323:295::-;;;;;;;;;;-1:-1:-1;33323:295:0;;;;;:::i;:::-;;:::i;23330:165::-;;;;;;;;;;-1:-1:-1;23330:165:0;;;;;:::i;:::-;;:::i;33862:272::-;;;;;;;;;;-1:-1:-1;33862:272:0;;;;;:::i;:::-;;:::i;43476:143::-;;;;;;;;;;-1:-1:-1;43476:143:0;;;;;:::i;:::-;;:::i;20190:253::-;;;;;;;;;;-1:-1:-1;20190:253:0;;;;;:::i;:::-;;:::i;19910:226::-;;;;;;;;;;-1:-1:-1;19910:226:0;;;;;:::i;:::-;;:::i;40529:88::-;;;;;;;;;;;;;:::i;39918:81::-;;;;;;;;;;;;;:::i;20657:98::-;;;;;;;;;;;;;:::i;42445:417::-;;;;;;:::i;:::-;;:::i;43270:91::-;;;;;;;;;;-1:-1:-1;43270:91:0;;;;;:::i;:::-;;:::i;22328:299::-;;;;;;;;;;-1:-1:-1;22328:299:0;;;;;:::i;:::-;;:::i;41889:26::-;;;;;;;;;;;;;:::i;23558:321::-;;;;;;;;;;-1:-1:-1;23558:321:0;;;;;:::i;:::-;;:::i;42896:297::-;;;;;;;;;;-1:-1:-1;42896:297:0;;;;;:::i;:::-;;:::i;20818:394::-;;;;;;;;;;-1:-1:-1;20818:394:0;;;;;:::i;:::-;;:::i;22690:186::-;;;;;;;;;;-1:-1:-1;22690:186:0;;;;;:::i;:::-;;:::i;40762:182::-;;;;;;;;;;-1:-1:-1;40762:182:0;;;;;:::i;:::-;;:::i;43199:65::-;;;;;;;;;;;;;:::i;32987:260::-;33114:4;-1:-1:-1;;;;;;33144:50:0;;-1:-1:-1;;;33144:50:0;;:97;;;33205:36;33229:11;33205:23;:36::i;:::-;33130:111;;32987:260;;;;:::o;20502:94::-;20556:13;20585:5;20578:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20502:94;:::o;22025:239::-;22126:7;22153:16;22161:7;22153;:16::i;:::-;22145:73;;;;-1:-1:-1;;;22145:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22234:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22234:24:0;;22025:239::o;21590:377::-;21667:13;21683:23;21698:7;21683:14;:23::i;:::-;21667:39;;21727:5;-1:-1:-1;;;;;21721:11:0;:2;-1:-1:-1;;;;;21721:11:0;;;21713:57;;;;-1:-1:-1;;;21713:57:0;;;;;;;:::i;:::-;21811:5;-1:-1:-1;;;;;21795:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21795:21:0;;:62;;;;21820:37;21837:5;21844:12;:10;:12::i;21820:37::-;21779:152;;;;-1:-1:-1;;;21779:152:0;;;;;;;:::i;:::-;21940:21;21949:2;21953:7;21940:8;:21::i;:::-;21590:377;;;:::o;33686:107::-;33770:10;:17;33686:107;:::o;41958:24::-;;;;;;:::o;22935:332::-;23116:41;23135:12;:10;:12::i;:::-;23149:7;23116:18;:41::i;:::-;23100:124;;;;-1:-1:-1;;;23100:124:0;;;;;;;:::i;:::-;23233:28;23243:4;23249:2;23253:7;23233:9;:28::i;33323:295::-;33445:7;33488:23;33505:5;33488:16;:23::i;:::-;33480:5;:31;33464:108;;;;-1:-1:-1;;;33464:108:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;33586:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33323:295::o;23330:165::-;23450:39;23467:4;23473:2;23477:7;23450:39;;;;;;;;;;;;:16;:39::i;33862:272::-;33962:7;34005:30;:28;:30::i;:::-;33997:5;:38;33981:116;;;;-1:-1:-1;;;33981:116:0;;;;;;;:::i;:::-;34111:10;34122:5;34111:17;;;;;;-1:-1:-1;;;34111:17:0;;;;;;;;;;;;;;;;;34104:24;;33862:272;;;:::o;43476:143::-;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;43580:33:::1;::::0;43552:21:::1;::::0;-1:-1:-1;;;;;43580:24:0;::::1;::::0;:33;::::1;;;::::0;43552:21;;43534:15:::1;43580:33:::0;43534:15;43580:33;43552:21;43580:24;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;20190:253:::0;20287:7;20322:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20322:16:0;20353:19;20345:73;;;;-1:-1:-1;;;20345:73:0;;;;;;;:::i;19910:226::-;20007:7;-1:-1:-1;;;;;20034:19:0;;20026:74;;;;-1:-1:-1;;;20026:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20114:16:0;;;;;:9;:16;;;;;;;19910:226::o;40529:88::-;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;40590:21:::1;40608:1;40590:9;:21::i;:::-;40529:88::o:0;39918:81::-;39987:6;;-1:-1:-1;;;;;39987:6:0;39918:81;:::o;20657:98::-;20713:13;20742:7;20735:14;;;;;:::i;42445:417::-;42505:12;;;;42497:51;;;;-1:-1:-1;;;42497:51:0;;;;;;;:::i;:::-;42574:5;42563:8;;:16;42555:43;;;;-1:-1:-1;;;42555:43:0;;;;;;;:::i;:::-;42635:12;;42626:21;;:6;:21;:::i;:::-;42613:9;:34;42605:71;;;;-1:-1:-1;;;42605:71:0;;;;;;;:::i;:::-;42712:5;42702:6;42691:8;;:17;;;;:::i;:::-;:26;;42683:61;;;;-1:-1:-1;;;42683:61:0;;;;;;;:::i;:::-;42768:1;42759:6;:10;:26;;;;;42783:2;42773:6;:12;;42759:26;42751:65;;;;-1:-1:-1;;;42751:65:0;;;;;;;:::i;:::-;42823:33;42837:6;42845:10;42823:13;:33::i;:::-;42445:417;:::o;43270:91::-;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;43337:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43270:91:::0;:::o;22328:299::-;22457:12;:10;:12::i;:::-;-1:-1:-1;;;;;22445:24:0;:8;-1:-1:-1;;;;;22445:24:0;;;22437:62;;;;-1:-1:-1;;;22437:62:0;;;;;;;:::i;:::-;22553:8;22508:18;:32;22527:12;:10;:12::i;:::-;-1:-1:-1;;;;;22508:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22508:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22508:53:0;;;;;;;;;;;22588:12;:10;:12::i;:::-;-1:-1:-1;;;;;22573:48:0;;22612:8;22573:48;;;;;;:::i;:::-;;;;;;;;22328:299;;:::o;41889:26::-;;;-1:-1:-1;;;;;41889:26:0;;:::o;23558:321::-;23719:41;23738:12;:10;:12::i;:::-;23752:7;23719:18;:41::i;:::-;23703:124;;;;-1:-1:-1;;;23703:124:0;;;;;;;:::i;:::-;23834:39;23848:4;23854:2;23858:7;23867:5;23834:13;:39::i;:::-;23558:321;;;;:::o;42896:297::-;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;42990:3:::1;42974:13;;:19;42966:53;;;;-1:-1:-1::0;;;42966:53:0::1;;;;;;;:::i;:::-;43068:3;43058:6;43042:13;;:22;;;;:::i;:::-;:29;;43026:99;;;;-1:-1:-1::0;;;43026:99:0::1;;;;;;;:::i;:::-;43149:6;43132:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;43162:25:0::1;::::0;-1:-1:-1;43176:6:0;43184:2;43162:13:::1;:25::i;20818:394::-:0;20916:13;20957:16;20965:7;20957;:16::i;:::-;20941:97;;;;-1:-1:-1;;;20941:97:0;;;;;;;:::i;:::-;21047:21;21071:10;:8;:10::i;:::-;21047:34;;21126:1;21108:7;21102:21;:25;:104;;;;;;;;;;;;;;;;;21163:7;21172:18;:7;:16;:18::i;:::-;21146:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21102:104;21088:118;20818:394;-1:-1:-1;;;20818:394:0:o;22690:186::-;-1:-1:-1;;;;;22835:25:0;;;22812:4;22835:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22690:186::o;40762:182::-;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40847:22:0;::::1;40839:73;;;;-1:-1:-1::0;;;40839:73:0::1;;;;;;;:::i;:::-;40919:19;40929:8;40919:9;:19::i;43199:65::-:0;40131:12;:10;:12::i;:::-;-1:-1:-1;;;;;40120:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40120:23:0;;40112:68;;;;-1:-1:-1;;;40112:68:0;;;;;;;:::i;:::-;43239:12:::1;:19:::0;;-1:-1:-1;;43239:19:0::1;43254:4;43239:19;::::0;;43199:65::o;19545:309::-;19672:4;-1:-1:-1;;;;;;19702:40:0;;-1:-1:-1;;;19702:40:0;;:99;;-1:-1:-1;;;;;;;19753:48:0;;-1:-1:-1;;;19753:48:0;19702:99;:146;;;;19812:36;19836:11;19812:23;:36::i;25326:121::-;25391:4;25411:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25411:16:0;:30;;;25326:121::o;15233:92::-;15309:10;15233:92;:::o;29060:164::-;29131:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29131:29:0;-1:-1:-1;;;;;29131:29:0;;;;;;;;:24;;29181:23;29131:24;29181:14;:23::i;:::-;-1:-1:-1;;;;;29172:46:0;;;;;;;;;;;29060:164;;:::o;25598:371::-;25711:4;25735:16;25743:7;25735;:16::i;:::-;25727:73;;;;-1:-1:-1;;;25727:73:0;;;;;;;:::i;:::-;25807:13;25823:23;25838:7;25823:14;:23::i;:::-;25807:39;;25872:5;-1:-1:-1;;;;;25861:16:0;:7;-1:-1:-1;;;;;25861:16:0;;:58;;;;25912:7;-1:-1:-1;;;;;25888:31:0;:20;25900:7;25888:11;:20::i;:::-;-1:-1:-1;;;;;25888:31:0;;25861:58;:101;;;;25930:32;25947:5;25954:7;25930:16;:32::i;:::-;25853:110;25598:371;-1:-1:-1;;;;25598:371:0:o;28407:547::-;28556:4;-1:-1:-1;;;;;28529:31:0;:23;28544:7;28529:14;:23::i;:::-;-1:-1:-1;;;;;28529:31:0;;28513:106;;;;-1:-1:-1;;;28513:106:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28634:16:0;;28626:65;;;;-1:-1:-1;;;28626:65:0;;;;;;;:::i;:::-;28700:39;28721:4;28727:2;28731:7;28700:20;:39::i;:::-;28796:29;28813:1;28817:7;28796:8;:29::i;:::-;-1:-1:-1;;;;;28834:15:0;;;;;;:9;:15;;;;;:20;;28853:1;;28834:15;:20;;28853:1;;28834:20;:::i;:::-;;;;-1:-1:-1;;;;;;;28861:13:0;;;;;;:9;:13;;;;;:18;;28878:1;;28861:13;:18;;28878:1;;28861:18;:::i;:::-;;;;-1:-1:-1;;28886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28886:21:0;-1:-1:-1;;;;;28886:21:0;;;;;;;;;28921:27;;28886:16;;28921:27;;;;;;;28407:547;;;:::o;40950:159::-;41021:6;;;-1:-1:-1;;;;;41034:17:0;;;-1:-1:-1;;;;;;41034:17:0;;;;;;;41063:40;;41021:6;;;41034:17;41021:6;;41063:40;;41002:16;;41063:40;40950:159;;:::o;42225:214::-;42297:9;42292:142;42316:6;42312:1;:10;42292:142;;;42338:15;42358:8;;42356:10;;;;;:::i;:::-;;;;;-1:-1:-1;42356:10:0;-1:-1:-1;42375:22:0;42385:2;42356:10;42375:9;:22::i;:::-;42411:15;;42418:7;;42411:15;;;;;-1:-1:-1;42324:3:0;;;;:::i;:::-;;;;42292:142;;24723:308;24858:28;24868:4;24874:2;24878:7;24858:9;:28::i;:::-;24909:48;24932:4;24938:2;24942:7;24951:5;24909:22;:48::i;:::-;24893:132;;;;-1:-1:-1;;;24893:132:0;;;;;;;:::i;43367:103::-;43427:13;43456:8;43449:15;;;;;:::i;15730:637::-;15786:13;15995:10;15991:43;;-1:-1:-1;16016:10:0;;;;;;;;;;;;-1:-1:-1;;;16016:10:0;;;;;;15991:43;16055:5;16040:12;16088:62;16095:9;;16088:62;;16115:8;;;;:::i;:::-;;-1:-1:-1;16132:10:0;;-1:-1:-1;16140:2:0;16132:10;;:::i;:::-;;;16088:62;;;16156:19;16188:6;16178:17;;;;;;-1:-1:-1;;;16178:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16178:17:0;;16156:39;;16202:132;16209:10;;16202:132;;16230:11;16240:1;16230:11;;:::i;:::-;;-1:-1:-1;16293:10:0;16301:2;16293:5;:10;:::i;:::-;16280:24;;:2;:24;:::i;:::-;16267:39;;16250:6;16257;16250:14;;;;;;-1:-1:-1;;;16250:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16250:56:0;;;;;;;;-1:-1:-1;16315:11:0;16324:2;16315:11;;:::i;:::-;;;16202:132;;18099:179;-1:-1:-1;;;;;;18232:40:0;;-1:-1:-1;;;18232:40:0;18099:179;;;:::o;34715:521::-;34841:45;34868:4;34874:2;34878:7;34841:26;:45::i;:::-;-1:-1:-1;;;;;34899:18:0;;34895:167;;34928:40;34960:7;34928:31;:40::i;:::-;34895:167;;;34994:2;-1:-1:-1;;;;;34986:10:0;:4;-1:-1:-1;;;;;34986:10:0;;34982:80;;35007:47;35040:4;35046:7;35007:32;:47::i;:::-;-1:-1:-1;;;;;35072:16:0;;35068:163;;35099:45;35136:7;35099:36;:45::i;:::-;35068:163;;;35168:4;-1:-1:-1;;;;;35162:10:0;:2;-1:-1:-1;;;;;35162:10:0;;35158:73;;35183:40;35211:2;35215:7;35183:27;:40::i;26289:104::-;26361:26;26371:2;26375:7;26361:26;;;;;;;;;;;;:9;:26::i;29767:689::-;29904:4;29921:15;:2;-1:-1:-1;;;;;29921:13:0;;:15::i;:::-;29917:534;;;29976:2;-1:-1:-1;;;;;29960:36:0;;29997:12;:10;:12::i;:::-;30011:4;30017:7;30026:5;29960:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29960:72:0;;;;;;;;-1:-1:-1;;29960:72:0;;;;;;;;;;;;:::i;:::-;;;29947:463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30191:13:0;;30187:214;;30224:60;;-1:-1:-1;;;30224:60:0;;;;;;;:::i;30187:214::-;30369:6;30363:13;30354:6;30350:2;30346:15;30339:38;29947:463;-1:-1:-1;;;;;;30082:55:0;-1:-1:-1;;;30082:55:0;;-1:-1:-1;30075:62:0;;29917:534;-1:-1:-1;30439:4:0;29767:689;;;;;;:::o;35923:154::-;36023:10;:17;;35996:24;;;;:15;:24;;;;;:44;;;36047:24;;;;;;;;;;;;35923:154::o;36686:936::-;36948:22;36998:1;36973:22;36990:4;36973:16;:22::i;:::-;:26;;;;:::i;:::-;37006:18;37027:26;;;:17;:26;;;;;;36948:51;;-1:-1:-1;37152:28:0;;;37148:306;;-1:-1:-1;;;;;37213:18:0;;37191:19;37213:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37258:30;;;;;;:44;;;37369:30;;:17;:30;;;;;:43;;;37148:306;-1:-1:-1;37542:26:0;;;;:17;:26;;;;;;;;37535:33;;;-1:-1:-1;;;;;37582:18:0;;;;;:12;:18;;;;;:34;;;;;;;37575:41;36686:936::o;37905:1025::-;38171:10;:17;38146:22;;38171:21;;38191:1;;38171:21;:::i;:::-;38199:18;38220:24;;;:15;:24;;;;;;38577:10;:26;;38146:46;;-1:-1:-1;38220:24:0;;38146:46;;38577:26;;;;-1:-1:-1;;;38577:26:0;;;;;;;;;;;;;;;;;38555:48;;38637:11;38612:10;38623;38612:22;;;;;;-1:-1:-1;;;38612:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;38713:28;;;:15;:28;;;;;;;:41;;;38877:24;;;;;38870:31;38908:10;:16;;;;;-1:-1:-1;;;38908:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;37905:1025;;;;:::o;35525:207::-;35606:14;35623:20;35640:2;35623:16;:20::i;:::-;-1:-1:-1;;;;;35650:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;35691:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;35525:207:0:o;26610:281::-;26722:18;26728:2;26732:7;26722:5;:18::i;:::-;26763:54;26794:1;26798:2;26802:7;26811:5;26763:22;:54::i;:::-;26747:138;;;;-1:-1:-1;;;26747:138:0;;;;;;;:::i;7801:351::-;8098:20;8138:8;;;7801:351::o;27201:356::-;-1:-1:-1;;;;;27277:16:0;;27269:61;;;;-1:-1:-1;;;27269:61:0;;;;;;;:::i;:::-;27346:16;27354:7;27346;:16::i;:::-;27345:17;27337:58;;;;-1:-1:-1;;;27337:58:0;;;;;;;:::i;:::-;27404:45;27433:1;27437:2;27441:7;27404:20;:45::i;:::-;-1:-1:-1;;;;;27458:13:0;;;;;;:9;:13;;;;;:18;;27475:1;;27458:13;:18;;27475:1;;27458:18;:::i;:::-;;;;-1:-1:-1;;27483:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27483:21:0;-1:-1:-1;;;;;27483:21:0;;;;;;;;27518:33;;27483:16;;;27518:33;;27483:16;;27518:33;27201:356;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:266::-;;;4326:2;4314:9;4305:7;4301:23;4297:32;4294:2;;;4347:6;4339;4332:22;4294:2;4388:9;4375:23;4365:33;;4417:40;4453:2;4442:9;4438:18;4417:40;:::i;4468:259::-;;4549:5;4543:12;4576:6;4571:3;4564:19;4592:63;4648:6;4641:4;4636:3;4632:14;4625:4;4618:5;4614:16;4592:63;:::i;:::-;4709:2;4688:15;-1:-1:-1;;4684:29:1;4675:39;;;;4716:4;4671:50;;4519:208;-1:-1:-1;;4519:208:1:o;4732:470::-;;4949:6;4943:13;4965:53;5011:6;5006:3;4999:4;4991:6;4987:17;4965:53;:::i;:::-;5081:13;;5040:16;;;;5103:57;5081:13;5040:16;5137:4;5125:17;;5103:57;:::i;:::-;5176:20;;4919:283;-1:-1:-1;;;;4919:283:1:o;5207:203::-;-1:-1:-1;;;;;5371:32:1;;;;5353:51;;5341:2;5326:18;;5308:102::o;5415:490::-;-1:-1:-1;;;;;5684:15:1;;;5666:34;;5736:15;;5731:2;5716:18;;5709:43;5783:2;5768:18;;5761:34;;;5831:3;5826:2;5811:18;;5804:31;;;5415:490;;5852:47;;5879:19;;5871:6;5852:47;:::i;:::-;5844:55;5618:287;-1:-1:-1;;;;;;5618:287:1:o;5910:187::-;6075:14;;6068:22;6050:41;;6038:2;6023:18;;6005:92::o;6102:221::-;;6251:2;6240:9;6233:21;6271:46;6313:2;6302:9;6298:18;6290:6;6271:46;:::i;6328:407::-;6530:2;6512:21;;;6569:2;6549:18;;;6542:30;6608:34;6603:2;6588:18;;6581:62;-1:-1:-1;;;6674:2:1;6659:18;;6652:41;6725:3;6710:19;;6502:233::o;6740:414::-;6942:2;6924:21;;;6981:2;6961:18;;;6954:30;7020:34;7015:2;7000:18;;6993:62;-1:-1:-1;;;7086:2:1;7071:18;;7064:48;7144:3;7129:19;;6914:240::o;7159:402::-;7361:2;7343:21;;;7400:2;7380:18;;;7373:30;7439:34;7434:2;7419:18;;7412:62;-1:-1:-1;;;7505:2:1;7490:18;;7483:36;7551:3;7536:19;;7333:228::o;7566:350::-;7768:2;7750:21;;;7807:2;7787:18;;;7780:30;7846:28;7841:2;7826:18;;7819:56;7907:2;7892:18;;7740:176::o;7921:352::-;8123:2;8105:21;;;8162:2;8142:18;;;8135:30;8201;8196:2;8181:18;;8174:58;8264:2;8249:18;;8095:178::o;8278:338::-;8480:2;8462:21;;;8519:2;8499:18;;;8492:30;-1:-1:-1;;;8553:2:1;8538:18;;8531:44;8607:2;8592:18;;8452:164::o;8621:400::-;8823:2;8805:21;;;8862:2;8842:18;;;8835:30;8901:34;8896:2;8881:18;;8874:62;-1:-1:-1;;;8967:2:1;8952:18;;8945:34;9011:3;8996:19;;8795:226::o;9026:400::-;9228:2;9210:21;;;9267:2;9247:18;;;9240:30;9306:34;9301:2;9286:18;;9279:62;-1:-1:-1;;;9372:2:1;9357:18;;9350:34;9416:3;9401:19;;9200:226::o;9431:349::-;9633:2;9615:21;;;9672:2;9652:18;;;9645:30;9711:27;9706:2;9691:18;;9684:55;9771:2;9756:18;;9605:175::o;9785:345::-;9987:2;9969:21;;;10026:2;10006:18;;;9999:30;-1:-1:-1;;;10060:2:1;10045:18;;10038:51;10121:2;10106:18;;9959:171::o;10135:408::-;10337:2;10319:21;;;10376:2;10356:18;;;10349:30;10415:34;10410:2;10395:18;;10388:62;-1:-1:-1;;;10481:2:1;10466:18;;10459:42;10533:3;10518:19;;10309:234::o;10548:346::-;10750:2;10732:21;;;10789:2;10769:18;;;10762:30;-1:-1:-1;;;10823:2:1;10808:18;;10801:52;10885:2;10870:18;;10722:172::o;10899:420::-;11101:2;11083:21;;;11140:2;11120:18;;;11113:30;11179:34;11174:2;11159:18;;11152:62;11250:26;11245:2;11230:18;;11223:54;11309:3;11294:19;;11073:246::o;11324:406::-;11526:2;11508:21;;;11565:2;11545:18;;;11538:30;11604:34;11599:2;11584:18;;11577:62;-1:-1:-1;;;11670:2:1;11655:18;;11648:40;11720:3;11705:19;;11498:232::o;11735:405::-;11937:2;11919:21;;;11976:2;11956:18;;;11949:30;12015:34;12010:2;11995:18;;11988:62;-1:-1:-1;;;12081:2:1;12066:18;;12059:39;12130:3;12115:19;;11909:231::o;12145:356::-;12347:2;12329:21;;;12366:18;;;12359:30;12425:34;12420:2;12405:18;;12398:62;12492:2;12477:18;;12319:182::o;12506:408::-;12708:2;12690:21;;;12747:2;12727:18;;;12720:30;12786:34;12781:2;12766:18;;12759:62;-1:-1:-1;;;12852:2:1;12837:18;;12830:42;12904:3;12889:19;;12680:234::o;12919:356::-;13121:2;13103:21;;;13140:18;;;13133:30;13199:34;13194:2;13179:18;;13172:62;13266:2;13251:18;;13093:182::o;13280:405::-;13482:2;13464:21;;;13521:2;13501:18;;;13494:30;13560:34;13555:2;13540:18;;13533:62;-1:-1:-1;;;13626:2:1;13611:18;;13604:39;13675:3;13660:19;;13454:231::o;13690:411::-;13892:2;13874:21;;;13931:2;13911:18;;;13904:30;13970:34;13965:2;13950:18;;13943:62;-1:-1:-1;;;14036:2:1;14021:18;;14014:45;14091:3;14076:19;;13864:237::o;14106:397::-;14308:2;14290:21;;;14347:2;14327:18;;;14320:30;14386:34;14381:2;14366:18;;14359:62;-1:-1:-1;;;14452:2:1;14437:18;;14430:31;14493:3;14478:19;;14280:223::o;14508:348::-;14710:2;14692:21;;;14749:2;14729:18;;;14722:30;14788:26;14783:2;14768:18;;14761:54;14847:2;14832:18;;14682:174::o;14861:413::-;15063:2;15045:21;;;15102:2;15082:18;;;15075:30;15141:34;15136:2;15121:18;;15114:62;-1:-1:-1;;;15207:2:1;15192:18;;15185:47;15264:3;15249:19;;15035:239::o;15279:408::-;15481:2;15463:21;;;15520:2;15500:18;;;15493:30;15559:34;15554:2;15539:18;;15532:62;-1:-1:-1;;;15625:2:1;15610:18;;15603:42;15677:3;15662:19;;15453:234::o;15692:350::-;15894:2;15876:21;;;15933:2;15913:18;;;15906:30;15972:28;15967:2;15952:18;;15945:56;16033:2;16018:18;;15866:176::o;16047:177::-;16193:25;;;16181:2;16166:18;;16148:76::o;16229:128::-;;16300:1;16296:6;16293:1;16290:13;16287:2;;;16306:18;;:::i;:::-;-1:-1:-1;16342:9:1;;16277:80::o;16362:120::-;;16428:1;16418:2;;16433:18;;:::i;:::-;-1:-1:-1;16467:9:1;;16408:74::o;16487:168::-;;16593:1;16589;16585:6;16581:14;16578:1;16575:21;16570:1;16563:9;16556:17;16552:45;16549:2;;;16600:18;;:::i;:::-;-1:-1:-1;16640:9:1;;16539:116::o;16660:125::-;;16728:1;16725;16722:8;16719:2;;;16733:18;;:::i;:::-;-1:-1:-1;16770:9:1;;16709:76::o;16790:258::-;16862:1;16872:113;16886:6;16883:1;16880:13;16872:113;;;16962:11;;;16956:18;16943:11;;;16936:39;16908:2;16901:10;16872:113;;;17003:6;17000:1;16997:13;16994:2;;;-1:-1:-1;;17038:1:1;17020:16;;17013:27;16843:205::o;17053:380::-;17138:1;17128:12;;17185:1;17175:12;;;17196:2;;17250:4;17242:6;17238:17;17228:27;;17196:2;17303;17295:6;17292:14;17272:18;17269:38;17266:2;;;17349:10;17344:3;17340:20;17337:1;17330:31;17384:4;17381:1;17374:15;17412:4;17409:1;17402:15;17266:2;;17108:325;;;:::o;17438:135::-;;-1:-1:-1;;17498:17:1;;17495:2;;;17518:18;;:::i;:::-;-1:-1:-1;17565:1:1;17554:13;;17485:88::o;17578:112::-;;17636:1;17626:2;;17641:18;;:::i;:::-;-1:-1:-1;17675:9:1;;17616:74::o;17695:127::-;17756:10;17751:3;17747:20;17744:1;17737:31;17787:4;17784:1;17777:15;17811:4;17808:1;17801:15;17827:127;17888:10;17883:3;17879:20;17876:1;17869:31;17919:4;17916:1;17909:15;17943:4;17940:1;17933:15;17959:127;18020:10;18015:3;18011:20;18008:1;18001:31;18051:4;18048:1;18041:15;18075:4;18072:1;18065:15;18091:133;-1:-1:-1;;;;;;18167:32:1;;18157:43;;18147:2;;18214:1;18211;18204:12

Swarm Source

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