ETH Price: $2,982.11 (+1.73%)
Gas: 1 Gwei

Token

Adorable Pandas (PANDAS)
 

Overview

Max Total Supply

1,318 PANDAS

Holders

501

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
avny.eth
Balance
3 PANDAS
0x982837e56aa01b63ac0721b845c840b71f580417
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:
AdorablePandas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: AdorablePandas.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.3;

import "./ERC721.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./Counters.sol";

/**
 * @title AdorablePandas
 * @dev art collection of 10,000 Adorable Pandas
 */
contract AdorablePandas is ERC721, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    // Address of interface identifier for royalty standard
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    // Timestamp for activating crowdsale
    uint256 public activationTimestamp;

    // Timestamp for activating presale
    uint256 public presaleTimestamp;
    
    // Presale duration, secs
    uint256 public presaleDuration;

    // Prepend baseURI to tokenId
    string private baseURI;

    // Address of payment splitter contract
    address public beneficiary;

    // Max supply of total tokens
    uint256 public maxSupply = 10_000;

    // Max number of reserved tokens
    uint256 public maxReserve;

    // Boolean value for locking metadata
    bool public metadataFrozen = false;

    // Mint price of each token (0.025 ETH)
    uint256 public mintPrice = 25000000000000000;

    // Number of public tokens minted
    uint256 private numPublicMinted;

    // Number of reserve tokens claimed
    uint256 private numReserveClaimed;

    // Royalty percentage for secondary sales
    uint256 public royaltyPercentage = 3;

    /**
     * @dev Initializes contract and sets initial baseURI, activation timestamp and beneficiary
     * @param _initialBaseURI Temporary baseURI
     * @param _activationTimestamp Timestamp to determine start of crowdsale
     * @param _presaleTimestamp Timestamp to determine start of presale
     * @param _presaleDuration Duration of presale
     * @param _maxReserve Amount of reserved tokens
     * @param _beneficiary Address of payment splitter contract
     * @param oldAddress Address of old contract
     */
    constructor(
        string memory _initialBaseURI,
        uint256 _activationTimestamp,
        uint256 _presaleTimestamp,
        uint256 _presaleDuration,
        uint256 _maxReserve,
        address _beneficiary,
        address oldAddress
    ) ERC721("Adorable Pandas", "PANDAS") {
        baseURI = _initialBaseURI;
        activationTimestamp = _activationTimestamp;
        presaleTimestamp = _presaleTimestamp;
        presaleDuration = _presaleDuration;
        beneficiary = _beneficiary;
        maxReserve = _maxReserve;
        if (oldAddress != address(0))
            migrate(oldAddress);
    }

    /**
     * @dev Mints specified number of tokens in a single transaction
     * @param _amount Total number of tokens to be minted and sent to `_msgSender()`
     *
     * Requirements:
     *
     * - `amount` must be less than max limit for a single transaction
     * - `msg.value` must be exact payment amount in wei
     * - `numPublicMinted` plus amount must not exceed max public supply
     */
    function mint(uint256 _amount) public payable {
        require(activationTimestamp <= block.timestamp || (presaleTimestamp + presaleDuration >= block.timestamp && presaleTimestamp <= block.timestamp), "Minting has not yet begun");
        require(_amount <= 20, "The max mint amount in a single transaction is 20");
        require(mintPrice * _amount == msg.value, "Incorrect payment amount");
        require(numPublicMinted + _amount <= maxSupply - maxReserve, "No more public tokens available to mint");

        numPublicMinted += _amount;
        _mint(_amount, _msgSender());

        payable(beneficiary).transfer(msg.value);
    }

    /**
     * @dev Mints specified number of tokens to a recipient
     * @param _amount Number of tokens to be minted
     * @param _recipient Address of recipient to transfer tokens to
     *
     * Requirements:
     *
     * - `activationTimestamp` must be less than or equal to the current block time
     * - `currentTotal` in addition to mint `amount` must not exceed the `maxSupply`
     */
    function _mint(uint256 _amount, address _recipient) private {
        require(_tokenIds.current() + _amount <= maxSupply, "Insufficienct number of tokens available");

        for (uint256 i = 0; i < _amount; i++) {
            uint256 newItemId = _tokenIds.current();
            _tokenIds.increment();
            _safeMint(_recipient, newItemId);
        }
    }

    /**
     * @dev Mints specified amount of tokens to list of recipients
     * @param _amount Number of tokens to be minted for each recipient
     * @param _recipients List of addresses to send tokens to
     *
     * Requirements:
     *
     * - `owner` must be function caller
     * - `numReserveClaimed` must not exceed the total max reserve
     */
    function mintReserved(uint256 _amount, address[] memory _recipients) public onlyOwner {
        numReserveClaimed += _recipients.length * _amount;
        require(numReserveClaimed <= maxReserve, "No more reserved tokens available to claim");

        for (uint256 i = 0; i < _recipients.length; i++) {
            _mint(_amount, _recipients[i]);
        }
    }

    /**
     * @dev Copies Pandas from old contract to this
     * @param oldAddress Address of old contract
     */
    function migrate(address oldAddress) internal {
        AdorablePandas oldContract = AdorablePandas(oldAddress);
        for (uint256 i = 0; i < oldContract.totalSupply(); i++) {
            _mint(1, oldContract.ownerOf(i));
        }
    }

    /**
     * @dev Mints specified amount of tokens to list of recipients
     * @param _mintPrice New mint price 
     *
     * Requirements:
     *
     * - `owner` must be function caller
     */
    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    /**
     * @dev Mints specified amount of tokens to list of recipients
     * @param _maxReserve New amount of reserved tokens 
     *
     * Requirements:
     *
     * - `owner` must be function caller
     * - `_maxReserve` must not be less than `numReserveClaimed`
     * - `_maxReserve` must not be more than `maxReserve`
     */
    function setMaxReserve(uint256 _maxReserve) public onlyOwner {
        require(_maxReserve < maxReserve, "New reserved amount should be less than current reserved amount");
        require(_maxReserve >= numReserveClaimed, "New reserved amount should be less than claimed reserved amount");
        maxReserve = _maxReserve;
    }

    /**
     * @dev See {IERC721-baseURI}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns the total number of tokens currently minted.
     */
    function totalSupply() public view returns (uint256) {
        return numPublicMinted + numReserveClaimed;
    }

    /**
     * @dev Sets the baseURI with the official metadataURI
     * @param _newBaseURI Metadata URI used for overriding initialBaseURI
     *
     * Requirements:
     *
     * - `owner` must be function caller
     * - `metadataFrozen` must be false
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require(metadataFrozen == false, "Metadata can no longer be altered");

        baseURI = _newBaseURI;
    }

    /**
     * @dev freezes the metadata URI so it can't be changed
     *
     * Requirements:
     *
     * - `owner` must be function caller
     */
    function freezeMetadata() public onlyOwner {
        metadataFrozen = true;
    }

    /**
     * @dev See {IERC2981-royaltyInfo}.
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address, uint256 royaltyAmount) {
        _tokenId; // silence solc warning
        royaltyAmount = (_salePrice * royaltyPercentage) / 100;

        return (beneficiary, royaltyAmount);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"uint256","name":"_activationTimestamp","type":"uint256"},{"internalType":"uint256","name":"_presaleTimestamp","type":"uint256"},{"internalType":"uint256","name":"_presaleDuration","type":"uint256"},{"internalType":"uint256","name":"_maxReserve","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"address","name":"oldAddress","type":"address"}],"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":"activationTimestamp","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":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","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":"presaleDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxReserve","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","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"}]

6080604052612710600d55600f805460ff191690556658d15e1762800060105560036013553480156200003157600080fd5b5060405162002f2d38038062002f2d83398101604081905262000054916200081b565b604080518082018252600f81526e41646f7261626c652050616e64617360881b60208083019182528351808501909452600684526550414e44415360d01b908401528151919291620000a9916000916200070a565b508051620000bf9060019060208401906200070a565b505050620000dc620000d66200014660201b60201c565b6200014a565b8651620000f190600b9060208a01906200070a565b5060088690556009859055600a849055600c80546001600160a01b0319166001600160a01b0384811691909117909155600e849055811615620001395762000139816200019c565b5050505050505062000a61565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8060005b816001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015620001da57600080fd5b505afa158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021591906200091d565b811015620002bc576040516331a9108f60e11b815260048101829052620002a7906001906001600160a01b03851690636352211e9060240160206040518083038186803b1580156200026657600080fd5b505afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a19190620007cd565b620002c1565b80620002b38162000a17565b915050620001a0565b505050565b600d5482620002dc6007620003ad60201b6200143a1760201c565b620002e891906200098c565b11156200034d5760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e6374206e756d626572206f6620746f6b656e7320616044820152677661696c61626c6560c01b60648201526084015b60405180910390fd5b60005b82811015620002bc576000620003726007620003ad60201b6200143a1760201c565b90506200038b6007620003b160201b6200143e1760201c565b620003978382620003ba565b5080620003a48162000a17565b91505062000350565b5490565b80546001019055565b620003dc828260405180602001604052806000815250620003e060201b60201c565b5050565b620003ec838362000453565b620003fb60008484846200059b565b620002bc5760405162461bcd60e51b8152602060048201526032602482015260008051602062002f0d83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000344565b6001600160a01b038216620004ab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000344565b6000818152600260205260409020546001600160a01b031615620005125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000344565b6001600160a01b03821660009081526003602052604081208054600192906200053d9084906200098c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620005bc846001600160a01b03166200070460201b620014471760201c565b15620006f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005f690339089908890889060040162000936565b602060405180830381600087803b1580156200061157600080fd5b505af192505050801562000644575060408051601f3d908101601f191682019092526200064191810190620007f1565b60015b620006dd573d80801562000675576040519150601f19603f3d011682016040523d82523d6000602084013e6200067a565b606091505b508051620006d55760405162461bcd60e51b8152602060048201526032602482015260008051602062002f0d83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000344565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006fc565b5060015b949350505050565b3b151590565b8280546200071890620009da565b90600052602060002090601f0160209004810192826200073c576000855562000787565b82601f106200075757805160ff191683800117855562000787565b8280016001018555821562000787579182015b82811115620007875782518255916020019190600101906200076a565b506200079592915062000799565b5090565b5b808211156200079557600081556001016200079a565b80516001600160a01b0381168114620007c857600080fd5b919050565b600060208284031215620007df578081fd5b620007ea82620007b0565b9392505050565b60006020828403121562000803578081fd5b81516001600160e01b031981168114620007ea578182fd5b600080600080600080600060e0888a03121562000836578283fd5b87516001600160401b03808211156200084d578485fd5b818a0191508a601f83011262000861578485fd5b81518181111562000876576200087662000a4b565b604051601f8201601f19908116603f01168101908382118183101715620008a157620008a162000a4b565b816040528281528d6020848701011115620008ba578788fd5b620008cd836020830160208801620009a7565b809b50505050505060208801519550604088015194506060880151935060808801519250620008ff60a08901620007b0565b91506200090f60c08901620007b0565b905092959891949750929550565b6000602082840312156200092f578081fd5b5051919050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009758160a0850160208701620009a7565b601f01601f19169190910160a00195945050505050565b60008219821115620009a257620009a262000a35565b500190565b60005b83811015620009c4578181015183820152602001620009aa565b83811115620009d4576000848401525b50505050565b600181811c90821680620009ef57607f821691505b6020821081141562000a1157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000a2e5762000a2e62000a35565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61249c8062000a716000396000f3fe6080604052600436106101f95760003560e01c80636817c76c1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610585578063f2fde38b146105ce578063f3b3a9fa146105ee578063f4a0a52814610604578063fb3cc6c21461062457600080fd5b8063b88d4fde1461051a578063c87b56dd1461053a578063d111515d1461055a578063d5abeb011461056f57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104b457806395d89b41146104d2578063a0712d68146104e7578063a22cb465146104fa57600080fd5b80636817c76c1461045357806370a0823114610469578063715018a6146104895780638a71bb2d1461049e57600080fd5b8063337013961161019057806342966c681161015f57806342966c68146103bd57806355f804b3146103dd57806356a87caa146103fd5780635868c32a1461041d5780636352211e1461043357600080fd5b8063337013961461034757806338af3eed1461035d5780633eef38191461037d57806342842e0e1461039d57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806318160ddd146102d357806323b872dd146102e85780632a55205a1461030857600080fd5b806301ffc9a7146101fe5780630423c7de1461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e6102193660046120a9565b61063e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024960085481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610669565b60405161022a91906122b2565b34801561028557600080fd5b50610299610294366004612127565b6106fb565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004612080565b610795565b005b3480156102df57600080fd5b506102496108ab565b3480156102f457600080fd5b506102d1610303366004611f92565b6108c2565b34801561031457600080fd5b506103286103233660046121fa565b61093e565b604080516001600160a01b03909316835260208301919091520161022a565b34801561035357600080fd5b5061024960095481565b34801561036957600080fd5b50600c54610299906001600160a01b031681565b34801561038957600080fd5b506102d161039836600461213f565b610971565b3480156103a957600080fd5b506102d16103b8366004611f92565b610a92565b3480156103c957600080fd5b506102d16103d8366004612127565b610aad565b3480156103e957600080fd5b506102d16103f83660046120e1565b610b34565b34801561040957600080fd5b506102d1610418366004612127565b610bf0565b34801561042957600080fd5b50610249600a5481565b34801561043f57600080fd5b5061029961044e366004612127565b610d2c565b34801561045f57600080fd5b5061024960105481565b34801561047557600080fd5b50610249610484366004611f46565b610da3565b34801561049557600080fd5b506102d1610e2a565b3480156104aa57600080fd5b5061024960135481565b3480156104c057600080fd5b506006546001600160a01b0316610299565b3480156104de57600080fd5b5061026c610e7e565b6102d16104f5366004612127565b610e8d565b34801561050657600080fd5b506102d1610515366004612046565b6110b0565b34801561052657600080fd5b506102d1610535366004611fcd565b611175565b34801561054657600080fd5b5061026c610555366004612127565b6111f7565b34801561056657600080fd5b506102d16112e0565b34801561057b57600080fd5b50610249600d5481565b34801561059157600080fd5b5061021e6105a0366004611f60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102d16105e9366004611f46565b611337565b3480156105fa57600080fd5b50610249600e5481565b34801561061057600080fd5b506102d161061f366004612127565b6113ed565b34801561063057600080fd5b50600f5461021e9060ff1681565b60006001600160e01b0319821663152a902d60e11b148061066357506106638261144d565b92915050565b60606000805461067890612384565b80601f01602080910402602001604051908101604052809291908181526020018280546106a490612384565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a082610d2c565b9050806001600160a01b0316836001600160a01b0316141561080e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b038216148061082a575061082a81336105a0565b61089c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6108a6838361149d565b505050565b60006012546011546108bd91906122f6565b905090565b6108cd335b8261150b565b6109335760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610770565b6108a6838383611602565b6000806064601354846109519190612322565b61095b919061230e565b600c546001600160a01b03169590945092505050565b6006546001600160a01b031633146109b95760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b8181516109c69190612322565b601260008282546109d791906122f6565b9091555050600e546012541115610a435760405162461bcd60e51b815260206004820152602a60248201527f4e6f206d6f726520726573657276656420746f6b656e7320617661696c61626c6044820152696520746f20636c61696d60b01b6064820152608401610770565b60005b81518110156108a657610a8083838381518110610a7357634e487b7160e01b600052603260045260246000fd5b60200260200101516117a2565b80610a8a816123bf565b915050610a46565b6108a683838360405180602001604052806000815250611175565b610ab6336108c7565b610b285760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610770565b610b318161185b565b50565b6006546001600160a01b03163314610b7c5760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600f5460ff1615610bd95760405162461bcd60e51b815260206004820152602160248201527f4d657461646174612063616e206e6f206c6f6e67657220626520616c746572656044820152601960fa1b6064820152608401610770565b8051610bec90600b906020840190611e39565b5050565b6006546001600160a01b03163314610c385760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600e548110610caf5760405162461bcd60e51b815260206004820152603f60248201527f4e657720726573657276656420616d6f756e742073686f756c64206265206c6560448201527f7373207468616e2063757272656e7420726573657276656420616d6f756e74006064820152608401610770565b601254811015610d275760405162461bcd60e51b815260206004820152603f60248201527f4e657720726573657276656420616d6f756e742073686f756c64206265206c6560448201527f7373207468616e20636c61696d656420726573657276656420616d6f756e74006064820152608401610770565b600e55565b6000818152600260205260408120546001600160a01b0316806106635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e0e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e725760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b610e7c60006118f6565b565b60606001805461067890612384565b42600854111580610eba575042600a54600954610eaa91906122f6565b10158015610eba57504260095411155b610f065760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720686173206e6f742079657420626567756e000000000000006044820152606401610770565b6014811115610f7d5760405162461bcd60e51b815260206004820152603160248201527f546865206d6178206d696e7420616d6f756e7420696e20612073696e676c652060448201527f7472616e73616374696f6e2069732032300000000000000000000000000000006064820152608401610770565b3481601054610f8c9190612322565b14610fd95760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374207061796d656e7420616d6f756e7400000000000000006044820152606401610770565b600e54600d54610fe99190612341565b81601154610ff791906122f6565b11156110555760405162461bcd60e51b815260206004820152602760248201527f4e6f206d6f7265207075626c696320746f6b656e7320617661696c61626c65206044820152661d1bc81b5a5b9d60ca1b6064820152608401610770565b806011600082825461106791906122f6565b90915550611077905081336117a2565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610bec573d6000803e3d6000fd5b6001600160a01b0382163314156111095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117f338361150b565b6111e55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610770565b6111f184848484611948565b50505050565b6000818152600260205260409020546060906001600160a01b03166112845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610770565b600061128e6119c6565b905060008151116112ae57604051806020016040528060008152506112d9565b806112b8846119d5565b6040516020016112c9929190612247565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113285760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600f805460ff19166001179055565b6006546001600160a01b0316331461137f5760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b6001600160a01b0381166113e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b610b31816118f6565b6006546001600160a01b031633146114355760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b601055565b5490565b80546001019055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061147e57506001600160e01b03198216635b5e139f60e01b145b8061066357506301ffc9a760e01b6001600160e01b0319831614610663565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d282610d2c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b600061158f83610d2c565b9050806001600160a01b0316846001600160a01b031614806115ca5750836001600160a01b03166115bf846106fb565b6001600160a01b0316145b806115fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661161582610d2c565b6001600160a01b03161461167d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b0382166116df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b6116ea60008261149d565b6001600160a01b0383166000908152600360205260408120805460019290611713908490612341565b90915550506001600160a01b03821660009081526003602052604081208054600192906117419084906122f6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d54826117af60075490565b6117b991906122f6565b11156118185760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e6374206e756d626572206f6620746f6b656e7320616044820152677661696c61626c6560c01b6064820152608401610770565b60005b828110156108a657600061182e60075490565b905061183e600780546001019055565b6118488382611b07565b5080611853816123bf565b91505061181b565b600061186682610d2c565b905061187360008361149d565b6001600160a01b038116600090815260036020526040812080546001929061189c908490612341565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611953848484611602565b61195f84848484611b21565b6111f15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b6060600b805461067890612384565b6060816119f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a235780611a0d816123bf565b9150611a1c9050600a8361230e565b91506119fd565b60008167ffffffffffffffff811115611a4c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a76576020820181803683370190505b5090505b84156115fa57611a8b600183612341565b9150611a98600a866123da565b611aa39060306122f6565b60f81b818381518110611ac657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b00600a8661230e565b9450611a7a565b610bec828260405180602001604052806000815250611c79565b60006001600160a01b0384163b15611c6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b65903390899088908890600401612276565b602060405180830381600087803b158015611b7f57600080fd5b505af1925050508015611baf575060408051601f3d908101601f19168201909252611bac918101906120c5565b60015b611c54573d808015611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b508051611c4c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115fa565b506001949350505050565b611c838383611cf7565b611c906000848484611b21565b6108a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b6001600160a01b038216611d4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b031615611db25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b6001600160a01b0382166000908152600360205260408120805460019290611ddb9084906122f6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e4590612384565b90600052602060002090601f016020900481019282611e675760008555611ead565b82601f10611e8057805160ff1916838001178555611ead565b82800160010185558215611ead579182015b82811115611ead578251825591602001919060010190611e92565b50611eb9929150611ebd565b5090565b5b80821115611eb95760008155600101611ebe565b600067ffffffffffffffff831115611eec57611eec61241a565b611eff601f8401601f19166020016122c5565b9050828152838383011115611f1357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f4157600080fd5b919050565b600060208284031215611f57578081fd5b6112d982611f2a565b60008060408385031215611f72578081fd5b611f7b83611f2a565b9150611f8960208401611f2a565b90509250929050565b600080600060608486031215611fa6578081fd5b611faf84611f2a565b9250611fbd60208501611f2a565b9150604084013590509250925092565b60008060008060808587031215611fe2578081fd5b611feb85611f2a565b9350611ff960208601611f2a565b925060408501359150606085013567ffffffffffffffff81111561201b578182fd5b8501601f8101871361202b578182fd5b61203a87823560208401611ed2565b91505092959194509250565b60008060408385031215612058578182fd5b61206183611f2a565b915060208301358015158114612075578182fd5b809150509250929050565b60008060408385031215612092578182fd5b61209b83611f2a565b946020939093013593505050565b6000602082840312156120ba578081fd5b81356112d981612430565b6000602082840312156120d6578081fd5b81516112d981612430565b6000602082840312156120f2578081fd5b813567ffffffffffffffff811115612108578182fd5b8201601f81018413612118578182fd5b6115fa84823560208401611ed2565b600060208284031215612138578081fd5b5035919050565b60008060408385031215612151578182fd5b8235915060208084013567ffffffffffffffff80821115612170578384fd5b818601915086601f830112612183578384fd5b8135818111156121955761219561241a565b8060051b91506121a68483016122c5565b8181528481019084860184860187018b10156121c0578788fd5b8795505b838610156121e9576121d581611f2a565b8352600195909501949186019186016121c4565b508096505050505050509250929050565b6000806040838503121561220c578182fd5b50508035926020909101359150565b60008151808452612233816020860160208601612358565b601f01601f19169290920160200192915050565b60008351612259818460208801612358565b83519083019061226d818360208801612358565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122a8608083018461221b565b9695505050505050565b6020815260006112d9602083018461221b565b604051601f8201601f1916810167ffffffffffffffff811182821017156122ee576122ee61241a565b604052919050565b60008219821115612309576123096123ee565b500190565b60008261231d5761231d612404565b500490565b600081600019048311821515161561233c5761233c6123ee565b500290565b600082821015612353576123536123ee565b500390565b60005b8381101561237357818101518382015260200161235b565b838111156111f15750506000910152565b600181811c9082168061239857607f821691505b602082108114156123b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123d3576123d36123ee565b5060010190565b6000826123e9576123e9612404565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220923cbc003f7cea017c0c5db87f26530d5dc7a4e143f4ff09a0d662e33274f01064736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000006126852000000000000000000000000000000000000000000000000000000000612533a00000000000000000000000000000000000000000000000000000000000002a3000000000000000000000000000000000000000000000000000000000000000320000000000000000000000001937dff7ad86a87d7027280c26ed8c3c71a3e1b9000000000000000000000000ad606bb93d28ea4e222f9c1261ac75550fe19e1f000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e61646f7261626c6570616e6461732e696f2f6765742f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636817c76c1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610585578063f2fde38b146105ce578063f3b3a9fa146105ee578063f4a0a52814610604578063fb3cc6c21461062457600080fd5b8063b88d4fde1461051a578063c87b56dd1461053a578063d111515d1461055a578063d5abeb011461056f57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104b457806395d89b41146104d2578063a0712d68146104e7578063a22cb465146104fa57600080fd5b80636817c76c1461045357806370a0823114610469578063715018a6146104895780638a71bb2d1461049e57600080fd5b8063337013961161019057806342966c681161015f57806342966c68146103bd57806355f804b3146103dd57806356a87caa146103fd5780635868c32a1461041d5780636352211e1461043357600080fd5b8063337013961461034757806338af3eed1461035d5780633eef38191461037d57806342842e0e1461039d57600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806318160ddd146102d357806323b872dd146102e85780632a55205a1461030857600080fd5b806301ffc9a7146101fe5780630423c7de1461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e6102193660046120a9565b61063e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024960085481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610669565b60405161022a91906122b2565b34801561028557600080fd5b50610299610294366004612127565b6106fb565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004612080565b610795565b005b3480156102df57600080fd5b506102496108ab565b3480156102f457600080fd5b506102d1610303366004611f92565b6108c2565b34801561031457600080fd5b506103286103233660046121fa565b61093e565b604080516001600160a01b03909316835260208301919091520161022a565b34801561035357600080fd5b5061024960095481565b34801561036957600080fd5b50600c54610299906001600160a01b031681565b34801561038957600080fd5b506102d161039836600461213f565b610971565b3480156103a957600080fd5b506102d16103b8366004611f92565b610a92565b3480156103c957600080fd5b506102d16103d8366004612127565b610aad565b3480156103e957600080fd5b506102d16103f83660046120e1565b610b34565b34801561040957600080fd5b506102d1610418366004612127565b610bf0565b34801561042957600080fd5b50610249600a5481565b34801561043f57600080fd5b5061029961044e366004612127565b610d2c565b34801561045f57600080fd5b5061024960105481565b34801561047557600080fd5b50610249610484366004611f46565b610da3565b34801561049557600080fd5b506102d1610e2a565b3480156104aa57600080fd5b5061024960135481565b3480156104c057600080fd5b506006546001600160a01b0316610299565b3480156104de57600080fd5b5061026c610e7e565b6102d16104f5366004612127565b610e8d565b34801561050657600080fd5b506102d1610515366004612046565b6110b0565b34801561052657600080fd5b506102d1610535366004611fcd565b611175565b34801561054657600080fd5b5061026c610555366004612127565b6111f7565b34801561056657600080fd5b506102d16112e0565b34801561057b57600080fd5b50610249600d5481565b34801561059157600080fd5b5061021e6105a0366004611f60565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102d16105e9366004611f46565b611337565b3480156105fa57600080fd5b50610249600e5481565b34801561061057600080fd5b506102d161061f366004612127565b6113ed565b34801561063057600080fd5b50600f5461021e9060ff1681565b60006001600160e01b0319821663152a902d60e11b148061066357506106638261144d565b92915050565b60606000805461067890612384565b80601f01602080910402602001604051908101604052809291908181526020018280546106a490612384565b80156106f15780601f106106c6576101008083540402835291602001916106f1565b820191906000526020600020905b8154815290600101906020018083116106d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a082610d2c565b9050806001600160a01b0316836001600160a01b0316141561080e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610770565b336001600160a01b038216148061082a575061082a81336105a0565b61089c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610770565b6108a6838361149d565b505050565b60006012546011546108bd91906122f6565b905090565b6108cd335b8261150b565b6109335760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610770565b6108a6838383611602565b6000806064601354846109519190612322565b61095b919061230e565b600c546001600160a01b03169590945092505050565b6006546001600160a01b031633146109b95760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b8181516109c69190612322565b601260008282546109d791906122f6565b9091555050600e546012541115610a435760405162461bcd60e51b815260206004820152602a60248201527f4e6f206d6f726520726573657276656420746f6b656e7320617661696c61626c6044820152696520746f20636c61696d60b01b6064820152608401610770565b60005b81518110156108a657610a8083838381518110610a7357634e487b7160e01b600052603260045260246000fd5b60200260200101516117a2565b80610a8a816123bf565b915050610a46565b6108a683838360405180602001604052806000815250611175565b610ab6336108c7565b610b285760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610770565b610b318161185b565b50565b6006546001600160a01b03163314610b7c5760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600f5460ff1615610bd95760405162461bcd60e51b815260206004820152602160248201527f4d657461646174612063616e206e6f206c6f6e67657220626520616c746572656044820152601960fa1b6064820152608401610770565b8051610bec90600b906020840190611e39565b5050565b6006546001600160a01b03163314610c385760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600e548110610caf5760405162461bcd60e51b815260206004820152603f60248201527f4e657720726573657276656420616d6f756e742073686f756c64206265206c6560448201527f7373207468616e2063757272656e7420726573657276656420616d6f756e74006064820152608401610770565b601254811015610d275760405162461bcd60e51b815260206004820152603f60248201527f4e657720726573657276656420616d6f756e742073686f756c64206265206c6560448201527f7373207468616e20636c61696d656420726573657276656420616d6f756e74006064820152608401610770565b600e55565b6000818152600260205260408120546001600160a01b0316806106635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610770565b60006001600160a01b038216610e0e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610770565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e725760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b610e7c60006118f6565b565b60606001805461067890612384565b42600854111580610eba575042600a54600954610eaa91906122f6565b10158015610eba57504260095411155b610f065760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e6720686173206e6f742079657420626567756e000000000000006044820152606401610770565b6014811115610f7d5760405162461bcd60e51b815260206004820152603160248201527f546865206d6178206d696e7420616d6f756e7420696e20612073696e676c652060448201527f7472616e73616374696f6e2069732032300000000000000000000000000000006064820152608401610770565b3481601054610f8c9190612322565b14610fd95760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374207061796d656e7420616d6f756e7400000000000000006044820152606401610770565b600e54600d54610fe99190612341565b81601154610ff791906122f6565b11156110555760405162461bcd60e51b815260206004820152602760248201527f4e6f206d6f7265207075626c696320746f6b656e7320617661696c61626c65206044820152661d1bc81b5a5b9d60ca1b6064820152608401610770565b806011600082825461106791906122f6565b90915550611077905081336117a2565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610bec573d6000803e3d6000fd5b6001600160a01b0382163314156111095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610770565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117f338361150b565b6111e55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b6064820152608401610770565b6111f184848484611948565b50505050565b6000818152600260205260409020546060906001600160a01b03166112845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610770565b600061128e6119c6565b905060008151116112ae57604051806020016040528060008152506112d9565b806112b8846119d5565b6040516020016112c9929190612247565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146113285760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b600f805460ff19166001179055565b6006546001600160a01b0316331461137f5760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b6001600160a01b0381166113e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b610b31816118f6565b6006546001600160a01b031633146114355760405162461bcd60e51b815260206004820181905260248201526000805160206124478339815191526044820152606401610770565b601055565b5490565b80546001019055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061147e57506001600160e01b03198216635b5e139f60e01b145b8061066357506301ffc9a760e01b6001600160e01b0319831614610663565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114d282610d2c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610770565b600061158f83610d2c565b9050806001600160a01b0316846001600160a01b031614806115ca5750836001600160a01b03166115bf846106fb565b6001600160a01b0316145b806115fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661161582610d2c565b6001600160a01b03161461167d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610770565b6001600160a01b0382166116df5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610770565b6116ea60008261149d565b6001600160a01b0383166000908152600360205260408120805460019290611713908490612341565b90915550506001600160a01b03821660009081526003602052604081208054600192906117419084906122f6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d54826117af60075490565b6117b991906122f6565b11156118185760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e6374206e756d626572206f6620746f6b656e7320616044820152677661696c61626c6560c01b6064820152608401610770565b60005b828110156108a657600061182e60075490565b905061183e600780546001019055565b6118488382611b07565b5080611853816123bf565b91505061181b565b600061186682610d2c565b905061187360008361149d565b6001600160a01b038116600090815260036020526040812080546001929061189c908490612341565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611953848484611602565b61195f84848484611b21565b6111f15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b6060600b805461067890612384565b6060816119f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a235780611a0d816123bf565b9150611a1c9050600a8361230e565b91506119fd565b60008167ffffffffffffffff811115611a4c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a76576020820181803683370190505b5090505b84156115fa57611a8b600183612341565b9150611a98600a866123da565b611aa39060306122f6565b60f81b818381518110611ac657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b00600a8661230e565b9450611a7a565b610bec828260405180602001604052806000815250611c79565b60006001600160a01b0384163b15611c6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b65903390899088908890600401612276565b602060405180830381600087803b158015611b7f57600080fd5b505af1925050508015611baf575060408051601f3d908101601f19168201909252611bac918101906120c5565b60015b611c54573d808015611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b508051611c4c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115fa565b506001949350505050565b611c838383611cf7565b611c906000848484611b21565b6108a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610770565b6001600160a01b038216611d4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610770565b6000818152600260205260409020546001600160a01b031615611db25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610770565b6001600160a01b0382166000908152600360205260408120805460019290611ddb9084906122f6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e4590612384565b90600052602060002090601f016020900481019282611e675760008555611ead565b82601f10611e8057805160ff1916838001178555611ead565b82800160010185558215611ead579182015b82811115611ead578251825591602001919060010190611e92565b50611eb9929150611ebd565b5090565b5b80821115611eb95760008155600101611ebe565b600067ffffffffffffffff831115611eec57611eec61241a565b611eff601f8401601f19166020016122c5565b9050828152838383011115611f1357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f4157600080fd5b919050565b600060208284031215611f57578081fd5b6112d982611f2a565b60008060408385031215611f72578081fd5b611f7b83611f2a565b9150611f8960208401611f2a565b90509250929050565b600080600060608486031215611fa6578081fd5b611faf84611f2a565b9250611fbd60208501611f2a565b9150604084013590509250925092565b60008060008060808587031215611fe2578081fd5b611feb85611f2a565b9350611ff960208601611f2a565b925060408501359150606085013567ffffffffffffffff81111561201b578182fd5b8501601f8101871361202b578182fd5b61203a87823560208401611ed2565b91505092959194509250565b60008060408385031215612058578182fd5b61206183611f2a565b915060208301358015158114612075578182fd5b809150509250929050565b60008060408385031215612092578182fd5b61209b83611f2a565b946020939093013593505050565b6000602082840312156120ba578081fd5b81356112d981612430565b6000602082840312156120d6578081fd5b81516112d981612430565b6000602082840312156120f2578081fd5b813567ffffffffffffffff811115612108578182fd5b8201601f81018413612118578182fd5b6115fa84823560208401611ed2565b600060208284031215612138578081fd5b5035919050565b60008060408385031215612151578182fd5b8235915060208084013567ffffffffffffffff80821115612170578384fd5b818601915086601f830112612183578384fd5b8135818111156121955761219561241a565b8060051b91506121a68483016122c5565b8181528481019084860184860187018b10156121c0578788fd5b8795505b838610156121e9576121d581611f2a565b8352600195909501949186019186016121c4565b508096505050505050509250929050565b6000806040838503121561220c578182fd5b50508035926020909101359150565b60008151808452612233816020860160208601612358565b601f01601f19169290920160200192915050565b60008351612259818460208801612358565b83519083019061226d818360208801612358565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122a8608083018461221b565b9695505050505050565b6020815260006112d9602083018461221b565b604051601f8201601f1916810167ffffffffffffffff811182821017156122ee576122ee61241a565b604052919050565b60008219821115612309576123096123ee565b500190565b60008261231d5761231d612404565b500490565b600081600019048311821515161561233c5761233c6123ee565b500290565b600082821015612353576123536123ee565b500390565b60005b8381101561237357818101518382015260200161235b565b838111156111f15750506000910152565b600181811c9082168061239857607f821691505b602082108114156123b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123d3576123d36123ee565b5060010190565b6000826123e9576123e9612404565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220923cbc003f7cea017c0c5db87f26530d5dc7a4e143f4ff09a0d662e33274f01064736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000006126852000000000000000000000000000000000000000000000000000000000612533a00000000000000000000000000000000000000000000000000000000000002a3000000000000000000000000000000000000000000000000000000000000000320000000000000000000000001937dff7ad86a87d7027280c26ed8c3c71a3e1b9000000000000000000000000ad606bb93d28ea4e222f9c1261ac75550fe19e1f000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6170692e61646f7261626c6570616e6461732e696f2f6765742f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://api.adorablepandas.io/get/
Arg [1] : _activationTimestamp (uint256): 1629914400
Arg [2] : _presaleTimestamp (uint256): 1629828000
Arg [3] : _presaleDuration (uint256): 10800
Arg [4] : _maxReserve (uint256): 50
Arg [5] : _beneficiary (address): 0x1937DfF7Ad86a87D7027280c26ED8C3C71A3e1b9
Arg [6] : oldAddress (address): 0xAd606Bb93D28ea4e222F9C1261aC75550FE19E1f

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000061268520
Arg [2] : 00000000000000000000000000000000000000000000000000000000612533a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002a30
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 0000000000000000000000001937dff7ad86a87d7027280c26ed8c3c71a3e1b9
Arg [6] : 000000000000000000000000ad606bb93d28ea4e222f9c1261ac75550fe19e1f
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [8] : 68747470733a2f2f6170692e61646f7261626c6570616e6461732e696f2f6765
Arg [9] : 742f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

249:7896:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7944:199;;;;;;;;;;-1:-1:-1;7944:199:1;;;;;:::i;:::-;;:::i;:::-;;;7286:14:13;;7279:22;7261:41;;7249:2;7234:18;7944:199:1;;;;;;;;563:34;;;;;;;;;;;;;;;;;;;18101:25:13;;;18089:2;18074:18;563:34:1;18056:76:13;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6236:55:13;;;6218:74;;6206:2;6191:18;3860:217:5;6173:125:13;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;6738:112:1;;;;;;;;;;;;;:::i;4724:330:5:-;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;7604:273:1:-;;;;;;;;;;-1:-1:-1;7604:273:1;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7011:55:13;;;6993:74;;7098:2;7083:18;;7076:34;;;;6966:18;7604:273:1;6948:168:13;644:31:1;;;;;;;;;;;;;;;;860:26;;;;;;;;;;-1:-1:-1;860:26:1;;;;-1:-1:-1;;;;;860:26:1;;;4784:362;;;;;;;;;;-1:-1:-1;4784:362:1;;;;;:::i;:::-;;:::i;5120:179:5:-;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;437:241:6:-;;;;;;;;;;-1:-1:-1;437:241:6;;;;;:::i;:::-;;:::i;7121:182:1:-;;;;;;;;;;-1:-1:-1;7121:182:1;;;;;:::i;:::-;;:::i;6158:330::-;;;;;;;;;;-1:-1:-1;6158:330:1;;;;;:::i;:::-;;:::i;716:30::-;;;;;;;;;;;;;;;;2052:235:5;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;1163:44:1:-;;;;;;;;;;;;;;;;1790:205:5;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:11:-;;;;;;;;;;;;;:::i;1416:36:1:-;;;;;;;;;;;;;;;;966:85:11;;;;;;;;;;-1:-1:-1;1038:6:11;;-1:-1:-1;;;;;1038:6:11;966:85;;2511:102:5;;;;;;;;;;;;;:::i;3008:640:1:-;;;;;;:::i;:::-;;:::i;4144:290:5:-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;2679:329::-;;;;;;;;;;-1:-1:-1;2679:329:5;;;;;:::i;:::-;;:::i;7461:81:1:-;;;;;;;;;;;;;:::i;927:33::-;;;;;;;;;;;;;;;;4500:162:5;;;;;;;;;;-1:-1:-1;4500:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;1839:189:11;;;;;;;;;;-1:-1:-1;1839:189:11;;;;;:::i;:::-;;:::i;1004:25:1:-;;;;;;;;;;;;;;;;5715:98;;;;;;;;;;-1:-1:-1;5715:98:1;;;;;:::i;:::-;;:::i;1078:34::-;;;;;;;;;;-1:-1:-1;1078:34:1;;;;;;;;7944:199;8037:4;-1:-1:-1;;;;;;8060:36:1;;-1:-1:-1;;;8060:36:1;;:76;;;8100:36;8124:11;8100:23;:36::i;:::-;8053:83;7944:199;-1:-1:-1;;7944:199:1:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;3955:73;;;;-1:-1:-1;;;3955:73:5;;14116:2:13;3955:73:5;;;14098:21:13;14155:2;14135:18;;;14128:30;14194:34;14174:18;;;14167:62;-1:-1:-1;;;14245:18:13;;;14238:42;14297:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;15716:2:13;3527:57:5;;;15698:21:13;15755:2;15735:18;;;15728:30;15794:34;15774:18;;;15767:62;-1:-1:-1;;;15845:18:13;;;15838:31;15886:19;;3527:57:5;15688:223:13;3527:57:5;665:10:2;-1:-1:-1;;;;;3616:21:5;;;;:62;;-1:-1:-1;3641:37:5;3658:5;665:10:2;4500:162:5;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;12509:2:13;3595:165:5;;;12491:21:13;12548:2;12528:18;;;12521:30;12587:34;12567:18;;;12560:62;12658:26;12638:18;;;12631:54;12702:19;;3595:165:5;12481:246:13;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;6738:112:1:-;6782:7;6826:17;;6808:15;;:35;;;;:::i;:::-;6801:42;;6738:112;:::o;4724:330:5:-;4913:41;665:10:2;4932:12:5;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;16118:2:13;4905:103:5;;;16100:21:13;16157:2;16137:18;;;16130:30;16196:34;16176:18;;;16169:62;-1:-1:-1;;;16247:18:13;;;16240:47;16304:19;;4905:103:5;16090:239:13;4905:103:5;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;7604:273:1:-;7686:7;7695:21;7821:3;7800:17;;7787:10;:30;;;;:::i;:::-;7786:38;;;;:::i;:::-;7843:11;;-1:-1:-1;;;;;7843:11:1;;7770:54;;-1:-1:-1;7604:273:1;-1:-1:-1;;;7604:273:1:o;4784:362::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;4922:7:1::1;4901:11;:18;:28;;;;:::i;:::-;4880:17;;:49;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;4968:10:1::1;::::0;4947:17:::1;::::0;:31:::1;;4939:86;;;::::0;-1:-1:-1;;;4939:86:1;;8975:2:13;4939:86:1::1;::::0;::::1;8957:21:13::0;9014:2;8994:18;;;8987:30;9053:34;9033:18;;;9026:62;-1:-1:-1;;;9104:18:13;;;9097:40;9154:19;;4939:86:1::1;8947:232:13::0;4939:86:1::1;5041:9;5036:104;5060:11;:18;5056:1;:22;5036:104;;;5099:30;5105:7;5114:11;5126:1;5114:14;;;;;;-1:-1:-1::0;;;5114:14:1::1;;;;;;;;;;;;;;;5099:5;:30::i;:::-;5080:3:::0;::::1;::::0;::::1;:::i;:::-;;;;5036:104;;5120:179:5::0;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;437:241:6:-;553:41;665:10:2;572:12:6;586:96:2;553:41:6;545:102;;;;-1:-1:-1;;;545:102:6;;17322:2:13;545:102:6;;;17304:21:13;17361:2;17341:18;;;17334:30;17400:34;17380:18;;;17373:62;17471:18;17451;;;17444:46;17507:19;;545:102:6;17294:238:13;545:102:6;657:14;663:7;657:5;:14::i;:::-;437:241;:::o;7121:182:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;7203:14:1::1;::::0;::::1;;:23;7195:69;;;::::0;-1:-1:-1;;;7195:69:1;;9793:2:13;7195:69:1::1;::::0;::::1;9775:21:13::0;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;-1:-1:-1;;;9922:18:13;;;9915:31;9963:19;;7195:69:1::1;9765:223:13::0;7195:69:1::1;7275:21:::0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;7121:182:::0;:::o;6158:330::-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;6251:10:1::1;;6237:11;:24;6229:100;;;::::0;-1:-1:-1;;;6229:100:1;;10552:2:13;6229:100:1::1;::::0;::::1;10534:21:13::0;10591:2;10571:18;;;10564:30;10630:34;10610:18;;;10603:62;10701:33;10681:18;;;10674:61;10752:19;;6229:100:1::1;10524:253:13::0;6229:100:1::1;6362:17;;6347:11;:32;;6339:108;;;::::0;-1:-1:-1;;;6339:108:1;;16536:2:13;6339:108:1::1;::::0;::::1;16518:21:13::0;16575:2;16555:18;;;16548:30;16614:34;16594:18;;;16587:62;16685:33;16665:18;;;16658:61;16736:19;;6339:108:1::1;16508:253:13::0;6339:108:1::1;6457:10;:24:::0;6158:330::o;2052:235:5:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;13345:2:13;2185:73:5;;;13327:21:13;13384:2;13364:18;;;13357:30;13423:34;13403:18;;;13396:62;-1:-1:-1;;;13474:18:13;;;13467:39;13523:19;;2185:73:5;13317:231:13;1790:205:5;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;12934:2:13;1881:74:5;;;12916:21:13;12973:2;12953:18;;;12946:30;13012:34;12992:18;;;12985:62;-1:-1:-1;;;13063:18:13;;;13056:40;13113:19;;1881:74:5;12906:232:13;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2511:102:5:-;2567:13;2599:7;2592:14;;;;;:::i;3008:640:1:-;3095:15;3072:19;;:38;;:136;;;;3153:15;3134;;3115:16;;:34;;;;:::i;:::-;:53;;:92;;;;;3192:15;3172:16;;:35;;3115:92;3064:174;;;;-1:-1:-1;;;3064:174:1;;16968:2:13;3064:174:1;;;16950:21:13;17007:2;16987:18;;;16980:30;17046:27;17026:18;;;17019:55;17091:18;;3064:174:1;16940:175:13;3064:174:1;3267:2;3256:7;:13;;3248:75;;;;-1:-1:-1;;;3248:75:1;;17739:2:13;3248:75:1;;;17721:21:13;17778:2;17758:18;;;17751:30;17817:34;17797:18;;;17790:62;17888:19;17868:18;;;17861:47;17925:19;;3248:75:1;17711:239:13;3248:75:1;3364:9;3353:7;3341:9;;:19;;;;:::i;:::-;:32;3333:69;;;;-1:-1:-1;;;3333:69:1;;11743:2:13;3333:69:1;;;11725:21:13;11782:2;11762:18;;;11755:30;11821:26;11801:18;;;11794:54;11865:18;;3333:69:1;11715:174:13;3333:69:1;3461:10;;3449:9;;:22;;;;:::i;:::-;3438:7;3420:15;;:25;;;;:::i;:::-;:51;;3412:103;;;;-1:-1:-1;;;3412:103:1;;8148:2:13;3412:103:1;;;8130:21:13;8187:2;8167:18;;;8160:30;8226:34;8206:18;;;8199:62;-1:-1:-1;;;8277:18:13;;;8270:37;8324:19;;3412:103:1;8120:229:13;3412:103:1;3545:7;3526:15;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;3562:28:1;;-1:-1:-1;3568:7:1;665:10:2;3562:5:1;:28::i;:::-;3609:11;;3601:40;;-1:-1:-1;;;;;3609:11:1;;;;3631:9;3601:40;;;;;3609:11;3601:40;3609:11;3601:40;3631:9;3609:11;3601:40;;;;;;;;;;;;;;;;;;;4144:290:5;-1:-1:-1;;;;;4246:24:5;;665:10:2;4246:24:5;;4238:62;;;;-1:-1:-1;;;4238:62:5;;11389:2:13;4238:62:5;;;11371:21:13;11428:2;11408:18;;;11401:30;11467:27;11447:18;;;11440:55;11512:18;;4238:62:5;11361:175:13;4238:62:5;665:10:2;4311:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;4379:48;;7261:41:13;;;4311:42:5;;665:10:2;4379:48:5;;7234:18:13;4379:48:5;;;;;;;4144:290;;:::o;5365:320::-;5534:41;665:10:2;5567:7:5;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;16118:2:13;5526:103:5;;;16100:21:13;16157:2;16137:18;;;16130:30;16196:34;16176:18;;;16169:62;-1:-1:-1;;;16247:18:13;;;16240:47;16304:19;;5526:103:5;16090:239:13;5526:103:5;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:5;2777:76;;;;-1:-1:-1;;;2777:76:5;;15300:2:13;2777:76:5;;;15282:21:13;15339:2;15319:18;;;15312:30;15378:34;15358:18;;;15351:62;15449:17;15429:18;;;15422:45;15484:19;;2777:76:5;15272:237:13;2777:76:5;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:5:o;7461:81:1:-;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;7514:14:1::1;:21:::0;;-1:-1:-1;;7514:21:1::1;7531:4;7514:21;::::0;;7461:81::o;1839:189:11:-;1038:6;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;-1:-1:-1;;;;;1927:22:11;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:11;;9386:2:13;1919:73:11::1;::::0;::::1;9368:21:13::0;9425:2;9405:18;;;9398:30;9464:34;9444:18;;;9437:62;-1:-1:-1;;;9515:18:13;;;9508:36;9561:19;;1919:73:11::1;9358:228:13::0;1919:73:11::1;2002:19;2012:8;2002:9;:19::i;5715:98:1:-:0;1038:6:11;;-1:-1:-1;;;;;1038:6:11;665:10:2;1178:23:11;1170:68;;;;-1:-1:-1;;;1170:68:11;;14529:2:13;1170:68:11;;;14511:21:13;;;14548:18;;;14541:30;-1:-1:-1;;;;;;;;;;;14587:18:13;;;14580:62;14659:18;;1170:68:11;14501:182:13;1170:68:11;5784:9:1::1;:22:::0;5715:98::o;773:112:3:-;864:14;;773:112::o;891:123::-;978:19;;996:1;978:19;;;891:123::o;718:377:0:-;1034:20;1080:8;;;718:377::o;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;-1:-1:-1;;;1568:40:5;;:104;;-1:-1:-1;;;;;;;1624:48:5;;-1:-1:-1;;;1624:48:5;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:4;;;1688:36:5;763:155:4;11008:171:5;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;12096:2:13;7549:73:5;;;12078:21:13;12135:2;12115:18;;;12108:30;12174:34;12154:18;;;12147:62;-1:-1:-1;;;12225:18:13;;;12218:42;12277:19;;7549:73:5;12068:234:13;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;7681:96;7440:344;-1:-1:-1;;;;7440:344:5:o;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;14890:2:13;10456:85:5;;;14872:21:13;14929:2;14909:18;;;14902:30;14968:34;14948:18;;;14941:62;-1:-1:-1;;;15019:18:13;;;15012:39;15068:19;;10456:85:5;14862:231:13;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;10984:2:13;10551:65:5;;;10966:21:13;11023:2;11003:18;;;10996:30;11062:34;11042:18;;;11035:62;-1:-1:-1;;;11113:18:13;;;11106:34;11157:19;;10551:65:5;10956:226:13;10551:65:5;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;4054:365:1:-;4165:9;;4154:7;4132:19;:9;864:14:3;;773:112;4132:19:1;:29;;;;:::i;:::-;:42;;4124:95;;;;-1:-1:-1;;;4124:95:1;;7739:2:13;4124:95:1;;;7721:21:13;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:13;;;7861:38;7916:19;;4124:95:1;7711:230:13;4124:95:1;4235:9;4230:183;4254:7;4250:1;:11;4230:183;;;4282:17;4302:19;:9;864:14:3;;773:112;4302:19:1;4282:39;;4335:21;:9;978:19:3;;996:1;978:19;;;891:123;4335:21:1;4370:32;4380:10;4392:9;4370;:32::i;:::-;-1:-1:-1;4263:3:1;;;;:::i;:::-;;;;4230:183;;9665:348:5;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:5;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:5;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:5;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:5;;;;;9938:16;;9970:36;9665:348;;:::o;2034:169:11:-;2108:6;;;-1:-1:-1;;;;;2124:17:11;;;-1:-1:-1;;;;;;2124:17:11;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;6547:307:5:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;8556:2:13;6736:111:5;;;8538:21:13;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;-1:-1:-1;;;8685:18:13;;;8678:48;8743:19;;6736:111:5;8528:240:13;6545:106:1;6605:13;6637:7;6630:14;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:12;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;8114:108:5;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;11732:782::-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:610:5;;11937:72;;-1:-1:-1;;;11937:72:5;;-1:-1:-1;;;;;11937:36:5;;;;;:72;;665:10:2;;11988:4:5;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12180:13:5;;12176:266;;12222:60;;-1:-1:-1;;;12222:60:5;;8556:2:13;12222:60:5;;;8538:21:13;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;-1:-1:-1;;;8685:18:13;;;8678:48;8743:19;;12222:60:5;8528:240:13;12176:266:5;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;-1:-1:-1;;;;;;12059:55:5;-1:-1:-1;;;12059:55:5;;-1:-1:-1;12052:62:5;;11898:610;-1:-1:-1;12493:4:5;11732:782;;;;;;:::o;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:5;;8556:2:13;8596:151:5;;;8538:21:13;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;-1:-1:-1;;;8685:18:13;;;8678:48;8743:19;;8596:151:5;8528:240:13;9076:372:5;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;13755:2:13;9147:61:5;;;13737:21:13;;;13774:18;;;13767:30;13833:34;13813:18;;;13806:62;13885:18;;9147:61:5;13727:182:13;9147:61:5;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;9218:58;;;;-1:-1:-1;;;9218:58:5;;10195:2:13;9218:58:5;;;10177:21:13;10234:2;10214:18;;;10207:30;10273;10253:18;;;10246:58;10321:18;;9218:58:5;10167:178:13;9218:58:5;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:13;;532:65;;522:2;;611:1;608;601:12;522:2;474:147;;;:::o;626:196::-;685:6;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;787:29;806:9;787:29;:::i;827:270::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:2;;;977:6;969;962:22;924:2;1005:29;1024:9;1005:29;:::i;:::-;995:39;;1053:38;1087:2;1076:9;1072:18;1053:38;:::i;:::-;1043:48;;914:183;;;;;:::o;1102:338::-;1179:6;1187;1195;1248:2;1236:9;1227:7;1223:23;1219:32;1216:2;;;1269:6;1261;1254:22;1216:2;1297:29;1316:9;1297:29;:::i;:::-;1287:39;;1345:38;1379:2;1368:9;1364:18;1345:38;:::i;:::-;1335:48;;1430:2;1419:9;1415:18;1402:32;1392:42;;1206:234;;;;;:::o;1445:696::-;1540:6;1548;1556;1564;1617:3;1605:9;1596:7;1592:23;1588:33;1585:2;;;1639:6;1631;1624:22;1585:2;1667:29;1686:9;1667:29;:::i;:::-;1657:39;;1715:38;1749:2;1738:9;1734:18;1715:38;:::i;:::-;1705:48;;1800:2;1789:9;1785:18;1772:32;1762:42;;1855:2;1844:9;1840:18;1827:32;1882:18;1874:6;1871:30;1868:2;;;1919:6;1911;1904:22;1868:2;1947:22;;2000:4;1992:13;;1988:27;-1:-1:-1;1978:2:13;;2034:6;2026;2019:22;1978:2;2062:73;2127:7;2122:2;2109:16;2104:2;2100;2096:11;2062:73;:::i;:::-;2052:83;;;1575:566;;;;;;;:::o;2146:367::-;2211:6;2219;2272:2;2260:9;2251:7;2247:23;2243:32;2240:2;;;2293:6;2285;2278:22;2240:2;2321:29;2340:9;2321:29;:::i;:::-;2311:39;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2230:283;;;;;:::o;2518:264::-;2586:6;2594;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:29;2715:9;2696:29;:::i;:::-;2686:39;2772:2;2757:18;;;;2744:32;;-1:-1:-1;;;2605:177:13:o;2787:255::-;2845:6;2898:2;2886:9;2877:7;2873:23;2869:32;2866:2;;;2919:6;2911;2904:22;2866:2;2963:9;2950:23;2982:30;3006:5;2982:30;:::i;3047:259::-;3116:6;3169:2;3157:9;3148:7;3144:23;3140:32;3137:2;;;3190:6;3182;3175:22;3137:2;3227:9;3221:16;3246:30;3270:5;3246:30;:::i;3311:480::-;3380:6;3433:2;3421:9;3412:7;3408:23;3404:32;3401:2;;;3454:6;3446;3439:22;3401:2;3499:9;3486:23;3532:18;3524:6;3521:30;3518:2;;;3569:6;3561;3554:22;3518:2;3597:22;;3650:4;3642:13;;3638:27;-1:-1:-1;3628:2:13;;3684:6;3676;3669:22;3628:2;3712:73;3777:7;3772:2;3759:16;3754:2;3750;3746:11;3712:73;:::i;3796:190::-;3855:6;3908:2;3896:9;3887:7;3883:23;3879:32;3876:2;;;3929:6;3921;3914:22;3876:2;-1:-1:-1;3957:23:13;;3866:120;-1:-1:-1;3866:120:13:o;3991:1076::-;4084:6;4092;4145:2;4133:9;4124:7;4120:23;4116:32;4113:2;;;4166:6;4158;4151:22;4113:2;4207:9;4194:23;4184:33;;4236:2;4289;4278:9;4274:18;4261:32;4312:18;4353:2;4345:6;4342:14;4339:2;;;4374:6;4366;4359:22;4339:2;4417:6;4406:9;4402:22;4392:32;;4462:7;4455:4;4451:2;4447:13;4443:27;4433:2;;4489:6;4481;4474:22;4433:2;4530;4517:16;4552:2;4548;4545:10;4542:2;;;4558:18;;:::i;:::-;4604:2;4601:1;4597:10;4587:20;;4627:28;4651:2;4647;4643:11;4627:28;:::i;:::-;4689:15;;;4720:12;;;;4752:11;;;4782;;;4778:20;;4775:33;-1:-1:-1;4772:2:13;;;4826:6;4818;4811:22;4772:2;4853:6;4844:15;;4868:169;4882:2;4879:1;4876:9;4868:169;;;4939:23;4958:3;4939:23;:::i;:::-;4927:36;;4900:1;4893:9;;;;;4983:12;;;;5015;;4868:169;;;4872:3;5056:5;5046:15;;;;;;;;4103:964;;;;;:::o;5072:258::-;5140:6;5148;5201:2;5189:9;5180:7;5176:23;5172:32;5169:2;;;5222:6;5214;5207:22;5169:2;-1:-1:-1;;5250:23:13;;;5320:2;5305:18;;;5292:32;;-1:-1:-1;5159:171:13:o;5335:257::-;5376:3;5414:5;5408:12;5441:6;5436:3;5429:19;5457:63;5513:6;5506:4;5501:3;5497:14;5490:4;5483:5;5479:16;5457:63;:::i;:::-;5574:2;5553:15;-1:-1:-1;;5549:29:13;5540:39;;;;5581:4;5536:50;;5384:208;-1:-1:-1;;5384:208:13:o;5597:470::-;5776:3;5814:6;5808:13;5830:53;5876:6;5871:3;5864:4;5856:6;5852:17;5830:53;:::i;:::-;5946:13;;5905:16;;;;5968:57;5946:13;5905:16;6002:4;5990:17;;5968:57;:::i;:::-;6041:20;;5784:283;-1:-1:-1;;;;5784:283:13:o;6303:511::-;6497:4;-1:-1:-1;;;;;6607:2:13;6599:6;6595:15;6584:9;6577:34;6659:2;6651:6;6647:15;6642:2;6631:9;6627:18;6620:43;;6699:6;6694:2;6683:9;6679:18;6672:34;6742:3;6737:2;6726:9;6722:18;6715:31;6763:45;6803:3;6792:9;6788:19;6780:6;6763:45;:::i;:::-;6755:53;6506:308;-1:-1:-1;;;;;;6506:308:13:o;7313:219::-;7462:2;7451:9;7444:21;7425:4;7482:44;7522:2;7511:9;7507:18;7499:6;7482:44;:::i;18137:275::-;18208:2;18202:9;18273:2;18254:13;;-1:-1:-1;;18250:27:13;18238:40;;18308:18;18293:34;;18329:22;;;18290:62;18287:2;;;18355:18;;:::i;:::-;18391:2;18384:22;18182:230;;-1:-1:-1;18182:230:13:o;18417:128::-;18457:3;18488:1;18484:6;18481:1;18478:13;18475:2;;;18494:18;;:::i;:::-;-1:-1:-1;18530:9:13;;18465:80::o;18550:120::-;18590:1;18616;18606:2;;18621:18;;:::i;:::-;-1:-1:-1;18655:9:13;;18596:74::o;18675:168::-;18715:7;18781:1;18777;18773:6;18769:14;18766:1;18763:21;18758:1;18751:9;18744:17;18740:45;18737:2;;;18788:18;;:::i;:::-;-1:-1:-1;18828:9:13;;18727:116::o;18848:125::-;18888:4;18916:1;18913;18910:8;18907:2;;;18921:18;;:::i;:::-;-1:-1:-1;18958:9:13;;18897:76::o;18978:258::-;19050:1;19060:113;19074:6;19071:1;19068:13;19060:113;;;19150:11;;;19144:18;19131:11;;;19124:39;19096:2;19089:10;19060:113;;;19191:6;19188:1;19185:13;19182:2;;;-1:-1:-1;;19226:1:13;19208:16;;19201:27;19031:205::o;19241:380::-;19320:1;19316:12;;;;19363;;;19384:2;;19438:4;19430:6;19426:17;19416:27;;19384:2;19491;19483:6;19480:14;19460:18;19457:38;19454:2;;;19537:10;19532:3;19528:20;19525:1;19518:31;19572:4;19569:1;19562:15;19600:4;19597:1;19590:15;19454:2;;19296:325;;;:::o;19626:135::-;19665:3;-1:-1:-1;;19686:17:13;;19683:2;;;19706:18;;:::i;:::-;-1:-1:-1;19753:1:13;19742:13;;19673:88::o;19766:112::-;19798:1;19824;19814:2;;19829:18;;:::i;:::-;-1:-1:-1;19863:9:13;;19804:74::o;19883:127::-;19944:10;19939:3;19935:20;19932:1;19925:31;19975:4;19972:1;19965:15;19999:4;19996:1;19989:15;20015:127;20076:10;20071:3;20067:20;20064:1;20057:31;20107:4;20104:1;20097:15;20131:4;20128:1;20121:15;20147:127;20208:10;20203:3;20199:20;20196:1;20189:31;20239:4;20236:1;20229:15;20263:4;20260:1;20253:15;20279:131;-1:-1:-1;;;;;;20353:32:13;;20343:43;;20333:2;;20400:1;20397;20390:12

Swarm Source

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