ETH Price: $3,385.35 (+5.24%)

Token

Onemizer90 (OM)
 

Overview

Max Total Supply

258 OM

Holders

156

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Onemizer90

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : Onemizer90.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

import "./ProxyRegistry.sol";

contract Onemizer90 is ERC721, Ownable {
    using Counters for Counters.Counter;

    address proxyRegistryAddress;

    Counters.Counter private _tokenSupply;

    uint256 public PRICE;
    uint256 public START_DATE;
    uint256 public MAX_SUPPLY;
    uint256 public RESERVED;

    string private baseUri;

    modifier saleIsActive() {
        require(START_DATE != 0 && block.timestamp >= START_DATE, "Sale is not active yet");
        _;
    }

    constructor(
        address _proxyRegistryAddress,
        uint256 _price,
        uint256 _startDate,
        uint256 _maxSupply,
        uint256 _reserved,
        string memory _baseUri
    ) ERC721("Onemizer90", "OM") {
        proxyRegistryAddress = _proxyRegistryAddress;
        PRICE = _price;
        START_DATE = _startDate;
        MAX_SUPPLY = _maxSupply;
        RESERVED = _reserved;
        baseUri = _baseUri;
    }

    function mint(uint256 numberOfTokens) public payable saleIsActive {
        require(numberOfTokens * PRICE == msg.value, "Ether value is not correct");
        require(_tokenSupply.current() + numberOfTokens + RESERVED <= MAX_SUPPLY, "Sold out!");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, _tokenSupply.current());
            _tokenSupply.increment();
        }
    }

    function reserve(address[] calldata to) public onlyOwner {
        for (uint256 i = 0; i < to.length; i++) {
            _safeMint(to[i], _tokenSupply.current());
            _tokenSupply.increment();
        }
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    function contractURI() public pure returns (string memory) {
        return "ipfs://bafybeigpmcheddbbt7un2745fzpoi3r3vsxnjhtzj5poovsledgb52qd3i";
    }

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

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }

    function setStartDate(uint256 _startDate) public onlyOwner {
        START_DATE = _startDate;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }

    function setReserved(uint256 _reserved) public onlyOwner {
        RESERVED = _reserved;
    }

    function walletOfOwner(address owner) public view returns (uint256[] memory) {
        uint256[] memory result = new uint256[](balanceOf(owner));
        uint256 i = 0;

        for (uint256 tokenId = 0; tokenId < _tokenSupply.current(); tokenId++) {
            if (_exists(tokenId) && ownerOf(tokenId) == owner) {
                result[i] = tokenId;
                i += 1;
            }
        }
        return result;
    }

    function withdraw(address payable to, uint256 amount) public onlyOwner {
        require(to != address(0x0), "Invalid address");
        to.transfer(amount);
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

File 2 of 14 : Onemizer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

import "./ProxyRegistry.sol";

contract Onemizer is ERC721, Ownable {
    using Counters for Counters.Counter;

    address proxyRegistryAddress;

    Counters.Counter private _tokenSupply;

    uint256 public PRICE;
    uint256 public START_DATE;
    uint256 public MAX_SUPPLY;

    string private baseUri;

    modifier saleIsActive() {
        require(START_DATE != 0 && block.timestamp >= START_DATE, "Sale is not active yet");
        _;
    }

    constructor(
        address _proxyRegistryAddress,
        uint256 _price,
        uint256 _startDate,
        uint256 _maxSupply,
        string memory _baseUri
    ) ERC721("Onemizer", "OM") {
        proxyRegistryAddress = _proxyRegistryAddress;
        PRICE = _price;
        START_DATE = _startDate;
        MAX_SUPPLY = _maxSupply;
        baseUri = _baseUri;
    }

    function mint(uint256 numberOfTokens) public payable saleIsActive {
        require(numberOfTokens * PRICE == msg.value, "Ether value is not correct");
        require(_tokenSupply.current() + numberOfTokens <= MAX_SUPPLY, "Sold out!");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, _tokenSupply.current());
            _tokenSupply.increment();
        }
    }

    function reserve(address[] calldata to) public onlyOwner {
        for (uint256 i = 0; i < to.length; i++) {
            _safeMint(to[i], _tokenSupply.current());
            _tokenSupply.increment();
        }
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    function contractURI() public pure returns (string memory) {
        return "ipfs://bafybeidpkwijgj42zkcu6cky5ufb542pwuigphgnw5uuheqvioptpc5lv4";
    }

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

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) public onlyOwner {
        PRICE = _price;
    }

    function setStartDate(uint256 _startDate) public onlyOwner {
        START_DATE = _startDate;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }

    function walletOfOwner(address owner) public view returns (uint256[] memory) {
        uint256[] memory result = new uint256[](balanceOf(owner));
        uint256 i = 0;

        for (uint256 tokenId = 0; tokenId < _tokenSupply.current(); tokenId++) {
            if (_exists(tokenId) && ownerOf(tokenId) == owner) {
                result[i] = tokenId;
                i += 1;
            }
        }
        return result;
    }

    function withdraw(address payable to, uint256 amount) public onlyOwner {
        require(to != address(0x0), "Invalid address");
        to.transfer(amount);
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

File 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 5 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : ProxyRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "metadata": {
    "bytecodeHash": "none",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_startDate","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserved","type":"uint256"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_DATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startDate","type":"uint256"}],"name":"setStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620025fd380380620025fd833981016040819052620000349162000216565b604080518082018252600a81526904f6e656d697a657239360b41b6020808301918252835180850190945260028452614f4d60f01b90840152815191929162000080916000916200015a565b508051620000969060019060208401906200015a565b505050620000b3620000ad6200010460201b60201c565b62000108565b600780546001600160a01b0319166001600160a01b0388161790556009859055600a849055600b839055600c8290558051620000f790600d9060208401906200015a565b505050505050506200037a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000168906200033d565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b634e487b7160e01b600052604160045260246000fd5b60008060008060008060c087890312156200023057600080fd5b86516001600160a01b03811681146200024857600080fd5b60208881015160408a015160608b015160808c015160a08d0151959b5092995090975095509350906001600160401b03808211156200028657600080fd5b818a0191508a601f8301126200029b57600080fd5b815181811115620002b057620002b062000200565b604051601f8201601f19908116603f01168101908382118183101715620002db57620002db62000200565b816040528281528d86848701011115620002f457600080fd5b600093505b82841015620003185784840186015181850187015292850192620002f9565b828411156200032a5760008684830101525b8096505050505050509295509295509295565b600181811c908216806200035257607f821691505b602082108114156200037457634e487b7160e01b600052602260045260246000fd5b50919050565b612273806200038a6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063aa592f2511610095578063e8a3d48511610064578063e8a3d48514610531578063e985e9c514610546578063f2fde38b14610566578063f3fef3a31461058657600080fd5b8063aa592f25146104bb578063b88d4fde146104d1578063c87b56dd146104f1578063d682ed861461051157600080fd5b806391b7f5ed116100d157806391b7f5ed1461045357806395d89b4114610473578063a0712d6814610488578063a22cb4651461049b57600080fd5b8063715018a6146103ea57806382d95df5146103ff5780638d859f3e1461041f5780638da5cb5b1461043557600080fd5b806332cb6b0c1161017a57806355f804b31161014957806355f804b31461036a5780636352211e1461038a5780636f8b44b0146103aa57806370a08231146103ca57600080fd5b806332cb6b0c146102f1578063372c65331461030757806342842e0e1461031d578063438b63001461033d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780632d6e71b6146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c97565b6105a6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f8565b6040516102099190611d0c565b34801561024057600080fd5b5061025461024f366004611d1f565b61068a565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d4d565b610724565b005b34801561029a57600080fd5b506102a361083a565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611d79565b61084a565b3480156102dd57600080fd5b5061028c6102ec366004611d1f565b6108d1565b3480156102fd57600080fd5b506102a3600b5481565b34801561031357600080fd5b506102a3600a5481565b34801561032957600080fd5b5061028c610338366004611d79565b61091e565b34801561034957600080fd5b5061035d610358366004611dba565b610939565b6040516102099190611dd7565b34801561037657600080fd5b5061028c610385366004611ea7565b610a23565b34801561039657600080fd5b506102546103a5366004611d1f565b610a82565b3480156103b657600080fd5b5061028c6103c5366004611d1f565b610b0d565b3480156103d657600080fd5b506102a36103e5366004611dba565b610b5a565b3480156103f657600080fd5b5061028c610bf4565b34801561040b57600080fd5b5061028c61041a366004611d1f565b610c48565b34801561042b57600080fd5b506102a360095481565b34801561044157600080fd5b506006546001600160a01b0316610254565b34801561045f57600080fd5b5061028c61046e366004611d1f565b610c95565b34801561047f57600080fd5b50610227610ce2565b61028c610496366004611d1f565b610cf1565b3480156104a757600080fd5b5061028c6104b6366004611ef0565b610e5b565b3480156104c757600080fd5b506102a3600c5481565b3480156104dd57600080fd5b5061028c6104ec366004611f2e565b610f20565b3480156104fd57600080fd5b5061022761050c366004611d1f565b610fae565b34801561051d57600080fd5b5061028c61052c366004611fae565b611097565b34801561053d57600080fd5b5061022761113c565b34801561055257600080fd5b506101fd610561366004612023565b61115c565b34801561057257600080fd5b5061028c610581366004611dba565b61122c565b34801561059257600080fd5b5061028c6105a1366004611d4d565b6112fc565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060790612051565b80601f016020809104026020016040519081016040528092919081815260200182805461063390612051565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072f82610a82565b9050806001600160a01b0316836001600160a01b0316141561079d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ff565b336001600160a01b03821614806107b957506107b9813361115c565b61082b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ff565b61083583836113d0565b505050565b600061084560085490565b905090565b610854338261143e565b6108c65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ff565b61083583838361150d565b6006546001600160a01b031633146109195760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600c55565b61083583838360405180602001604052806000815250610f20565b6060600061094683610b5a565b67ffffffffffffffff81111561095e5761095e611e1b565b604051908082528060200260200182016040528015610987578160200160208202803683370190505b5090506000805b600854811015610a1a576000818152600260205260409020546001600160a01b0316151580156109d75750846001600160a01b03166109cc82610a82565b6001600160a01b0316145b15610a0857808383815181106109ef576109ef61208c565b6020908102919091010152610a056001836120b8565b91505b80610a12816120d0565b91505061098e565b50909392505050565b6006546001600160a01b03163314610a6b5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b8051610a7e90600d906020840190611be8565b5050565b6000818152600260205260408120546001600160a01b0316806105f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106ff565b6006546001600160a01b03163314610b555760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600b55565b60006001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106ff565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c3c5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b610c4660006116c1565b565b6006546001600160a01b03163314610c905760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600a55565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600955565b60606001805461060790612051565b600a5415801590610d045750600a544210155b610d505760405162461bcd60e51b815260206004820152601660248201527f53616c65206973206e6f7420616374697665207965740000000000000000000060448201526064016106ff565b3460095482610d5f91906120eb565b14610dac5760405162461bcd60e51b815260206004820152601a60248201527f45746865722076616c7565206973206e6f7420636f727265637400000000000060448201526064016106ff565b600b54600c5482610dbc60085490565b610dc691906120b8565b610dd091906120b8565b1115610e1e5760405162461bcd60e51b815260206004820152600960248201527f536f6c64206f757421000000000000000000000000000000000000000000000060448201526064016106ff565b60005b81811015610a7e57610e3b33610e3660085490565b611713565b610e49600880546001019055565b80610e53816120d0565b915050610e21565b6001600160a01b038216331415610eb45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ff565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2a338361143e565b610f9c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ff565b610fa88484848461172d565b50505050565b6000818152600260205260409020546060906001600160a01b031661103b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106ff565b60006110456117ab565b905060008151116110655760405180602001604052806000815250611090565b8061106f846117ba565b60405160200161108092919061210a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110df5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b60005b818110156108355761111c8383838181106110ff576110ff61208c565b90506020020160208101906111149190611dba565b600854611713565b61112a600880546001019055565b80611134816120d0565b9150506110e2565b606060405180608001604052806042815260200161220560429139905090565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156111a957600080fd5b505afa1580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190612139565b6001600160a01b031614156111fa5760019150506105f2565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146112745760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b6001600160a01b0381166112f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ff565b6112f9816116c1565b50565b6006546001600160a01b031633146113445760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b6001600160a01b03821661139a5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642061646472657373000000000000000000000000000000000060448201526064016106ff565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610835573d6000803e3d6000fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140582610a82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ff565b60006114c283610a82565b9050806001600160a01b0316846001600160a01b031614806114fd5750836001600160a01b03166114f28461068a565b6001600160a01b0316145b806112245750611224818561115c565b826001600160a01b031661152082610a82565b6001600160a01b03161461159c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106ff565b6001600160a01b0382166115fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6116096000826113d0565b6001600160a01b0383166000908152600360205260408120805460019290611632908490612156565b90915550506001600160a01b03821660009081526003602052604081208054600192906116609084906120b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a7e8282604051806020016040528060008152506118d0565b61173884848461150d565b6117448484848461194e565b610fa85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b6060600d805461060790612051565b6060816117de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180857806117f2816120d0565b91506118019050600a83612183565b91506117e2565b60008167ffffffffffffffff81111561182357611823611e1b565b6040519080825280601f01601f19166020018201604052801561184d576020820181803683370190505b5090505b841561122457611862600183612156565b915061186f600a86612197565b61187a9060306120b8565b60f81b81838151811061188f5761188f61208c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118c9600a86612183565b9450611851565b6118da8383611aa6565b6118e7600084848461194e565b6108355760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b60006001600160a01b0384163b15611a9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119929033908990889088906004016121ab565b602060405180830381600087803b1580156119ac57600080fd5b505af19250505080156119dc575060408051601f3d908101601f191682019092526119d9918101906121e7565b60015b611a81573d808015611a0a576040519150601f19603f3d011682016040523d82523d6000602084013e611a0f565b606091505b508051611a795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611224565b506001949350505050565b6001600160a01b038216611afc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ff565b6000818152600260205260409020546001600160a01b031615611b615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ff565b6001600160a01b0382166000908152600360205260408120805460019290611b8a9084906120b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bf490612051565b90600052602060002090601f016020900481019282611c165760008555611c5c565b82601f10611c2f57805160ff1916838001178555611c5c565b82800160010185558215611c5c579182015b82811115611c5c578251825591602001919060010190611c41565b50611c68929150611c6c565b5090565b5b80821115611c685760008155600101611c6d565b6001600160e01b0319811681146112f957600080fd5b600060208284031215611ca957600080fd5b813561109081611c81565b60005b83811015611ccf578181015183820152602001611cb7565b83811115610fa85750506000910152565b60008151808452611cf8816020860160208601611cb4565b601f01601f19169290920160200192915050565b6020815260006110906020830184611ce0565b600060208284031215611d3157600080fd5b5035919050565b6001600160a01b03811681146112f957600080fd5b60008060408385031215611d6057600080fd5b8235611d6b81611d38565b946020939093013593505050565b600080600060608486031215611d8e57600080fd5b8335611d9981611d38565b92506020840135611da981611d38565b929592945050506040919091013590565b600060208284031215611dcc57600080fd5b813561109081611d38565b6020808252825182820181905260009190848201906040850190845b81811015611e0f57835183529284019291840191600101611df3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4c57611e4c611e1b565b604051601f8501601f19908116603f01168101908282118183101715611e7457611e74611e1b565b81604052809350858152868686011115611e8d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb957600080fd5b813567ffffffffffffffff811115611ed057600080fd5b8201601f81018413611ee157600080fd5b61122484823560208401611e31565b60008060408385031215611f0357600080fd5b8235611f0e81611d38565b915060208301358015158114611f2357600080fd5b809150509250929050565b60008060008060808587031215611f4457600080fd5b8435611f4f81611d38565b93506020850135611f5f81611d38565b925060408501359150606085013567ffffffffffffffff811115611f8257600080fd5b8501601f81018713611f9357600080fd5b611fa287823560208401611e31565b91505092959194509250565b60008060208385031215611fc157600080fd5b823567ffffffffffffffff80821115611fd957600080fd5b818501915085601f830112611fed57600080fd5b813581811115611ffc57600080fd5b8660208260051b850101111561201157600080fd5b60209290920196919550909350505050565b6000806040838503121561203657600080fd5b823561204181611d38565b91506020830135611f2381611d38565b600181811c9082168061206557607f821691505b6020821081141561208657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156120cb576120cb6120a2565b500190565b60006000198214156120e4576120e46120a2565b5060010190565b6000816000190483118215151615612105576121056120a2565b500290565b6000835161211c818460208801611cb4565b835190830190612130818360208801611cb4565b01949350505050565b60006020828403121561214b57600080fd5b815161109081611d38565b600082821015612168576121686120a2565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826121925761219261216d565b500490565b6000826121a6576121a661216d565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121dd6080830184611ce0565b9695505050505050565b6000602082840312156121f957600080fd5b815161109081611c8156fe697066733a2f2f6261667962656967706d636865646462627437756e32373435667a706f693372337673786e6a68747a6a35706f6f76736c656467623532716433694f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000809000a000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000623390e8000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569667a6876683263337978696c32626f78783636766f64797772367973347a75786337713363697168326a64753469686f6e336e692f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063aa592f2511610095578063e8a3d48511610064578063e8a3d48514610531578063e985e9c514610546578063f2fde38b14610566578063f3fef3a31461058657600080fd5b8063aa592f25146104bb578063b88d4fde146104d1578063c87b56dd146104f1578063d682ed861461051157600080fd5b806391b7f5ed116100d157806391b7f5ed1461045357806395d89b4114610473578063a0712d6814610488578063a22cb4651461049b57600080fd5b8063715018a6146103ea57806382d95df5146103ff5780638d859f3e1461041f5780638da5cb5b1461043557600080fd5b806332cb6b0c1161017a57806355f804b31161014957806355f804b31461036a5780636352211e1461038a5780636f8b44b0146103aa57806370a08231146103ca57600080fd5b806332cb6b0c146102f1578063372c65331461030757806342842e0e1461031d578063438b63001461033d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780632d6e71b6146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c97565b6105a6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f8565b6040516102099190611d0c565b34801561024057600080fd5b5061025461024f366004611d1f565b61068a565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d4d565b610724565b005b34801561029a57600080fd5b506102a361083a565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611d79565b61084a565b3480156102dd57600080fd5b5061028c6102ec366004611d1f565b6108d1565b3480156102fd57600080fd5b506102a3600b5481565b34801561031357600080fd5b506102a3600a5481565b34801561032957600080fd5b5061028c610338366004611d79565b61091e565b34801561034957600080fd5b5061035d610358366004611dba565b610939565b6040516102099190611dd7565b34801561037657600080fd5b5061028c610385366004611ea7565b610a23565b34801561039657600080fd5b506102546103a5366004611d1f565b610a82565b3480156103b657600080fd5b5061028c6103c5366004611d1f565b610b0d565b3480156103d657600080fd5b506102a36103e5366004611dba565b610b5a565b3480156103f657600080fd5b5061028c610bf4565b34801561040b57600080fd5b5061028c61041a366004611d1f565b610c48565b34801561042b57600080fd5b506102a360095481565b34801561044157600080fd5b506006546001600160a01b0316610254565b34801561045f57600080fd5b5061028c61046e366004611d1f565b610c95565b34801561047f57600080fd5b50610227610ce2565b61028c610496366004611d1f565b610cf1565b3480156104a757600080fd5b5061028c6104b6366004611ef0565b610e5b565b3480156104c757600080fd5b506102a3600c5481565b3480156104dd57600080fd5b5061028c6104ec366004611f2e565b610f20565b3480156104fd57600080fd5b5061022761050c366004611d1f565b610fae565b34801561051d57600080fd5b5061028c61052c366004611fae565b611097565b34801561053d57600080fd5b5061022761113c565b34801561055257600080fd5b506101fd610561366004612023565b61115c565b34801561057257600080fd5b5061028c610581366004611dba565b61122c565b34801561059257600080fd5b5061028c6105a1366004611d4d565b6112fc565b60006001600160e01b031982166380ac58cd60e01b14806105d757506001600160e01b03198216635b5e139f60e01b145b806105f257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461060790612051565b80601f016020809104026020016040519081016040528092919081815260200182805461063390612051565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072f82610a82565b9050806001600160a01b0316836001600160a01b0316141561079d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ff565b336001600160a01b03821614806107b957506107b9813361115c565b61082b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ff565b61083583836113d0565b505050565b600061084560085490565b905090565b610854338261143e565b6108c65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ff565b61083583838361150d565b6006546001600160a01b031633146109195760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600c55565b61083583838360405180602001604052806000815250610f20565b6060600061094683610b5a565b67ffffffffffffffff81111561095e5761095e611e1b565b604051908082528060200260200182016040528015610987578160200160208202803683370190505b5090506000805b600854811015610a1a576000818152600260205260409020546001600160a01b0316151580156109d75750846001600160a01b03166109cc82610a82565b6001600160a01b0316145b15610a0857808383815181106109ef576109ef61208c565b6020908102919091010152610a056001836120b8565b91505b80610a12816120d0565b91505061098e565b50909392505050565b6006546001600160a01b03163314610a6b5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b8051610a7e90600d906020840190611be8565b5050565b6000818152600260205260408120546001600160a01b0316806105f25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106ff565b6006546001600160a01b03163314610b555760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600b55565b60006001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106ff565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c3c5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b610c4660006116c1565b565b6006546001600160a01b03163314610c905760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600a55565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b600955565b60606001805461060790612051565b600a5415801590610d045750600a544210155b610d505760405162461bcd60e51b815260206004820152601660248201527f53616c65206973206e6f7420616374697665207965740000000000000000000060448201526064016106ff565b3460095482610d5f91906120eb565b14610dac5760405162461bcd60e51b815260206004820152601a60248201527f45746865722076616c7565206973206e6f7420636f727265637400000000000060448201526064016106ff565b600b54600c5482610dbc60085490565b610dc691906120b8565b610dd091906120b8565b1115610e1e5760405162461bcd60e51b815260206004820152600960248201527f536f6c64206f757421000000000000000000000000000000000000000000000060448201526064016106ff565b60005b81811015610a7e57610e3b33610e3660085490565b611713565b610e49600880546001019055565b80610e53816120d0565b915050610e21565b6001600160a01b038216331415610eb45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ff565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f2a338361143e565b610f9c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ff565b610fa88484848461172d565b50505050565b6000818152600260205260409020546060906001600160a01b031661103b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106ff565b60006110456117ab565b905060008151116110655760405180602001604052806000815250611090565b8061106f846117ba565b60405160200161108092919061210a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110df5760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b60005b818110156108355761111c8383838181106110ff576110ff61208c565b90506020020160208101906111149190611dba565b600854611713565b61112a600880546001019055565b80611134816120d0565b9150506110e2565b606060405180608001604052806042815260200161220560429139905090565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156111a957600080fd5b505afa1580156111bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e19190612139565b6001600160a01b031614156111fa5760019150506105f2565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b031633146112745760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b6001600160a01b0381166112f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ff565b6112f9816116c1565b50565b6006546001600160a01b031633146113445760405162461bcd60e51b8152602060048201819052602482015260008051602061224783398151915260448201526064016106ff565b6001600160a01b03821661139a5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642061646472657373000000000000000000000000000000000060448201526064016106ff565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610835573d6000803e3d6000fd5b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140582610a82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ff565b60006114c283610a82565b9050806001600160a01b0316846001600160a01b031614806114fd5750836001600160a01b03166114f28461068a565b6001600160a01b0316145b806112245750611224818561115c565b826001600160a01b031661152082610a82565b6001600160a01b03161461159c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106ff565b6001600160a01b0382166115fe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ff565b6116096000826113d0565b6001600160a01b0383166000908152600360205260408120805460019290611632908490612156565b90915550506001600160a01b03821660009081526003602052604081208054600192906116609084906120b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a7e8282604051806020016040528060008152506118d0565b61173884848461150d565b6117448484848461194e565b610fa85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b6060600d805461060790612051565b6060816117de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180857806117f2816120d0565b91506118019050600a83612183565b91506117e2565b60008167ffffffffffffffff81111561182357611823611e1b565b6040519080825280601f01601f19166020018201604052801561184d576020820181803683370190505b5090505b841561122457611862600183612156565b915061186f600a86612197565b61187a9060306120b8565b60f81b81838151811061188f5761188f61208c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118c9600a86612183565b9450611851565b6118da8383611aa6565b6118e7600084848461194e565b6108355760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b60006001600160a01b0384163b15611a9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119929033908990889088906004016121ab565b602060405180830381600087803b1580156119ac57600080fd5b505af19250505080156119dc575060408051601f3d908101601f191682019092526119d9918101906121e7565b60015b611a81573d808015611a0a576040519150601f19603f3d011682016040523d82523d6000602084013e611a0f565b606091505b508051611a795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016106ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611224565b506001949350505050565b6001600160a01b038216611afc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ff565b6000818152600260205260409020546001600160a01b031615611b615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ff565b6001600160a01b0382166000908152600360205260408120805460019290611b8a9084906120b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bf490612051565b90600052602060002090601f016020900481019282611c165760008555611c5c565b82601f10611c2f57805160ff1916838001178555611c5c565b82800160010185558215611c5c579182015b82811115611c5c578251825591602001919060010190611c41565b50611c68929150611c6c565b5090565b5b80821115611c685760008155600101611c6d565b6001600160e01b0319811681146112f957600080fd5b600060208284031215611ca957600080fd5b813561109081611c81565b60005b83811015611ccf578181015183820152602001611cb7565b83811115610fa85750506000910152565b60008151808452611cf8816020860160208601611cb4565b601f01601f19169290920160200192915050565b6020815260006110906020830184611ce0565b600060208284031215611d3157600080fd5b5035919050565b6001600160a01b03811681146112f957600080fd5b60008060408385031215611d6057600080fd5b8235611d6b81611d38565b946020939093013593505050565b600080600060608486031215611d8e57600080fd5b8335611d9981611d38565b92506020840135611da981611d38565b929592945050506040919091013590565b600060208284031215611dcc57600080fd5b813561109081611d38565b6020808252825182820181905260009190848201906040850190845b81811015611e0f57835183529284019291840191600101611df3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e4c57611e4c611e1b565b604051601f8501601f19908116603f01168101908282118183101715611e7457611e74611e1b565b81604052809350858152868686011115611e8d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611eb957600080fd5b813567ffffffffffffffff811115611ed057600080fd5b8201601f81018413611ee157600080fd5b61122484823560208401611e31565b60008060408385031215611f0357600080fd5b8235611f0e81611d38565b915060208301358015158114611f2357600080fd5b809150509250929050565b60008060008060808587031215611f4457600080fd5b8435611f4f81611d38565b93506020850135611f5f81611d38565b925060408501359150606085013567ffffffffffffffff811115611f8257600080fd5b8501601f81018713611f9357600080fd5b611fa287823560208401611e31565b91505092959194509250565b60008060208385031215611fc157600080fd5b823567ffffffffffffffff80821115611fd957600080fd5b818501915085601f830112611fed57600080fd5b813581811115611ffc57600080fd5b8660208260051b850101111561201157600080fd5b60209290920196919550909350505050565b6000806040838503121561203657600080fd5b823561204181611d38565b91506020830135611f2381611d38565b600181811c9082168061206557607f821691505b6020821081141561208657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156120cb576120cb6120a2565b500190565b60006000198214156120e4576120e46120a2565b5060010190565b6000816000190483118215151615612105576121056120a2565b500290565b6000835161211c818460208801611cb4565b835190830190612130818360208801611cb4565b01949350505050565b60006020828403121561214b57600080fd5b815161109081611d38565b600082821015612168576121686120a2565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826121925761219261216d565b500490565b6000826121a6576121a661216d565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121dd6080830184611ce0565b9695505050505050565b6000602082840312156121f957600080fd5b815161109081611c8156fe697066733a2f2f6261667962656967706d636865646462627437756e32373435667a706f693372337673786e6a68747a6a35706f6f76736c656467623532716433694f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000809000a

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000623390e8000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569667a6876683263337978696c32626f78783636766f64797772367973347a75786337713363697168326a64753469686f6e336e692f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _price (uint256): 500000000000000000
Arg [2] : _startDate (uint256): 1647546600
Arg [3] : _maxSupply (uint256): 333
Arg [4] : _reserved (uint256): 25
Arg [5] : _baseUri (string): ipfs://bafybeifzhvh2c3yxil2boxx66vodywr6ys4zuxc7q3ciqh2jdu4ihon3ni/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [2] : 00000000000000000000000000000000000000000000000000000000623390e8
Arg [3] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 697066733a2f2f62616679626569667a6876683263337978696c32626f787836
Arg [8] : 36766f64797772367973347a75786337713363697168326a64753469686f6e33
Arg [9] : 6e692f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

253:3525:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496:300:1;;;;;;;;;;-1:-1:-1;1496:300:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;1496:300:1;;;;;;;;2414:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;;;;;-1:-1:-1;3925:217:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:14;;;1674:74;;1662:2;1647:18;3925:217:1;1528:226:14;3463:401:1;;;;;;;;;;-1:-1:-1;3463:401:1;;;;;:::i;:::-;;:::i;:::-;;1789:99:12;;;;;;;;;;;;;:::i;:::-;;;2384:25:14;;;2372:2;2357:18;1789:99:12;2238:177:14;4789:330:1;;;;;;;;;;-1:-1:-1;4789:330:1;;;;;:::i;:::-;;:::i;2555:94:12:-;;;;;;;;;;-1:-1:-1;2555:94:12;;;;;:::i;:::-;;:::i;476:25::-;;;;;;;;;;;;;;;;445;;;;;;;;;;;;;;;;5185:179:1;;;;;;;;;;-1:-1:-1;5185:179:1;;;;;:::i;:::-;;:::i;2655:429:12:-;;;;;;;;;;-1:-1:-1;2655:429:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2155:96::-;;;;;;;;;;-1:-1:-1;2155:96:12;;;;;:::i;:::-;;:::i;2117:235:1:-;;;;;;;;;;-1:-1:-1;2117:235:1;;;;;:::i;:::-;;:::i;2450:99:12:-;;;;;;;;;;-1:-1:-1;2450:99:12;;;;;:::i;:::-;;:::i;1855:205:1:-;;;;;;;;;;-1:-1:-1;1855:205:1;;;;;:::i;:::-;;:::i;1605:92:0:-;;;;;;;;;;;;;:::i;2345:99:12:-;;;;;;;;;;-1:-1:-1;2345:99:12;;;;;:::i;:::-;;:::i;419:20::-;;;;;;;;;;;;;;;;973:85:0;;;;;;;;;;-1:-1:-1;1045:6:0;;-1:-1:-1;;;;;1045:6:0;973:85;;2257:82:12;;;;;;;;;;-1:-1:-1;2257:82:12;;;;;:::i;:::-;;:::i;2576:102:1:-;;;;;;;;;;;;;:::i;1145:416:12:-;;;;;;:::i;:::-;;:::i;4209:290:1:-;;;;;;;;;;-1:-1:-1;4209:290:1;;;;;:::i;:::-;;:::i;507:23:12:-;;;;;;;;;;;;;;;;5430:320:1;;;;;;;;;;-1:-1:-1;5430:320:1;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;;;;;-1:-1:-1;2744:329:1;;;;;:::i;:::-;;:::i;1567:216:12:-;;;;;;;;;;-1:-1:-1;1567:216:12;;;;;:::i;:::-;;:::i;1894:151::-;;;;;;;;;;;;;:::i;3380:396::-;;;;;;;;;;-1:-1:-1;3380:396:12;;;;;:::i;:::-;;:::i;1846:189:0:-;;;;;;;;;;-1:-1:-1;1846:189:0;;;;;:::i;:::-;;:::i;3090:163:12:-;;;;;;;;;;-1:-1:-1;3090:163:12;;;;;:::i;:::-;;:::i;1496:300:1:-;1598:4;-1:-1:-1;;;;;;1633:40:1;;-1:-1:-1;;;1633:40:1;;:104;;-1:-1:-1;;;;;;;1689:48:1;;-1:-1:-1;;;1689:48:1;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:9;;;1753:36:1;1614:175;1496:300;-1:-1:-1;;1496:300:1:o;2414:98::-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:1;4020:73;;;;-1:-1:-1;;;4020:73:1;;8144:2:14;4020:73:1;;;8126:21:14;8183:2;8163:18;;;8156:30;8222:34;8202:18;;;8195:62;-1:-1:-1;;;8273:18:14;;;8266:42;8325:19;;4020:73:1;;;;;;;;;-1:-1:-1;4111:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:1;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:1;:2;-1:-1:-1;;;;;3600:11:1;;;3592:57;;;;-1:-1:-1;;;3592:57:1;;8557:2:14;3592:57:1;;;8539:21:14;8596:2;8576:18;;;8569:30;8635:34;8615:18;;;8608:62;-1:-1:-1;;;8686:18:14;;;8679:31;8727:19;;3592:57:1;8355:397:14;3592:57:1;666:10:6;-1:-1:-1;;;;;3681:21:1;;;;:62;;-1:-1:-1;3706:37:1;3723:5;666:10:6;3380:396:12;:::i;3706:37:1:-;3660:165;;;;-1:-1:-1;;;3660:165:1;;8959:2:14;3660:165:1;;;8941:21:14;8998:2;8978:18;;;8971:30;9037:34;9017:18;;;9010:62;9108:26;9088:18;;;9081:54;9152:19;;3660:165:1;8757:420:14;3660:165:1;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;1789:99:12:-;1833:7;1859:22;:12;864:14:7;;773:112;1859:22:12;1852:29;;1789:99;:::o;4789:330:1:-;4978:41;666:10:6;5011:7:1;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:1;;9384:2:14;4970:103:1;;;9366:21:14;9423:2;9403:18;;;9396:30;9462:34;9442:18;;;9435:62;9533:19;9513:18;;;9506:47;9570:19;;4970:103:1;9182:413:14;4970:103:1;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;2555:94:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;2622:8:12::1;:20:::0;2555:94::o;5185:179:1:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;2655:429:12:-;2714:16;2742:23;2782:16;2792:5;2782:9;:16::i;:::-;2768:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2768:31:12;;2742:57;;2809:9;2838:15;2833:222;2869:12;864:14:7;2859:7:12;:32;2833:222;;;7287:4:1;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:1;:30;;2922:45:12;;;;;2962:5;-1:-1:-1;;;;;2942:25:12;:16;2950:7;2942;:16::i;:::-;-1:-1:-1;;;;;2942:25:12;;2922:45;2918:127;;;2999:7;2987:6;2994:1;2987:9;;;;;;;;:::i;:::-;;;;;;;;;;:19;3024:6;3029:1;3024:6;;:::i;:::-;;;2918:127;2893:9;;;;:::i;:::-;;;;2833:222;;;-1:-1:-1;3071:6:12;;2655:429;-1:-1:-1;;;2655:429:12:o;2155:96::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;2226:18:12;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2155:96:::0;:::o;2117:235:1:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:1;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:1;;10700:2:14;2250:73:1;;;10682:21:14;10739:2;10719:18;;;10712:30;10778:34;10758:18;;;10751:62;10849:11;10829:18;;;10822:39;10878:19;;2250:73:1;10498:405:14;2450:99:12;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;2519:10:12::1;:23:::0;2450:99::o;1855:205:1:-;1927:7;-1:-1:-1;;;;;1954:19:1;;1946:74;;;;-1:-1:-1;;;1946:74:1;;11110:2:14;1946:74:1;;;11092:21:14;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;11259:12;11239:18;;;11232:40;11289:19;;1946:74:1;10908:406:14;1946:74:1;-1:-1:-1;;;;;;2037:16:1;;;;;:9;:16;;;;;;;1855:205::o;1605:92:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2345:99:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;2414:10:12::1;:23:::0;2345:99::o;2257:82::-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;2318:5:12::1;:14:::0;2257:82::o;2576:102:1:-;2632:13;2664:7;2657:14;;;;;:::i;1145:416:12:-;608:10;;:15;;;;:48;;;646:10;;627:15;:29;;608:48;600:83;;;;-1:-1:-1;;;600:83:12;;11521:2:14;600:83:12;;;11503:21:14;11560:2;11540:18;;;11533:30;11599:24;11579:18;;;11572:52;11641:18;;600:83:12;11319:346:14;600:83:12;1255:9:::1;1246:5;;1229:14;:22;;;;:::i;:::-;:35;1221:74;;;::::0;-1:-1:-1;;;1221:74:12;;12045:2:14;1221:74:12::1;::::0;::::1;12027:21:14::0;12084:2;12064:18;;;12057:30;12123:28;12103:18;;;12096:56;12169:18;;1221:74:12::1;11843:350:14::0;1221:74:12::1;1367:10;;1355:8;;1338:14;1313:22;:12;864:14:7::0;;773:112;1313:22:12::1;:39;;;;:::i;:::-;:50;;;;:::i;:::-;:64;;1305:86;;;::::0;-1:-1:-1;;;1305:86:12;;12400:2:14;1305:86:12::1;::::0;::::1;12382:21:14::0;12439:1;12419:18;;;12412:29;12477:11;12457:18;;;12450:39;12506:18;;1305:86:12::1;12198:332:14::0;1305:86:12::1;1407:9;1402:153;1426:14;1422:1;:18;1402:153;;;1461:45;1471:10;1483:22;:12;864:14:7::0;;773:112;1483:22:12::1;1461:9;:45::i;:::-;1520:24;:12;978:19:7::0;;996:1;978:19;;;891:123;1520:24:12::1;1442:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1402:153;;4209:290:1::0;-1:-1:-1;;;;;4311:24:1;;666:10:6;4311:24:1;;4303:62;;;;-1:-1:-1;;;4303:62:1;;12737:2:14;4303:62:1;;;12719:21:14;12776:2;12756:18;;;12749:30;12815:27;12795:18;;;12788:55;12860:18;;4303:62:1;12535:349:14;4303:62:1;666:10:6;4376:32:1;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:1;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:1;;;;;;;;;;4444:48;;540:41:14;;;4376:42:1;;666:10:6;4444:48:1;;513:18:14;4444:48:1;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:6;5632:7:1;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:1;;9384:2:14;5591:103:1;;;9366:21:14;9423:2;9403:18;;;9396:30;9462:34;9442:18;;;9435:62;9533:19;9513:18;;;9506:47;9570:19;;5591:103:1;9182:413:14;5591:103:1;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:1;2842:76;;;;-1:-1:-1;;;2842:76:1;;13091:2:14;2842:76:1;;;13073:21:14;13130:2;13110:18;;;13103:30;13169:34;13149:18;;;13142:62;13240:17;13220:18;;;13213:45;13275:19;;2842:76:1;12889:411:14;2842:76:1;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:1:o;1567:216:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;1639:9:12::1;1634:143;1654:13:::0;;::::1;1634:143;;;1688:40;1698:2;;1701:1;1698:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1705:12;864:14:7::0;1461:9:12::1;:45::i;1688:40::-;1742:24;:12;978:19:7::0;;996:1;978:19;;;891:123;1742:24:12::1;1669:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1634:143;;1894:151:::0;1938:13;1963:75;;;;;;;;;;;;;;;;;;;1894:151;:::o;3380:396::-;3591:20;;3634:28;;-1:-1:-1;;;3634:28:12;;-1:-1:-1;;;;;1692:55:14;;;3634:28:12;;;1674:74:14;3469:4:12;;3591:20;;;3626:49;;;;3591:20;;3634:21;;1647:18:14;;3634:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3626:49:12;;3622:91;;;3698:4;3691:11;;;;;3622:91;-1:-1:-1;;;;;4685:25:1;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;3730:39:12;3723:46;3380:396;-1:-1:-1;;;;3380:396:12:o;1846:189:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;-1:-1:-1;;;;;1934:22:0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:0;;14267:2:14;1926:73:0::1;::::0;::::1;14249:21:14::0;14306:2;14286:18;;;14279:30;14345:34;14325:18;;;14318:62;14416:8;14396:18;;;14389:36;14442:19;;1926:73:0::1;14065:402:14::0;1926:73:0::1;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;3090:163:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:6;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;9802:2:14;1177:68:0;;;9784:21:14;;;9821:18;;;9814:30;-1:-1:-1;;;;;;;;;;;9860:18:14;;;9853:62;9932:18;;1177:68:0;9600:356:14;1177:68:0;-1:-1:-1;;;;;3179:18:12;::::1;3171:46;;;::::0;-1:-1:-1;;;3171:46:12;;14674:2:14;3171:46:12::1;::::0;::::1;14656:21:14::0;14713:2;14693:18;;;14686:30;14752:17;14732:18;;;14725:45;14787:18;;3171:46:12::1;14472:339:14::0;3171:46:12::1;3227:19;::::0;-1:-1:-1;;;;;3227:11:12;::::1;::::0;:19;::::1;;;::::0;3239:6;;3227:19:::1;::::0;;;3239:6;3227:11;:19;::::1;;;;;;;;;;;;;::::0;::::1;;;;11073:171:1::0;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:1;-1:-1:-1;;;;;11147:29:1;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:1;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:1;7614:73;;;;-1:-1:-1;;;7614:73:1;;15018:2:14;7614:73:1;;;15000:21:14;15057:2;15037:18;;;15030:30;15096:34;15076:18;;;15069:62;-1:-1:-1;;;15147:18:14;;;15140:42;15199:19;;7614:73:1;14816:408:14;7614:73:1;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:1;:7;-1:-1:-1;;;;;7754:16:1;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:1;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:1;;7754:51;:87;;;;7809:32;7826:5;7833:7;7809:16;:32::i;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:1;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:1;;10521:85;;;;-1:-1:-1;;;10521:85:1;;15431:2:14;10521:85:1;;;15413:21:14;15470:2;15450:18;;;15443:30;15509:34;15489:18;;;15482:62;15580:11;15560:18;;;15553:39;15609:19;;10521:85:1;15229:405:14;10521:85:1;-1:-1:-1;;;;;10624:16:1;;10616:65;;;;-1:-1:-1;;;10616:65:1;;15841:2:14;10616:65:1;;;15823:21:14;15880:2;15860:18;;;15853:30;15919:34;15899:18;;;15892:62;-1:-1:-1;;;15970:18:14;;;15963:34;16014:19;;10616:65:1;15639:400:14;10616:65:1;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:1;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:1;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:1;-1:-1:-1;;;;;10891:21:1;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2041:169:0:-;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;-1:-1:-1;;;;;;2131:17:0;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;8179:108:1:-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:1;;16376:2:14;6801:111:1;;;16358:21:14;16415:2;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;-1:-1:-1;;;16505:18:14;;;16498:48;16563:19;;6801:111:1;16174:414:14;2051:98:12;2103:13;2135:7;2128:14;;;;;:::i;275:703:8:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:8;;;;;;;;;;;;-1:-1:-1;;;574:10:8;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:8;;-1:-1:-1;720:2:8;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:8;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:8;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;919:11:8;928:2;919:11;;:::i;:::-;;;791:150;;8508:311:1;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:1;;16376:2:14;8661:151:1;;;16358:21:14;16415:2;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;-1:-1:-1;;;16505:18:14;;;16498:48;16563:19;;8661:151:1;16174:414:14;11797:778:1;11947:4;-1:-1:-1;;;;;11967:13:1;;1034:20:5;1080:8;11963:606:1;;12002:72;;-1:-1:-1;;;12002:72:1;;-1:-1:-1;;;;;12002:36:1;;;;;:72;;666:10:6;;12053:4:1;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:1;;;;;;;;-1:-1:-1;;12002:72:1;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:1;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:1;;16376:2:14;12283:60:1;;;16358:21:14;16415:2;16395:18;;;16388:30;16454:34;16434:18;;;16427:62;-1:-1:-1;;;16505:18:14;;;16498:48;16563:19;;12283:60:1;16174:414:14;12237:266:1;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:1;-1:-1:-1;;;12124:51:1;;-1:-1:-1;12117:58:1;;11963:606;-1:-1:-1;12554:4:1;11797:778;;;;;;:::o;9141:372::-;-1:-1:-1;;;;;9220:16:1;;9212:61;;;;-1:-1:-1;;;9212:61:1;;17940:2:14;9212:61:1;;;17922:21:14;;;17959:18;;;17952:30;18018:34;17998:18;;;17991:62;18070:18;;9212:61:1;17738:356:14;9212:61:1;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:1;:30;9283:58;;;;-1:-1:-1;;;9283:58:1;;18301:2:14;9283:58:1;;;18283:21:14;18340:2;18320:18;;;18313:30;18379;18359:18;;;18352:58;18427:18;;9283:58:1;18099:352:14;9283:58:1;-1:-1:-1;;;;;9408:13:1;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:1;-1:-1:-1;;;;;9436:21:1;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:14;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:14;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:14:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:14;;1343:180;-1:-1:-1;1343:180:14:o;1759:154::-;-1:-1:-1;;;;;1838:5:14;1834:54;1827:5;1824:65;1814:93;;1903:1;1900;1893:12;1918:315;1986:6;1994;2047:2;2035:9;2026:7;2022:23;2018:32;2015:52;;;2063:1;2060;2053:12;2015:52;2102:9;2089:23;2121:31;2146:5;2121:31;:::i;:::-;2171:5;2223:2;2208:18;;;;2195:32;;-1:-1:-1;;;1918:315:14:o;2420:456::-;2497:6;2505;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:14;2732:18;;2719:32;2760:33;2719:32;2760:33;:::i;:::-;2420:456;;2812:7;;-1:-1:-1;;;2866:2:14;2851:18;;;;2838:32;;2420:456::o;2881:247::-;2940:6;2993:2;2981:9;2972:7;2968:23;2964:32;2961:52;;;3009:1;3006;2999:12;2961:52;3048:9;3035:23;3067:31;3092:5;3067:31;:::i;3133:632::-;3304:2;3356:21;;;3426:13;;3329:18;;;3448:22;;;3275:4;;3304:2;3527:15;;;;3501:2;3486:18;;;3275:4;3570:169;3584:6;3581:1;3578:13;3570:169;;;3645:13;;3633:26;;3714:15;;;;3679:12;;;;3606:1;3599:9;3570:169;;;-1:-1:-1;3756:3:14;;3133:632;-1:-1:-1;;;;;;3133:632:14:o;3770:127::-;3831:10;3826:3;3822:20;3819:1;3812:31;3862:4;3859:1;3852:15;3886:4;3883:1;3876:15;3902:632;3967:5;3997:18;4038:2;4030:6;4027:14;4024:40;;;4044:18;;:::i;:::-;4119:2;4113:9;4087:2;4173:15;;-1:-1:-1;;4169:24:14;;;4195:2;4165:33;4161:42;4149:55;;;4219:18;;;4239:22;;;4216:46;4213:72;;;4265:18;;:::i;:::-;4305:10;4301:2;4294:22;4334:6;4325:15;;4364:6;4356;4349:22;4404:3;4395:6;4390:3;4386:16;4383:25;4380:45;;;4421:1;4418;4411:12;4380:45;4471:6;4466:3;4459:4;4451:6;4447:17;4434:44;4526:1;4519:4;4510:6;4502;4498:19;4494:30;4487:41;;;;3902:632;;;;;:::o;4539:451::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:14;;4887:1;4884;4877:12;4836:55;4910:74;4976:7;4971:2;4958:16;4953:2;4949;4945:11;4910:74;:::i;4995:416::-;5060:6;5068;5121:2;5109:9;5100:7;5096:23;5092:32;5089:52;;;5137:1;5134;5127:12;5089:52;5176:9;5163:23;5195:31;5220:5;5195:31;:::i;:::-;5245:5;-1:-1:-1;5302:2:14;5287:18;;5274:32;5344:15;;5337:23;5325:36;;5315:64;;5375:1;5372;5365:12;5315:64;5398:7;5388:17;;;4995:416;;;;;:::o;5416:795::-;5511:6;5519;5527;5535;5588:3;5576:9;5567:7;5563:23;5559:33;5556:53;;;5605:1;5602;5595:12;5556:53;5644:9;5631:23;5663:31;5688:5;5663:31;:::i;:::-;5713:5;-1:-1:-1;5770:2:14;5755:18;;5742:32;5783:33;5742:32;5783:33;:::i;:::-;5835:7;-1:-1:-1;5889:2:14;5874:18;;5861:32;;-1:-1:-1;5944:2:14;5929:18;;5916:32;5971:18;5960:30;;5957:50;;;6003:1;6000;5993:12;5957:50;6026:22;;6079:4;6071:13;;6067:27;-1:-1:-1;6057:55:14;;6108:1;6105;6098:12;6057:55;6131:74;6197:7;6192:2;6179:16;6174:2;6170;6166:11;6131:74;:::i;:::-;6121:84;;;5416:795;;;;;;;:::o;6216:615::-;6302:6;6310;6363:2;6351:9;6342:7;6338:23;6334:32;6331:52;;;6379:1;6376;6369:12;6331:52;6419:9;6406:23;6448:18;6489:2;6481:6;6478:14;6475:34;;;6505:1;6502;6495:12;6475:34;6543:6;6532:9;6528:22;6518:32;;6588:7;6581:4;6577:2;6573:13;6569:27;6559:55;;6610:1;6607;6600:12;6559:55;6650:2;6637:16;6676:2;6668:6;6665:14;6662:34;;;6692:1;6689;6682:12;6662:34;6745:7;6740:2;6730:6;6727:1;6723:14;6719:2;6715:23;6711:32;6708:45;6705:65;;;6766:1;6763;6756:12;6705:65;6797:2;6789:11;;;;;6819:6;;-1:-1:-1;6216:615:14;;-1:-1:-1;;;;6216:615:14:o;6836:388::-;6904:6;6912;6965:2;6953:9;6944:7;6940:23;6936:32;6933:52;;;6981:1;6978;6971:12;6933:52;7020:9;7007:23;7039:31;7064:5;7039:31;:::i;:::-;7089:5;-1:-1:-1;7146:2:14;7131:18;;7118:32;7159:33;7118:32;7159:33;:::i;7557:380::-;7636:1;7632:12;;;;7679;;;7700:61;;7754:4;7746:6;7742:17;7732:27;;7700:61;7807:2;7799:6;7796:14;7776:18;7773:38;7770:161;;;7853:10;7848:3;7844:20;7841:1;7834:31;7888:4;7885:1;7878:15;7916:4;7913:1;7906:15;7770:161;;7557:380;;;:::o;9961:127::-;10022:10;10017:3;10013:20;10010:1;10003:31;10053:4;10050:1;10043:15;10077:4;10074:1;10067:15;10093:127;10154:10;10149:3;10145:20;10142:1;10135:31;10185:4;10182:1;10175:15;10209:4;10206:1;10199:15;10225:128;10265:3;10296:1;10292:6;10289:1;10286:13;10283:39;;;10302:18;;:::i;:::-;-1:-1:-1;10338:9:14;;10225:128::o;10358:135::-;10397:3;-1:-1:-1;;10418:17:14;;10415:43;;;10438:18;;:::i;:::-;-1:-1:-1;10485:1:14;10474:13;;10358:135::o;11670:168::-;11710:7;11776:1;11772;11768:6;11764:14;11761:1;11758:21;11753:1;11746:9;11739:17;11735:45;11732:71;;;11783:18;;:::i;:::-;-1:-1:-1;11823:9:14;;11670:168::o;13305:470::-;13484:3;13522:6;13516:13;13538:53;13584:6;13579:3;13572:4;13564:6;13560:17;13538:53;:::i;:::-;13654:13;;13613:16;;;;13676:57;13654:13;13613:16;13710:4;13698:17;;13676:57;:::i;:::-;13749:20;;13305:470;-1:-1:-1;;;;13305:470:14:o;13780:280::-;13879:6;13932:2;13920:9;13911:7;13907:23;13903:32;13900:52;;;13948:1;13945;13938:12;13900:52;13980:9;13974:16;13999:31;14024:5;13999:31;:::i;16044:125::-;16084:4;16112:1;16109;16106:8;16103:34;;;16117:18;;:::i;:::-;-1:-1:-1;16154:9:14;;16044:125::o;16593:127::-;16654:10;16649:3;16645:20;16642:1;16635:31;16685:4;16682:1;16675:15;16709:4;16706:1;16699:15;16725:120;16765:1;16791;16781:35;;16796:18;;:::i;:::-;-1:-1:-1;16830:9:14;;16725:120::o;16850:112::-;16882:1;16908;16898:35;;16913:18;;:::i;:::-;-1:-1:-1;16947:9:14;;16850:112::o;16967:512::-;17161:4;-1:-1:-1;;;;;17271:2:14;17263:6;17259:15;17248:9;17241:34;17323:2;17315:6;17311:15;17306:2;17295:9;17291:18;17284:43;;17363:6;17358:2;17347:9;17343:18;17336:34;17406:3;17401:2;17390:9;17386:18;17379:31;17427:46;17468:3;17457:9;17453:19;17445:6;17427:46;:::i;:::-;17419:54;16967:512;-1:-1:-1;;;;;;16967:512:14:o;17484:249::-;17553:6;17606:2;17594:9;17585:7;17581:23;17577:32;17574:52;;;17622:1;17619;17612:12;17574:52;17654:9;17648:16;17673:30;17697:5;17673:30;:::i

Swarm Source

none
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.