ETH Price: $3,378.38 (-1.91%)
Gas: 2 Gwei

Token

Candyverse (CANDYV)
 

Overview

Max Total Supply

1,585 CANDYV

Holders

390

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 CANDYV
0x820dfdc28a5d4dd681752190a6450c3f795a8116
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:
CANDYV

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 19: CANDYV.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";
import "./MerkleProof.sol";

contract CANDYV is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;
	
	uint256 public MAX_NFT = 10000;
	uint256 public MAX_BY_MINT_SALE = 20;
	uint256 public MAX_BY_MINT_PRESALE = 1;

	uint256 public PRESALE_PRICE = 7 * 10**16;
	uint256 public SALE_PRICE = 13 * 10**16;
	
	uint256 public PRESALE_MINTED;
	uint256 public SALE_MINTED;
	
    string public baseTokenURI;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	
	mapping (address => User) public users;
	
	bool public presaleEnable = false;
	bool public saleEnable = false;
	
    event CreateCANDYV(uint256 indexed id);
	
    constructor(string memory baseURI) ERC721("Candyverse", "CANDYV") {
		setBaseURI(baseURI);
        pause(true);
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable saleIsOpen {
        uint256 total = _totalSupply();
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			total.add(_count) <= MAX_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].presalemint.add(_count) <= MAX_BY_MINT_PRESALE, 
			"Exceeds max mint limit per wallet"
		);
		require(
			msg.value >= PRESALE_PRICE.mul(_count),
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			PRESALE_MINTED++;
        }
		users[msg.sender].presalemint = users[msg.sender].presalemint.add(_count);
    }
	
	function mintSaleNFT(uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
		require(
			users[msg.sender].salemint.add(_count) <= MAX_BY_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			total.add(_count) <= MAX_NFT, 
			"Exceeds max limit"
		);
		require(
			msg.value >= SALE_PRICE.mul(_count),
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint.add(_count);
    }
	
	function _mintAnElement(address _to) private {
	   uint256 randomNumber = random(MAX_NFT.sub(_tokenIdTracker.current()));
       _tokenIdTracker.increment();
       _safeMint(_to, randomNumber);
       emit CreateCANDYV(randomNumber);
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
	
    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }
	
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }

    function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function setPreSaleStatus(bool _status) public onlyOwner {
	   require(presaleEnable != _status);
       presaleEnable = _status;
    }
	
	function setSaleStatus(bool _status) public onlyOwner {
        require(saleEnable != _status);
		saleEnable = _status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_PRESALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
	
	function random(uint256 maxValue) internal view returns (uint256) {
        return uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, _tokenIdTracker.current()))) % maxValue;
    }
}

File 1 of 19: 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 19: 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 19: 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 19: 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 19: 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 19: 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 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 19: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
	 
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 10 of 19: 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 11 of 19: 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 12 of 19: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 13 of 19: 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 14 of 19: 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 15 of 19: MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 16 of 19: 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 17 of 19: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 19: 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":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateCANDYV","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c556014600d556001600e5566f8b0a10e470000600f556701cdda4faccd00006010556016805461ffff191690553480156200004357600080fd5b506040516200374e3803806200374e8339810160408190526200006691620003e8565b604080518082018252600a81526943616e6479766572736560b01b60208083019182528351808501909452600684526521a0a7222cab60d11b908401528151919291620000b69160009162000342565b508051620000cc90600190602084019062000342565b505050620000e9620000e36200011460201b60201c565b62000118565b600a805460ff60a01b1916905562000101816200016a565b6200010d6001620001d2565b50620005b4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017462000114565b6001600160a01b03166200018762000241565b6001600160a01b031614620001b95760405162461bcd60e51b8152600401620001b0906200052c565b60405180910390fd5b8051620001ce90601390602084019062000342565b5050565b620001dc62000114565b6001600160a01b0316620001ef62000241565b6001600160a01b031614620002185760405162461bcd60e51b8152600401620001b0906200052c565b6001811515141562000234576200022e62000250565b6200023e565b6200023e620002d1565b50565b600a546001600160a01b031690565b6200025a62000332565b156200027a5760405162461bcd60e51b8152600401620001b09062000502565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002b862000114565b604051620002c79190620004b7565b60405180910390a1565b620002db62000332565b620002fa5760405162461bcd60e51b8152600401620001b090620004cb565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620002b862000114565b600a54600160a01b900460ff1690565b828054620003509062000561565b90600052602060002090601f016020900481019282620003745760008555620003bf565b82601f106200038f57805160ff1916838001178555620003bf565b82800160010185558215620003bf579182015b82811115620003bf578251825591602001919060010190620003a2565b50620003cd929150620003d1565b5090565b5b80821115620003cd5760008155600101620003d2565b60006020808385031215620003fb578182fd5b82516001600160401b038082111562000412578384fd5b818501915085601f83011262000426578384fd5b8151818111156200043b576200043b6200059e565b604051601f8201601f19168101850183811182821017156200046157620004616200059e565b604052818152838201850188101562000478578586fd5b8592505b818310156200049b57838301850151818401860152918401916200047c565b81831115620004ac57858583830101525b979650505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200057657607f821691505b602082108114156200059857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61318a80620005c46000396000f3fe60806040526004361061027d5760003560e01c80636fdaddf11161014f578063a87430ba116100c1578063e60400b41161007a578063e60400b41461071d578063e985e9c514610732578063f176baaa14610752578063f2fde38b14610772578063fad71db414610792578063fe4ca847146107a75761027d565b8063a87430ba14610667578063a952686214610695578063b88d4fde146106a8578063c87b56dd146106c8578063d547cfb7146106e8578063d897833e146106fd5761027d565b80637f205a74116101135780637f205a74146105d55780638da5cb5b146105ea578063941e79fc146105ff578063945242c61461061f57806395d89b4114610632578063a22cb465146106475761027d565b80636fdaddf11461055657806370a082311461056b578063715018a61461058b5780637ec0912e146105a05780637ec18cf6146105c05761027d565b80633ccfd60b116101f357806355f804b3116101ac57806355f804b3146104ac5780635c975abb146104cc5780635e326b92146104e157806362dc6e21146105015780636352211e1461051657806365fccb52146105365761027d565b80633ccfd60b146103ea57806342842e0e146103ff57806342966c681461041f578063438b63001461043f5780634783f0ef1461046c5780634f6ccce71461048c5761027d565b8063095ea7b311610245578063095ea7b31461034b5780630990e5341461036b57806318160ddd1461038057806323b872dd146103955780632eb4a7ab146103b55780632f745c59146103ca5761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc57806308e5e45b14610329575b600080fd5b34801561028e57600080fd5b506102a261029d366004612634565b6107bc565b6040516102af919061286e565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612602565b6107cf565b005b3480156102e657600080fd5b506102ef61083a565b6040516102af9190612882565b34801561030857600080fd5b5061031c61031736600461261c565b6108cc565b6040516102af91906127d9565b34801561033557600080fd5b5061033e61090f565b6040516102af9190612879565b34801561035757600080fd5b506102d86103663660046125d9565b610915565b34801561037757600080fd5b5061033e6109ad565b34801561038c57600080fd5b5061033e6109b3565b3480156103a157600080fd5b506102d86103b03660046124fc565b6109b9565b3480156103c157600080fd5b5061033e6109f1565b3480156103d657600080fd5b5061033e6103e53660046125d9565b6109f7565b3480156103f657600080fd5b506102d8610a49565b34801561040b57600080fd5b506102d861041a3660046124fc565b610abb565b34801561042b57600080fd5b506102d861043a36600461261c565b610ad6565b34801561044b57600080fd5b5061045f61045a3660046124b0565b610b06565b6040516102af919061282a565b34801561047857600080fd5b506102d861048736600461261c565b610bc4565b34801561049857600080fd5b5061033e6104a736600461261c565b610c08565b3480156104b857600080fd5b506102d86104c736600461266c565b610c63565b3480156104d857600080fd5b506102a2610cb5565b3480156104ed57600080fd5b506102d86104fc366004612602565b610cc5565b34801561050d57600080fd5b5061033e610d2d565b34801561052257600080fd5b5061031c61053136600461261c565b610d33565b34801561054257600080fd5b506102d861055136600461261c565b610d68565b34801561056257600080fd5b5061033e610dac565b34801561057757600080fd5b5061033e6105863660046124b0565b610db2565b34801561059757600080fd5b506102d8610df6565b3480156105ac57600080fd5b506102d86105bb36600461261c565b610e41565b3480156105cc57600080fd5b506102a2610e85565b3480156105e157600080fd5b5061033e610e8e565b3480156105f657600080fd5b5061031c610e94565b34801561060b57600080fd5b506102d861061a36600461261c565b610ea3565b6102d861062d3660046126b2565b610f09565b34801561063e57600080fd5b506102ef611137565b34801561065357600080fd5b506102d86106623660046125b0565b611146565b34801561067357600080fd5b506106876106823660046124b0565b611214565b6040516102af929190612774565b6102d86106a336600461261c565b61122d565b3480156106b457600080fd5b506102d86106c3366004612537565b6113dc565b3480156106d457600080fd5b506102ef6106e336600461261c565b61141b565b3480156106f457600080fd5b506102ef61149e565b34801561070957600080fd5b506102d8610718366004612602565b61152c565b34801561072957600080fd5b5061033e6115a1565b34801561073e57600080fd5b506102a261074d3660046124ca565b6115a7565b34801561075e57600080fd5b506102d861076d36600461261c565b6115d5565b34801561077e57600080fd5b506102d861078d3660046124b0565b61163b565b34801561079e57600080fd5b5061033e6116a9565b3480156107b357600080fd5b506102a26116af565b60006107c7826116bd565b90505b919050565b6107d76116e2565b6001600160a01b03166107e8610e94565b6001600160a01b0316146108175760405162461bcd60e51b815260040161080e90612d9d565b60405180910390fd5b6001811515141561082f5761082a6116e6565b610837565b61083761175e565b50565b60606000805461084990613092565b80601f016020809104026020016040519081016040528092919081815260200182805461087590613092565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d7826117b8565b6108f35760405162461bcd60e51b815260040161080e90612d28565b506000908152600460205260409020546001600160a01b031690565b600d5481565b600061092082610d33565b9050806001600160a01b0316836001600160a01b031614156109545760405162461bcd60e51b815260040161080e90612e95565b806001600160a01b03166109666116e2565b6001600160a01b0316148061098257506109828161074d6116e2565b61099e5760405162461bcd60e51b815260040161080e90612bb6565b6109a883836117d5565b505050565b60125481565b60085490565b6109ca6109c46116e2565b82611843565b6109e65760405162461bcd60e51b815260040161080e90612ed6565b6109a88383836118c8565b60145481565b6000610a0283610db2565b8210610a205760405162461bcd60e51b815260040161080e9061290e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a516116e2565b6001600160a01b0316610a62610e94565b6001600160a01b031614610a885760405162461bcd60e51b815260040161080e90612d9d565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b6109a8838383604051806020016040528060008152506113dc565b610ae16109c46116e2565b610afd5760405162461bcd60e51b815260040161080e90612fb4565b610837816119f5565b60606000610b1383610db2565b905060008167ffffffffffffffff811115610b3e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b67578160200160208202803683370190505b50905060005b82811015610bbc57610b7f85826109f7565b828281518110610b9f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610bb4816130cd565b915050610b6d565b509392505050565b610bcc6116e2565b6001600160a01b0316610bdd610e94565b6001600160a01b031614610c035760405162461bcd60e51b815260040161080e90612d9d565b601455565b6000610c126109b3565b8210610c305760405162461bcd60e51b815260040161080e90612f68565b60088281548110610c5157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c6b6116e2565b6001600160a01b0316610c7c610e94565b6001600160a01b031614610ca25760405162461bcd60e51b815260040161080e90612d9d565b8051610ab7906013906020840190612380565b600a54600160a01b900460ff1690565b610ccd6116e2565b6001600160a01b0316610cde610e94565b6001600160a01b031614610d045760405162461bcd60e51b815260040161080e90612d9d565b60165460ff1615158115151415610d1a57600080fd5b6016805460ff1916911515919091179055565b600f5481565b6000818152600260205260408120546001600160a01b0316806107c75760405162461bcd60e51b815260040161080e90612c5d565b610d706116e2565b6001600160a01b0316610d81610e94565b6001600160a01b031614610da75760405162461bcd60e51b815260040161080e90612d9d565b600f55565b600c5481565b60006001600160a01b038216610dda5760405162461bcd60e51b815260040161080e90612c13565b506001600160a01b031660009081526003602052604090205490565b610dfe6116e2565b6001600160a01b0316610e0f610e94565b6001600160a01b031614610e355760405162461bcd60e51b815260040161080e90612d9d565b610e3f6000611a9c565b565b610e496116e2565b6001600160a01b0316610e5a610e94565b6001600160a01b031614610e805760405162461bcd60e51b815260040161080e90612d9d565b601055565b60165460ff1681565b60105481565b600a546001600160a01b031690565b610eab6116e2565b6001600160a01b0316610ebc610e94565b6001600160a01b031614610ee25760405162461bcd60e51b815260040161080e90612d9d565b80600c541015610f045760405162461bcd60e51b815260040161080e90612d74565b600e55565b600c54610f14611aee565b1115610f325760405162461bcd60e51b815260040161080e90612d06565b610f3a610e94565b6001600160a01b0316610f4b6116e2565b6001600160a01b031614610f7e57610f61610cb5565b15610f7e5760405162461bcd60e51b815260040161080e90612b4b565b6000610f88611aee565b9050600033604051602001610f9d9190612757565b60408051601f19818403018152919052805160209091012060165490915060ff16610fda5760405162461bcd60e51b815260040161080e90612b1b565b61101b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611aff565b6110375760405162461bcd60e51b815260040161080e90612b75565b600c546110448387611bba565b11156110625760405162461bcd60e51b815260040161080e90612ca6565b600e543360009081526015602052604090205461107f9087611bba565b111561109d5760405162461bcd60e51b815260040161080e90612f27565b600f546110aa9086611bc6565b3410156110c95760405162461bcd60e51b815260040161080e90612e6a565b60005b85811015611105576110dd33611bd2565b601180549060006110ed836130cd565b919050555080806110fd906130cd565b9150506110cc565b50336000908152601560205260409020546111209086611bba565b336000908152601560205260409020555050505050565b60606001805461084990613092565b61114e6116e2565b6001600160a01b0316826001600160a01b0316141561117f5760405162461bcd60e51b815260040161080e90612a6c565b806005600061118c6116e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111d06116e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611208919061286e565b60405180910390a35050565b6015602052600090815260409020805460019091015482565b600c54611238611aee565b11156112565760405162461bcd60e51b815260040161080e90612d06565b61125e610e94565b6001600160a01b031661126f6116e2565b6001600160a01b0316146112a257611285610cb5565b156112a25760405162461bcd60e51b815260040161080e90612b4b565b60006112ac611aee565b601654909150610100900460ff166112d65760405162461bcd60e51b815260040161080e90612aa3565b600d54336000908152601560205260409020600101546112f69084611bba565b11156113145760405162461bcd60e51b815260040161080e90612f27565b600c546113218284611bba565b111561133f5760405162461bcd60e51b815260040161080e90612ca6565b60105461134c9083611bc6565b34101561136b5760405162461bcd60e51b815260040161080e90612e6a565b60005b828110156113a75761137f33611bd2565b6012805490600061138f836130cd565b9190505550808061139f906130cd565b91505061136e565b50336000908152601560205260409020600101546113c59083611bba565b336000908152601560205260409020600101555050565b6113ed6113e76116e2565b83611843565b6114095760405162461bcd60e51b815260040161080e90612ed6565b61141584848484611c37565b50505050565b6060611426826117b8565b6114425760405162461bcd60e51b815260040161080e90612e1b565b600061144c611c6a565b9050600081511161146c5760405180602001604052806000815250611497565b8061147684611c79565b604051602001611487929190612782565b6040516020818303038152906040525b9392505050565b601380546114ab90613092565b80601f01602080910402602001604051908101604052809291908181526020018280546114d790613092565b80156115245780601f106114f957610100808354040283529160200191611524565b820191906000526020600020905b81548152906001019060200180831161150757829003601f168201915b505050505081565b6115346116e2565b6001600160a01b0316611545610e94565b6001600160a01b03161461156b5760405162461bcd60e51b815260040161080e90612d9d565b60165460ff610100909104161515811515141561158757600080fd5b601680549115156101000261ff0019909216919091179055565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115dd6116e2565b6001600160a01b03166115ee610e94565b6001600160a01b0316146116145760405162461bcd60e51b815260040161080e90612d9d565b80600c5410156116365760405162461bcd60e51b815260040161080e90612d74565b600d55565b6116436116e2565b6001600160a01b0316611654610e94565b6001600160a01b03161461167a5760405162461bcd60e51b815260040161080e90612d9d565b6001600160a01b0381166116a05760405162461bcd60e51b815260040161080e906129ab565b61083781611a9c565b600e5481565b601654610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b14806107c757506107c782611d94565b3390565b6116ee610cb5565b1561170b5760405162461bcd60e51b815260040161080e90612b4b565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117476116e2565b60405161175491906127d9565b60405180910390a1565b611766610cb5565b6117825760405162461bcd60e51b815260040161080e906128e0565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117476116e2565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180a82610d33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061184e826117b8565b61186a5760405162461bcd60e51b815260040161080e90612acf565b600061187583610d33565b9050806001600160a01b0316846001600160a01b031614806118b05750836001600160a01b03166118a5846108cc565b6001600160a01b0316145b806118c057506118c081856115a7565b949350505050565b826001600160a01b03166118db82610d33565b6001600160a01b0316146119015760405162461bcd60e51b815260040161080e90612dd2565b6001600160a01b0382166119275760405162461bcd60e51b815260040161080e90612a28565b611932838383611dd4565b61193d6000826117d5565b6001600160a01b038316600090815260036020526040812080546001929061196690849061304f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611994908490613004565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a0082610d33565b9050611a0e81600084611dd4565b611a196000836117d5565b6001600160a01b0381166000908152600360205260408120805460019290611a4290849061304f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611afa600b611ddf565b905090565b600081815b8551811015611baf576000868281518110611b2f57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611b70578281604051602001611b53929190612774565b604051602081830303815290604052805190602001209250611b9c565b8083604051602001611b83929190612774565b6040516020818303038152906040528051906020012092505b5080611ba7816130cd565b915050611b04565b509092149392505050565b60006114978284613004565b60006114978284613030565b6000611bf2611bed611be4600b611ddf565b600c5490611de3565b611def565b9050611bfe600b611e33565b611c088282611e3c565b60405181907fc52a4afaed74dc67bd60154e81a000d59c1047d698aa6b8e6e04d9a171b14e2c90600090a25050565b611c428484846118c8565b611c4e84848484611e56565b6114155760405162461bcd60e51b815260040161080e90612959565b60606013805461084990613092565b606081611c9e57506040805180820190915260018152600360fc1b60208201526107ca565b8160005b8115611cc85780611cb2816130cd565b9150611cc19050600a8361301c565b9150611ca2565b60008167ffffffffffffffff811115611cf157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d1b576020820181803683370190505b5090505b84156118c057611d3060018361304f565b9150611d3d600a866130e8565b611d48906030613004565b60f81b818381518110611d6b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d8d600a8661301c565b9450611d1f565b60006001600160e01b031982166380ac58cd60e01b1480611dc557506001600160e01b03198216635b5e139f60e01b145b806107c757506107c782611f71565b6109a8838383611f8a565b5490565b6000611497828461304f565b6000814233611dfe600b611ddf565b604051602001611e10939291906127b1565b6040516020818303038152906040528051906020012060001c6107c791906130e8565b80546001019055565b610ab7828260405180602001604052806000815250611fe1565b6000611e6a846001600160a01b0316612014565b15611f6657836001600160a01b031663150b7a02611e866116e2565b8786866040518563ffffffff1660e01b8152600401611ea894939291906127ed565b602060405180830381600087803b158015611ec257600080fd5b505af1925050508015611ef2575060408051601f3d908101601f19168201909252611eef91810190612650565b60015b611f4c573d808015611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b508051611f445760405162461bcd60e51b815260040161080e90612959565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c0565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f9583838361201a565b611f9d610e94565b6001600160a01b0316611fae6116e2565b6001600160a01b0316146109a857611fc4610cb5565b156109a85760405162461bcd60e51b815260040161080e90612895565b611feb83836120a3565b611ff86000848484611e56565b6109a85760405162461bcd60e51b815260040161080e90612959565b3b151590565b6120258383836109a8565b6001600160a01b0383166120415761203c81612182565b612064565b816001600160a01b0316836001600160a01b0316146120645761206483826121c6565b6001600160a01b0382166120805761207b81612263565b6109a8565b826001600160a01b0316826001600160a01b0316146109a8576109a8828261233c565b6001600160a01b0382166120c95760405162461bcd60e51b815260040161080e90612cd1565b6120d2816117b8565b156120ef5760405162461bcd60e51b815260040161080e906129f1565b6120fb60008383611dd4565b6001600160a01b0382166000908152600360205260408120805460019290612124908490613004565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016121d384610db2565b6121dd919061304f565b600083815260076020526040902054909150808214612230576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122759060019061304f565b600083815260096020526040812054600880549394509092849081106122ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234783610db2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461238c90613092565b90600052602060002090601f0160209004810192826123ae57600085556123f4565b82601f106123c757805160ff19168380011785556123f4565b828001600101855582156123f4579182015b828111156123f45782518255916020019190600101906123d9565b50612400929150612404565b5090565b5b808211156124005760008155600101612405565b600067ffffffffffffffff8084111561243457612434613128565b604051601f8501601f19168101602001828111828210171561245857612458613128565b60405284815291508183850186101561247057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ca57600080fd5b803580151581146107ca57600080fd5b6000602082840312156124c1578081fd5b61149782612489565b600080604083850312156124dc578081fd5b6124e583612489565b91506124f360208401612489565b90509250929050565b600080600060608486031215612510578081fd5b61251984612489565b925061252760208501612489565b9150604084013590509250925092565b6000806000806080858703121561254c578081fd5b61255585612489565b935061256360208601612489565b925060408501359150606085013567ffffffffffffffff811115612585578182fd5b8501601f81018713612595578182fd5b6125a487823560208401612419565b91505092959194509250565b600080604083850312156125c2578182fd5b6125cb83612489565b91506124f3602084016124a0565b600080604083850312156125eb578182fd5b6125f483612489565b946020939093013593505050565b600060208284031215612613578081fd5b611497826124a0565b60006020828403121561262d578081fd5b5035919050565b600060208284031215612645578081fd5b81356114978161313e565b600060208284031215612661578081fd5b81516114978161313e565b60006020828403121561267d578081fd5b813567ffffffffffffffff811115612693578182fd5b8201601f810184136126a3578182fd5b6118c084823560208401612419565b6000806000604084860312156126c6578283fd5b83359250602084013567ffffffffffffffff808211156126e4578384fd5b818601915086601f8301126126f7578384fd5b813581811115612705578485fd5b8760208083028501011115612718578485fd5b6020830194508093505050509250925092565b60008151808452612743816020860160208601613066565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612794818460208801613066565b8351908301906127a8818360208801613066565b01949350505050565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128209083018461272b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561286257835183529284019291840191600101612846565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611497602083018461272b565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60008219821115613017576130176130fc565b500190565b60008261302b5761302b613112565b500490565b600081600019048311821515161561304a5761304a6130fc565b500290565b600082821015613061576130616130fc565b500390565b60005b83811015613081578181015183820152602001613069565b838111156114155750506000910152565b6002810460018216806130a657607f821691505b602082108114156130c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e1576130e16130fc565b5060010190565b6000826130f7576130f7613112565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083757600080fdfea26469706673582212200b8d16856a355f5fd2fa15b95e157227a42db6d9c31bd25698d3f9e86cef425464736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50486553594c73534732557a7838634d6a53346364394572596e527a48523843526e62707a567046797971552f00000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636fdaddf11161014f578063a87430ba116100c1578063e60400b41161007a578063e60400b41461071d578063e985e9c514610732578063f176baaa14610752578063f2fde38b14610772578063fad71db414610792578063fe4ca847146107a75761027d565b8063a87430ba14610667578063a952686214610695578063b88d4fde146106a8578063c87b56dd146106c8578063d547cfb7146106e8578063d897833e146106fd5761027d565b80637f205a74116101135780637f205a74146105d55780638da5cb5b146105ea578063941e79fc146105ff578063945242c61461061f57806395d89b4114610632578063a22cb465146106475761027d565b80636fdaddf11461055657806370a082311461056b578063715018a61461058b5780637ec0912e146105a05780637ec18cf6146105c05761027d565b80633ccfd60b116101f357806355f804b3116101ac57806355f804b3146104ac5780635c975abb146104cc5780635e326b92146104e157806362dc6e21146105015780636352211e1461051657806365fccb52146105365761027d565b80633ccfd60b146103ea57806342842e0e146103ff57806342966c681461041f578063438b63001461043f5780634783f0ef1461046c5780634f6ccce71461048c5761027d565b8063095ea7b311610245578063095ea7b31461034b5780630990e5341461036b57806318160ddd1461038057806323b872dd146103955780632eb4a7ab146103b55780632f745c59146103ca5761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc57806308e5e45b14610329575b600080fd5b34801561028e57600080fd5b506102a261029d366004612634565b6107bc565b6040516102af919061286e565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612602565b6107cf565b005b3480156102e657600080fd5b506102ef61083a565b6040516102af9190612882565b34801561030857600080fd5b5061031c61031736600461261c565b6108cc565b6040516102af91906127d9565b34801561033557600080fd5b5061033e61090f565b6040516102af9190612879565b34801561035757600080fd5b506102d86103663660046125d9565b610915565b34801561037757600080fd5b5061033e6109ad565b34801561038c57600080fd5b5061033e6109b3565b3480156103a157600080fd5b506102d86103b03660046124fc565b6109b9565b3480156103c157600080fd5b5061033e6109f1565b3480156103d657600080fd5b5061033e6103e53660046125d9565b6109f7565b3480156103f657600080fd5b506102d8610a49565b34801561040b57600080fd5b506102d861041a3660046124fc565b610abb565b34801561042b57600080fd5b506102d861043a36600461261c565b610ad6565b34801561044b57600080fd5b5061045f61045a3660046124b0565b610b06565b6040516102af919061282a565b34801561047857600080fd5b506102d861048736600461261c565b610bc4565b34801561049857600080fd5b5061033e6104a736600461261c565b610c08565b3480156104b857600080fd5b506102d86104c736600461266c565b610c63565b3480156104d857600080fd5b506102a2610cb5565b3480156104ed57600080fd5b506102d86104fc366004612602565b610cc5565b34801561050d57600080fd5b5061033e610d2d565b34801561052257600080fd5b5061031c61053136600461261c565b610d33565b34801561054257600080fd5b506102d861055136600461261c565b610d68565b34801561056257600080fd5b5061033e610dac565b34801561057757600080fd5b5061033e6105863660046124b0565b610db2565b34801561059757600080fd5b506102d8610df6565b3480156105ac57600080fd5b506102d86105bb36600461261c565b610e41565b3480156105cc57600080fd5b506102a2610e85565b3480156105e157600080fd5b5061033e610e8e565b3480156105f657600080fd5b5061031c610e94565b34801561060b57600080fd5b506102d861061a36600461261c565b610ea3565b6102d861062d3660046126b2565b610f09565b34801561063e57600080fd5b506102ef611137565b34801561065357600080fd5b506102d86106623660046125b0565b611146565b34801561067357600080fd5b506106876106823660046124b0565b611214565b6040516102af929190612774565b6102d86106a336600461261c565b61122d565b3480156106b457600080fd5b506102d86106c3366004612537565b6113dc565b3480156106d457600080fd5b506102ef6106e336600461261c565b61141b565b3480156106f457600080fd5b506102ef61149e565b34801561070957600080fd5b506102d8610718366004612602565b61152c565b34801561072957600080fd5b5061033e6115a1565b34801561073e57600080fd5b506102a261074d3660046124ca565b6115a7565b34801561075e57600080fd5b506102d861076d36600461261c565b6115d5565b34801561077e57600080fd5b506102d861078d3660046124b0565b61163b565b34801561079e57600080fd5b5061033e6116a9565b3480156107b357600080fd5b506102a26116af565b60006107c7826116bd565b90505b919050565b6107d76116e2565b6001600160a01b03166107e8610e94565b6001600160a01b0316146108175760405162461bcd60e51b815260040161080e90612d9d565b60405180910390fd5b6001811515141561082f5761082a6116e6565b610837565b61083761175e565b50565b60606000805461084990613092565b80601f016020809104026020016040519081016040528092919081815260200182805461087590613092565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d7826117b8565b6108f35760405162461bcd60e51b815260040161080e90612d28565b506000908152600460205260409020546001600160a01b031690565b600d5481565b600061092082610d33565b9050806001600160a01b0316836001600160a01b031614156109545760405162461bcd60e51b815260040161080e90612e95565b806001600160a01b03166109666116e2565b6001600160a01b0316148061098257506109828161074d6116e2565b61099e5760405162461bcd60e51b815260040161080e90612bb6565b6109a883836117d5565b505050565b60125481565b60085490565b6109ca6109c46116e2565b82611843565b6109e65760405162461bcd60e51b815260040161080e90612ed6565b6109a88383836118c8565b60145481565b6000610a0283610db2565b8210610a205760405162461bcd60e51b815260040161080e9061290e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a516116e2565b6001600160a01b0316610a62610e94565b6001600160a01b031614610a885760405162461bcd60e51b815260040161080e90612d9d565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b6109a8838383604051806020016040528060008152506113dc565b610ae16109c46116e2565b610afd5760405162461bcd60e51b815260040161080e90612fb4565b610837816119f5565b60606000610b1383610db2565b905060008167ffffffffffffffff811115610b3e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b67578160200160208202803683370190505b50905060005b82811015610bbc57610b7f85826109f7565b828281518110610b9f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610bb4816130cd565b915050610b6d565b509392505050565b610bcc6116e2565b6001600160a01b0316610bdd610e94565b6001600160a01b031614610c035760405162461bcd60e51b815260040161080e90612d9d565b601455565b6000610c126109b3565b8210610c305760405162461bcd60e51b815260040161080e90612f68565b60088281548110610c5157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c6b6116e2565b6001600160a01b0316610c7c610e94565b6001600160a01b031614610ca25760405162461bcd60e51b815260040161080e90612d9d565b8051610ab7906013906020840190612380565b600a54600160a01b900460ff1690565b610ccd6116e2565b6001600160a01b0316610cde610e94565b6001600160a01b031614610d045760405162461bcd60e51b815260040161080e90612d9d565b60165460ff1615158115151415610d1a57600080fd5b6016805460ff1916911515919091179055565b600f5481565b6000818152600260205260408120546001600160a01b0316806107c75760405162461bcd60e51b815260040161080e90612c5d565b610d706116e2565b6001600160a01b0316610d81610e94565b6001600160a01b031614610da75760405162461bcd60e51b815260040161080e90612d9d565b600f55565b600c5481565b60006001600160a01b038216610dda5760405162461bcd60e51b815260040161080e90612c13565b506001600160a01b031660009081526003602052604090205490565b610dfe6116e2565b6001600160a01b0316610e0f610e94565b6001600160a01b031614610e355760405162461bcd60e51b815260040161080e90612d9d565b610e3f6000611a9c565b565b610e496116e2565b6001600160a01b0316610e5a610e94565b6001600160a01b031614610e805760405162461bcd60e51b815260040161080e90612d9d565b601055565b60165460ff1681565b60105481565b600a546001600160a01b031690565b610eab6116e2565b6001600160a01b0316610ebc610e94565b6001600160a01b031614610ee25760405162461bcd60e51b815260040161080e90612d9d565b80600c541015610f045760405162461bcd60e51b815260040161080e90612d74565b600e55565b600c54610f14611aee565b1115610f325760405162461bcd60e51b815260040161080e90612d06565b610f3a610e94565b6001600160a01b0316610f4b6116e2565b6001600160a01b031614610f7e57610f61610cb5565b15610f7e5760405162461bcd60e51b815260040161080e90612b4b565b6000610f88611aee565b9050600033604051602001610f9d9190612757565b60408051601f19818403018152919052805160209091012060165490915060ff16610fda5760405162461bcd60e51b815260040161080e90612b1b565b61101b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611aff565b6110375760405162461bcd60e51b815260040161080e90612b75565b600c546110448387611bba565b11156110625760405162461bcd60e51b815260040161080e90612ca6565b600e543360009081526015602052604090205461107f9087611bba565b111561109d5760405162461bcd60e51b815260040161080e90612f27565b600f546110aa9086611bc6565b3410156110c95760405162461bcd60e51b815260040161080e90612e6a565b60005b85811015611105576110dd33611bd2565b601180549060006110ed836130cd565b919050555080806110fd906130cd565b9150506110cc565b50336000908152601560205260409020546111209086611bba565b336000908152601560205260409020555050505050565b60606001805461084990613092565b61114e6116e2565b6001600160a01b0316826001600160a01b0316141561117f5760405162461bcd60e51b815260040161080e90612a6c565b806005600061118c6116e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111d06116e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611208919061286e565b60405180910390a35050565b6015602052600090815260409020805460019091015482565b600c54611238611aee565b11156112565760405162461bcd60e51b815260040161080e90612d06565b61125e610e94565b6001600160a01b031661126f6116e2565b6001600160a01b0316146112a257611285610cb5565b156112a25760405162461bcd60e51b815260040161080e90612b4b565b60006112ac611aee565b601654909150610100900460ff166112d65760405162461bcd60e51b815260040161080e90612aa3565b600d54336000908152601560205260409020600101546112f69084611bba565b11156113145760405162461bcd60e51b815260040161080e90612f27565b600c546113218284611bba565b111561133f5760405162461bcd60e51b815260040161080e90612ca6565b60105461134c9083611bc6565b34101561136b5760405162461bcd60e51b815260040161080e90612e6a565b60005b828110156113a75761137f33611bd2565b6012805490600061138f836130cd565b9190505550808061139f906130cd565b91505061136e565b50336000908152601560205260409020600101546113c59083611bba565b336000908152601560205260409020600101555050565b6113ed6113e76116e2565b83611843565b6114095760405162461bcd60e51b815260040161080e90612ed6565b61141584848484611c37565b50505050565b6060611426826117b8565b6114425760405162461bcd60e51b815260040161080e90612e1b565b600061144c611c6a565b9050600081511161146c5760405180602001604052806000815250611497565b8061147684611c79565b604051602001611487929190612782565b6040516020818303038152906040525b9392505050565b601380546114ab90613092565b80601f01602080910402602001604051908101604052809291908181526020018280546114d790613092565b80156115245780601f106114f957610100808354040283529160200191611524565b820191906000526020600020905b81548152906001019060200180831161150757829003601f168201915b505050505081565b6115346116e2565b6001600160a01b0316611545610e94565b6001600160a01b03161461156b5760405162461bcd60e51b815260040161080e90612d9d565b60165460ff610100909104161515811515141561158757600080fd5b601680549115156101000261ff0019909216919091179055565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6115dd6116e2565b6001600160a01b03166115ee610e94565b6001600160a01b0316146116145760405162461bcd60e51b815260040161080e90612d9d565b80600c5410156116365760405162461bcd60e51b815260040161080e90612d74565b600d55565b6116436116e2565b6001600160a01b0316611654610e94565b6001600160a01b03161461167a5760405162461bcd60e51b815260040161080e90612d9d565b6001600160a01b0381166116a05760405162461bcd60e51b815260040161080e906129ab565b61083781611a9c565b600e5481565b601654610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b14806107c757506107c782611d94565b3390565b6116ee610cb5565b1561170b5760405162461bcd60e51b815260040161080e90612b4b565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117476116e2565b60405161175491906127d9565b60405180910390a1565b611766610cb5565b6117825760405162461bcd60e51b815260040161080e906128e0565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117476116e2565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180a82610d33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061184e826117b8565b61186a5760405162461bcd60e51b815260040161080e90612acf565b600061187583610d33565b9050806001600160a01b0316846001600160a01b031614806118b05750836001600160a01b03166118a5846108cc565b6001600160a01b0316145b806118c057506118c081856115a7565b949350505050565b826001600160a01b03166118db82610d33565b6001600160a01b0316146119015760405162461bcd60e51b815260040161080e90612dd2565b6001600160a01b0382166119275760405162461bcd60e51b815260040161080e90612a28565b611932838383611dd4565b61193d6000826117d5565b6001600160a01b038316600090815260036020526040812080546001929061196690849061304f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611994908490613004565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a0082610d33565b9050611a0e81600084611dd4565b611a196000836117d5565b6001600160a01b0381166000908152600360205260408120805460019290611a4290849061304f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611afa600b611ddf565b905090565b600081815b8551811015611baf576000868281518110611b2f57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611b70578281604051602001611b53929190612774565b604051602081830303815290604052805190602001209250611b9c565b8083604051602001611b83929190612774565b6040516020818303038152906040528051906020012092505b5080611ba7816130cd565b915050611b04565b509092149392505050565b60006114978284613004565b60006114978284613030565b6000611bf2611bed611be4600b611ddf565b600c5490611de3565b611def565b9050611bfe600b611e33565b611c088282611e3c565b60405181907fc52a4afaed74dc67bd60154e81a000d59c1047d698aa6b8e6e04d9a171b14e2c90600090a25050565b611c428484846118c8565b611c4e84848484611e56565b6114155760405162461bcd60e51b815260040161080e90612959565b60606013805461084990613092565b606081611c9e57506040805180820190915260018152600360fc1b60208201526107ca565b8160005b8115611cc85780611cb2816130cd565b9150611cc19050600a8361301c565b9150611ca2565b60008167ffffffffffffffff811115611cf157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d1b576020820181803683370190505b5090505b84156118c057611d3060018361304f565b9150611d3d600a866130e8565b611d48906030613004565b60f81b818381518110611d6b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d8d600a8661301c565b9450611d1f565b60006001600160e01b031982166380ac58cd60e01b1480611dc557506001600160e01b03198216635b5e139f60e01b145b806107c757506107c782611f71565b6109a8838383611f8a565b5490565b6000611497828461304f565b6000814233611dfe600b611ddf565b604051602001611e10939291906127b1565b6040516020818303038152906040528051906020012060001c6107c791906130e8565b80546001019055565b610ab7828260405180602001604052806000815250611fe1565b6000611e6a846001600160a01b0316612014565b15611f6657836001600160a01b031663150b7a02611e866116e2565b8786866040518563ffffffff1660e01b8152600401611ea894939291906127ed565b602060405180830381600087803b158015611ec257600080fd5b505af1925050508015611ef2575060408051601f3d908101601f19168201909252611eef91810190612650565b60015b611f4c573d808015611f20576040519150601f19603f3d011682016040523d82523d6000602084013e611f25565b606091505b508051611f445760405162461bcd60e51b815260040161080e90612959565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c0565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f9583838361201a565b611f9d610e94565b6001600160a01b0316611fae6116e2565b6001600160a01b0316146109a857611fc4610cb5565b156109a85760405162461bcd60e51b815260040161080e90612895565b611feb83836120a3565b611ff86000848484611e56565b6109a85760405162461bcd60e51b815260040161080e90612959565b3b151590565b6120258383836109a8565b6001600160a01b0383166120415761203c81612182565b612064565b816001600160a01b0316836001600160a01b0316146120645761206483826121c6565b6001600160a01b0382166120805761207b81612263565b6109a8565b826001600160a01b0316826001600160a01b0316146109a8576109a8828261233c565b6001600160a01b0382166120c95760405162461bcd60e51b815260040161080e90612cd1565b6120d2816117b8565b156120ef5760405162461bcd60e51b815260040161080e906129f1565b6120fb60008383611dd4565b6001600160a01b0382166000908152600360205260408120805460019290612124908490613004565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016121d384610db2565b6121dd919061304f565b600083815260076020526040902054909150808214612230576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122759060019061304f565b600083815260096020526040812054600880549394509092849081106122ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106122da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061232057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061234783610db2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461238c90613092565b90600052602060002090601f0160209004810192826123ae57600085556123f4565b82601f106123c757805160ff19168380011785556123f4565b828001600101855582156123f4579182015b828111156123f45782518255916020019190600101906123d9565b50612400929150612404565b5090565b5b808211156124005760008155600101612405565b600067ffffffffffffffff8084111561243457612434613128565b604051601f8501601f19168101602001828111828210171561245857612458613128565b60405284815291508183850186101561247057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ca57600080fd5b803580151581146107ca57600080fd5b6000602082840312156124c1578081fd5b61149782612489565b600080604083850312156124dc578081fd5b6124e583612489565b91506124f360208401612489565b90509250929050565b600080600060608486031215612510578081fd5b61251984612489565b925061252760208501612489565b9150604084013590509250925092565b6000806000806080858703121561254c578081fd5b61255585612489565b935061256360208601612489565b925060408501359150606085013567ffffffffffffffff811115612585578182fd5b8501601f81018713612595578182fd5b6125a487823560208401612419565b91505092959194509250565b600080604083850312156125c2578182fd5b6125cb83612489565b91506124f3602084016124a0565b600080604083850312156125eb578182fd5b6125f483612489565b946020939093013593505050565b600060208284031215612613578081fd5b611497826124a0565b60006020828403121561262d578081fd5b5035919050565b600060208284031215612645578081fd5b81356114978161313e565b600060208284031215612661578081fd5b81516114978161313e565b60006020828403121561267d578081fd5b813567ffffffffffffffff811115612693578182fd5b8201601f810184136126a3578182fd5b6118c084823560208401612419565b6000806000604084860312156126c6578283fd5b83359250602084013567ffffffffffffffff808211156126e4578384fd5b818601915086601f8301126126f7578384fd5b813581811115612705578485fd5b8760208083028501011115612718578485fd5b6020830194508093505050509250925092565b60008151808452612743816020860160208601613066565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612794818460208801613066565b8351908301906127a8818360208801613066565b01949350505050565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128209083018461272b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561286257835183529284019291840191600101612846565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611497602083018461272b565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60008219821115613017576130176130fc565b500190565b60008261302b5761302b613112565b500490565b600081600019048311821515161561304a5761304a6130fc565b500290565b600082821015613061576130616130fc565b500390565b60005b83811015613081578181015183820152602001613069565b838111156114155750506000910152565b6002810460018216806130a657607f821691505b602082108114156130c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e1576130e16130fc565b5060010190565b6000826130f7576130f7613112565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083757600080fdfea26469706673582212200b8d16856a355f5fd2fa15b95e157227a42db6d9c31bd25698d3f9e86cef425464736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50486553594c73534732557a7838634d6a53346364394572596e527a48523843526e62707a567046797971552f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmPHeSYLsSG2Uzx8cMjS4cd9ErYnRzHR8CRnbpzVpFyyqU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50486553594c73534732557a7838634d6a533463643945
Arg [3] : 72596e527a48523843526e62707a567046797971552f00000000000000000000


Deployed Bytecode Sourcemap

292:5513:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4468:179;;;;;;;;;;-1:-1:-1;4468:179:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3906:154;;;;;;;;;;-1:-1:-1;3906:154:1;;;;;:::i;:::-;;:::i;:::-;;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;532:36:1:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3508:411:5:-;;;;;;;;;;-1:-1:-1;3508:411:5;;;;;:::i;:::-;;:::i;740:26:1:-;;;;;;;;;;;;;:::i;1577:113:7:-;;;;;;;;;;;;;:::i;4875:339:5:-;;;;;;;;;;-1:-1:-1;4875:339:5;;;;;:::i;:::-;;:::i;806:25:1:-;;;;;;;;;;;;;:::i;1245:256:7:-;;;;;;;;;;-1:-1:-1;1245:256:7;;;;;:::i;:::-;;:::i;4069:143:1:-;;;;;;;;;;;;;:::i;5285:185:5:-;;;;;;;;;;-1:-1:-1;5285:185:5;;;;;:::i;:::-;;:::i;456:245:6:-;;;;;;;;;;-1:-1:-1;456:245:6;;;;;:::i;:::-;;:::i;3549:349:1:-;;;;;;;;;;-1:-1:-1;3549:349:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5507:94::-;;;;;;;;;;-1:-1:-1;5507:94:1;;;;;:::i;:::-;;:::i;1767:233:7:-;;;;;;;;;;-1:-1:-1;1767:233:7;;;;;:::i;:::-;;:::i;3439:101:1:-;;;;;;;;;;-1:-1:-1;3439:101:1;;;;;:::i;:::-;;:::i;1072:86:16:-;;;;;;;;;;;;;:::i;4877:138:1:-;;;;;;;;;;-1:-1:-1;4877:138:1;;;;;:::i;:::-;;:::i;616:41::-;;;;;;;;;;;;;:::i;2120:239:5:-;;;;;;;;;;-1:-1:-1;2120:239:5;;;;;:::i;:::-;;:::i;4653:108:1:-;;;;;;;;;;-1:-1:-1;4653:108:1;;;;;:::i;:::-;;:::i;498:30::-;;;;;;;;;;;;;:::i;1850:208:5:-;;;;;;;;;;-1:-1:-1;1850:208:5;;;;;:::i;:::-;;:::i;1650:94:15:-;;;;;;;;;;;;;:::i;4769:102:1:-;;;;;;;;;;-1:-1:-1;4769:102:1;;;;;:::i;:::-;;:::i;954:33::-;;;;;;;;;;;;;:::i;661:39::-;;;;;;;;;;;;;:::i;999:87:15:-;;;;;;;;;;;;;:::i;5328:173:1:-;;;;;;;;;;-1:-1:-1;5328:173:1;;;;;:::i;:::-;;:::i;1528:879::-;;;;;;:::i;:::-;;:::i;2595:104:5:-;;;;;;;;;;;;;:::i;4278:295::-;;;;;;;;;;-1:-1:-1;4278:295:5;;;;;:::i;:::-;;:::i;909:38:1:-;;;;;;;;;;-1:-1:-1;909:38:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2413:645::-;;;;;;:::i;:::-;;:::i;5541:328:5:-;;;;;;;;;;-1:-1:-1;5541:328:5;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:5;;;;;:::i;:::-;;:::i;776:26:1:-;;;;;;;;;;;;;:::i;5021:128::-;;;;;;;;;;-1:-1:-1;5021:128:1;;;;;:::i;:::-;;:::i;707:29::-;;;;;;;;;;;;;:::i;4644:164:5:-;;;;;;;;;;-1:-1:-1;4644:164:5;;;;;:::i;:::-;;:::i;5155:167:1:-;;;;;;;;;;-1:-1:-1;5155:167:1;;;;;:::i;:::-;;:::i;1899:192:15:-;;;;;;;;;;-1:-1:-1;1899:192:15;;;;;:::i;:::-;;:::i;572:38:1:-;;;;;;;;;;;;;:::i;991:30::-;;;;;;;;;;;;;:::i;4468:179::-;4579:4;4603:36;4627:11;4603:23;:36::i;:::-;4596:43;;4468:179;;;;:::o;3906:154::-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;;;;;;;;;3970:4:1::1;3963:11:::0;::::1;;;3959:73;;;3991:8;:6;:8::i;:::-;4014:7;;3959:73;4042:10;:8;:10::i;:::-;3906:154:::0;:::o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;-1:-1:-1;;;4081:73:5;;;;;;;:::i;:::-;-1:-1:-1;4174:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:5;;3985:221::o;532:36:1:-;;;;:::o;3508:411:5:-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:5;:2;-1:-1:-1;;;;;3647:11:5;;;3639:57;;;;-1:-1:-1;;;3639:57:5;;;;;;;:::i;:::-;3747:5;-1:-1:-1;;;;;3731:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3731:21:5;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:5;;;;;;;:::i;:::-;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3508:411;;;:::o;740:26:1:-;;;;:::o;1577:113:7:-;1665:10;:17;1577:113;:::o;4875:339:5:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:5;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;806:25:1:-;;;;:::o;1245:256:7:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:7;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;4069:143:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;4167:37:1::1;::::0;4135:21:::1;::::0;4175:10:::1;::::0;4167:37;::::1;;;::::0;4135:21;;4117:15:::1;4167:37:::0;4117:15;4167:37;4135:21;4175:10;4167:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:15;4069:143:1:o:0;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;456:245:6:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:6;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;3549:349:1:-;3611:16;3640:18;3661:17;3671:6;3661:9;:17::i;:::-;3640:38;;3689:25;3731:10;3717:25;;;;;;-1:-1:-1;;;3717:25:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3717:25:1;;3689:53;;3758:9;3753:112;3777:10;3773:1;:14;3753:112;;;3823:30;3843:6;3851:1;3823:19;:30::i;:::-;3809:8;3818:1;3809:11;;;;;;-1:-1:-1;;;3809:11:1;;;;;;;;;;;;;;;;;;:44;3789:3;;;;:::i;:::-;;;;3753:112;;;-1:-1:-1;3882:8:1;3549:349;-1:-1:-1;;;3549:349:1:o;5507:94::-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5576:10:1::1;:20:::0;5507:94::o;1767:233:7:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:7;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:7;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;3439:101:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;3510:22:1;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;1072:86:16:-:0;1143:7;;-1:-1:-1;;;1143:7:16;;;;;1072:86::o;4877:138:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;4949:13:1::1;::::0;::::1;;:24;;::::0;::::1;;;;4941:33;;;::::0;::::1;;4984:13;:23:::0;;-1:-1:-1;;4984:23:1::1;::::0;::::1;;::::0;;;::::1;::::0;;4877:138::o;616:41::-;;;;:::o;2120:239:5:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:5;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:5;;;;;;;:::i;4653:108:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;4729:13:1::1;:24:::0;4653:108::o;498:30::-;;;;:::o;1850:208:5:-;1922:7;-1:-1:-1;;;;;1950:19:5;;1942:74;;;;-1:-1:-1;;;1942:74:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2034:16:5;;;;;:9;:16;;;;;;;1850:208::o;1650:94:15:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;4769:102:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;4842:10:1::1;:21:::0;4769:102::o;954:33::-;;;;;;:::o;661:39::-;;;;:::o;999:87:15:-;1072:6;;-1:-1:-1;;;;;1072:6:15;999:87;:::o;5328:173:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5424:8:1::1;5413:7;;:19;;5405:47;;;;-1:-1:-1::0;;;5405:47:1::1;;;;;;;:::i;:::-;5463:19;:30:::0;5328:173::o;1528:879::-;1265:7;;1247:14;:12;:14::i;:::-;:25;;1239:46;;;;-1:-1:-1;;;1239:46:1;;;;;;;:::i;:::-;1316:7;:5;:7::i;:::-;-1:-1:-1;;;;;1300:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1300:23:1;;1296:94;;1349:8;:6;:8::i;:::-;1348:9;1340:38;;;;-1:-1:-1;;;1340:38:1;;;;;;;:::i;:::-;1637:13:::1;1653:14;:12;:14::i;:::-;1637:30;;1672:12;1714:10;1697:28;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;1697:28:1;;::::1;::::0;;;;;;1687:39;;1697:28:::1;1687:39:::0;;::::1;::::0;1744:13:::1;::::0;1687:39;;-1:-1:-1;1744:13:1::1;;1731:62;;;;-1:-1:-1::0;;;1731:62:1::1;;;;;;;:::i;:::-;1811:49;1830:11;;1811:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;1843:10:1::1;::::0;;-1:-1:-1;1855:4:1;;-1:-1:-1;1811:18:1::1;:49::i;:::-;1798:109;;;;-1:-1:-1::0;;;1798:109:1::1;;;;;;;:::i;:::-;1946:7;::::0;1925:17:::1;:5:::0;1935:6;1925:9:::1;:17::i;:::-;:28;;1912:72;;;;-1:-1:-1::0;;;1912:72:1::1;;;;;;;:::i;:::-;2047:19;::::0;2008:10:::1;2002:17;::::0;;;:5:::1;:17;::::0;;;;:29;:41:::1;::::0;2036:6;2002:33:::1;:41::i;:::-;:64;;1989:124;;;;-1:-1:-1::0;;;1989:124:1::1;;;;;;;:::i;:::-;2144:13;::::0;:25:::1;::::0;2162:6;2144:17:::1;:25::i;:::-;2131:9;:38;;2118:81;;;;-1:-1:-1::0;;;2118:81:1::1;;;;;;;:::i;:::-;2215:9;2210:112;2234:6;2230:1;:10;2210:112;;;2262:26;2277:10;2262:14;:26::i;:::-;2294:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;2242:3;;;;;:::i;:::-;;;;2210:112;;;-1:-1:-1::0;2364:10:1::1;2358:17;::::0;;;:5:::1;:17;::::0;;;;:29;:41:::1;::::0;2392:6;2358:33:::1;:41::i;:::-;2332:10;2326:17;::::0;;;:5:::1;:17;::::0;;;;:73;-1:-1:-1;;;;;1528:879:1:o;2595:104:5:-;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4381:24:5;:8;-1:-1:-1;;;;;4381:24:5;;;4373:62;;;;-1:-1:-1;;;4373:62:5;;;;;;;:::i;:::-;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;-1:-1:-1;;;;;4448:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4448:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:5;;;;;;;;;;;4532:12;:10;:12::i;:::-;-1:-1:-1;;;;;4517:48:5;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;909:38:1:-;;;;;;;;;;;;;;;;;;;:::o;2413:645::-;1265:7;;1247:14;:12;:14::i;:::-;:25;;1239:46;;;;-1:-1:-1;;;1239:46:1;;;;;;;:::i;:::-;1316:7;:5;:7::i;:::-;-1:-1:-1;;;;;1300:23:1;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1300:23:1;;1296:94;;1349:8;:6;:8::i;:::-;1348:9;1340:38;;;;-1:-1:-1;;;1340:38:1;;;;;;;:::i;:::-;2487:13:::1;2503:14;:12;:14::i;:::-;2535:10;::::0;2487:30;;-1:-1:-1;2535:10:1::1;::::0;::::1;;;2522:55;;;;-1:-1:-1::0;;;2522:55:1::1;;;;;;;:::i;:::-;2637:16;::::0;2601:10:::1;2595:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:38:::1;::::0;2626:6;2595:30:::1;:38::i;:::-;:58;;2582:117;;;;-1:-1:-1::0;;;2582:117:1::1;;;;;;;:::i;:::-;2738:7;::::0;2717:17:::1;:5:::0;2727:6;2717:9:::1;:17::i;:::-;:28;;2704:72;;;;-1:-1:-1::0;;;2704:72:1::1;;;;;;;:::i;:::-;2807:10;::::0;:22:::1;::::0;2822:6;2807:14:::1;:22::i;:::-;2794:9;:35;;2781:78;;;;-1:-1:-1::0;;;2781:78:1::1;;;;;;;:::i;:::-;2875:9;2870:109;2894:6;2890:1;:10;2870:109;;;2922:26;2937:10;2922:14;:26::i;:::-;2954:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;2902:3;;;;;:::i;:::-;;;;2870:109;;;-1:-1:-1::0;3018:10:1::1;3012:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:38:::1;::::0;3043:6;3012:30:::1;:38::i;:::-;2989:10;2983:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;:67:::0;-1:-1:-1;;2413:645:1:o;5541:328:5:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:5;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;-1:-1:-1;;;2869:76:5;;;;;;;:::i;:::-;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:5:o;776:26:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5021:128::-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5094:10:1::1;::::0;::::1;;::::0;;::::1;;:21;;::::0;::::1;;;;5086:30;;;::::0;::::1;;5121:10;:20:::0;;;::::1;;;;-1:-1:-1::0;;5121:20:1;;::::1;::::0;;;::::1;::::0;;5021:128::o;707:29::-;;;;:::o;4644:164:5:-;-1:-1:-1;;;;;4765:25:5;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164::o;5155:167:1:-;1230:12:15;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5248:8:1::1;5237:7;;:19;;5229:47;;;;-1:-1:-1::0;;;5229:47:1::1;;;;;;;:::i;:::-;5287:16;:27:::0;5155:167::o;1899:192:15:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:15;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:15;;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:15;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:15::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;572:38:1:-:0;;;;:::o;991:30::-;;;;;;;;;:::o;937:224:7:-;1039:4;-1:-1:-1;;;;;;1063:50:7;;-1:-1:-1;;;1063:50:7;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:2:-;681:10;601:98;:::o;1872:118:16:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:16;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:16::1;-1:-1:-1::0;;;1932:14:16::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:16;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:16::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7379:127:5:-:0;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:5;:30;;;7379:127::o;11361:174::-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:5;-1:-1:-1;;;;;11436:29:5;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:5;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;-1:-1:-1;;;7783:73:5;;;;;;;:::i;:::-;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:5;:7;-1:-1:-1;;;;;7925:16:5;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:5;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:5;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7917:96;7673:348;-1:-1:-1;;;;7673:348:5:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:5;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:5;;10789:85;;;;-1:-1:-1;;;10789:85:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;10893:16:5;;10885:65;;;;-1:-1:-1;;;10885:65:5;;;;;;;:::i;:::-;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:5;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:5;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:5;-1:-1:-1;;;;;11169:21:5;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:5;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:5;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:5;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:5;;;;;10250:16;;10284:36;9968:360;;:::o;2099:173:15:-;2174:6;;;-1:-1:-1;;;;;2191:17:15;;;-1:-1:-1;;;;;;2191:17:15;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;1418:104:1:-;1465:4;1489:25;:15;:23;:25::i;:::-;1482:32;;1418:104;:::o;797:830:14:-;922:4;962;922;979:525;1003:5;:12;999:1;:16;979:525;;;1037:20;1060:5;1066:1;1060:8;;;;;;-1:-1:-1;;;1060:8:14;;;;;;;;;;;;;;;1037:31;;1105:12;1089;:28;1085:408;;1259:12;1273;1242:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1232:55;;;;;;1217:70;;1085:408;;;1449:12;1463;1432:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1422:55;;;;;;1407:70;;1085:408;-1:-1:-1;1017:3:14;;;;:::i;:::-;;;;979:525;;;-1:-1:-1;1599:20:14;;;;797:830;-1:-1:-1;;;797:830:14:o;2763:98:17:-;2821:7;2848:5;2852:1;2848;:5;:::i;3501:98::-;3559:7;3586:5;3590:1;3586;:5;:::i;3064:245:1:-;3116:20;3139:46;3146:38;3158:25;:15;:23;:25::i;:::-;3146:7;;;:11;:38::i;:::-;3139:6;:46::i;:::-;3116:69;;3195:27;:15;:25;:27::i;:::-;3232:28;3242:3;3247:12;3232:9;:28::i;:::-;3275:26;;3288:12;;3275:26;;;;;3064:245;;:::o;6751:315:5:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:5;;;;;;;:::i;3320:113:1:-;3380:13;3413:12;3406:19;;;;;:::i;288:723:18:-;344:13;565:10;561:53;;-1:-1:-1;592:10:18;;;;;;;;;;;;-1:-1:-1;;;592:10:18;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:18;;-1:-1:-1;744:2:18;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:18;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:18;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:18;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:18;;;;;;;;-1:-1:-1;949:11:18;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:5;1583:4;-1:-1:-1;;;;;;1620:40:5;;-1:-1:-1;;;1620:40:5;;:105;;-1:-1:-1;;;;;;;1677:48:5;;-1:-1:-1;;;1677:48:5;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;4221:239:1:-;4407:45;4434:4;4440:2;4444:7;4407:26;:45::i;793:114:3:-;885:14;;793:114::o;3144:98:17:-;3202:7;3229:5;3233:1;3229;:5;:::i;5607:195:1:-;5664:7;5786:8;5726:15;5743:10;5755:25;:15;:23;:25::i;:::-;5709:72;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5699:83;;;;;;5691:92;;:103;;;;:::i;915:127:3:-;1004:19;;1022:1;1004:19;;;915:127::o;8363:110:5:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:803::-;12255:4;12276:15;:2;-1:-1:-1;;;;;12276:13:5;;:15::i;:::-;12272:624;;;12328:2;-1:-1:-1;;;;;12312:36:5;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:5;;;;;;;;-1:-1:-1;;12312:72:5;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:5;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:5;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:5;-1:-1:-1;;;12435:55:5;;-1:-1:-1;12428:62:5;;12272:624;-1:-1:-1;12880:4:5;12100:803;;;;;;:::o;787:157:4:-;-1:-1:-1;;;;;;896:40:4;;-1:-1:-1;;;896:40:4;787:157;;;:::o;637:328:8:-;781:45;808:4;814:2;818:7;781:26;:45::i;:::-;857:7;:5;:7::i;:::-;-1:-1:-1;;;;;841:23:8;:12;:10;:12::i;:::-;-1:-1:-1;;;;;841:23:8;;837:121;;890:8;:6;:8::i;:::-;889:9;881:65;;;;-1:-1:-1;;;881:65:8;;;;;;;:::i;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:5;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:7:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:7;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:7;:4;-1:-1:-1;;;;;2916:10:7;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:7;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:7;:2;-1:-1:-1;;;;;3116:10:7;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9357:382:5:-;-1:-1:-1;;;;;9437:16:5;;9429:61;;;;-1:-1:-1;;;9429:61:5;;;;;;;:::i;:::-;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;-1:-1:-1;;;9501:58:5;;;;;;;:::i;:::-;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:5;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:5;-1:-1:-1;;;;;9659:21:5;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;3925:164:7:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:7;;;5194:328;;-1:-1:-1;;;;;5265:18:7;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:7;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:7;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:7;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:7;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:7;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:7;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:7:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:19;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:19;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:19;473:16;;;470:25;-1:-1:-1;467:2:19;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:19;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:19;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:19:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:190::-;;3362:2;3350:9;3341:7;3337:23;3333:32;3330:2;;;3383:6;3375;3368:22;3330:2;-1:-1:-1;3411:23:19;;3320:120;-1:-1:-1;3320:120:19:o;3445:257::-;;3556:2;3544:9;3535:7;3531:23;3527:32;3524:2;;;3577:6;3569;3562:22;3524:2;3621:9;3608:23;3640:32;3666:5;3640:32;:::i;3707:261::-;;3829:2;3817:9;3808:7;3804:23;3800:32;3797:2;;;3850:6;3842;3835:22;3797:2;3887:9;3881:16;3906:32;3932:5;3906:32;:::i;3973:482::-;;4095:2;4083:9;4074:7;4070:23;4066:32;4063:2;;;4116:6;4108;4101:22;4063:2;4161:9;4148:23;4194:18;4186:6;4183:30;4180:2;;;4231:6;4223;4216:22;4180:2;4259:22;;4312:4;4304:13;;4300:27;-1:-1:-1;4290:2:19;;4346:6;4338;4331:22;4290:2;4374:75;4441:7;4436:2;4423:16;4418:2;4414;4410:11;4374:75;:::i;4655:734::-;;;;4819:2;4807:9;4798:7;4794:23;4790:32;4787:2;;;4840:6;4832;4825:22;4787:2;4881:9;4868:23;4858:33;;4942:2;4931:9;4927:18;4914:32;4965:18;5006:2;4998:6;4995:14;4992:2;;;5027:6;5019;5012:22;4992:2;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:2;;5142:6;5134;5127:22;5086:2;5187;5174:16;5213:2;5205:6;5202:14;5199:2;;;5234:6;5226;5219:22;5199:2;5293:7;5288:2;5282;5274:6;5270:15;5266:2;5262:24;5258:33;5255:46;5252:2;;;5319:6;5311;5304:22;5252:2;5355;5351;5347:11;5337:21;;5377:6;5367:16;;;;;4777:612;;;;;:::o;5394:259::-;;5475:5;5469:12;5502:6;5497:3;5490:19;5518:63;5574:6;5567:4;5562:3;5558:14;5551:4;5544:5;5540:16;5518:63;:::i;:::-;5635:2;5614:15;-1:-1:-1;;5610:29:19;5601:39;;;;5642:4;5597:50;;5445:208;-1:-1:-1;;5445:208:19:o;5658:229::-;5807:2;5803:15;;;;-1:-1:-1;;5799:53:19;5787:66;;5878:2;5869:12;;5777:110::o;5892:247::-;6049:19;;;6093:2;6084:12;;6077:28;6130:2;6121:12;;6039:100::o;6144:470::-;;6361:6;6355:13;6377:53;6423:6;6418:3;6411:4;6403:6;6399:17;6377:53;:::i;:::-;6493:13;;6452:16;;;;6515:57;6493:13;6452:16;6549:4;6537:17;;6515:57;:::i;:::-;6588:20;;6331:283;-1:-1:-1;;;;6331:283:19:o;6619:359::-;6804:19;;;6861:2;6857:15;;;;-1:-1:-1;;6853:53:19;6848:2;6839:12;;6832:75;6932:2;6923:12;;6916:28;6969:2;6960:12;;6794:184::o;6983:203::-;-1:-1:-1;;;;;7147:32:19;;;;7129:51;;7117:2;7102:18;;7084:102::o;7191:490::-;-1:-1:-1;;;;;7460:15:19;;;7442:34;;7512:15;;7507:2;7492:18;;7485:43;7559:2;7544:18;;7537:34;;;7607:3;7602:2;7587:18;;7580:31;;;7191:490;;7628:47;;7655:19;;7647:6;7628:47;:::i;:::-;7620:55;7394:287;-1:-1:-1;;;;;;7394:287:19:o;7686:635::-;7857:2;7909:21;;;7979:13;;7882:18;;;8001:22;;;7686:635;;7857:2;8080:15;;;;8054:2;8039:18;;;7686:635;8126:169;8140:6;8137:1;8134:13;8126:169;;;8201:13;;8189:26;;8270:15;;;;8235:12;;;;8162:1;8155:9;8126:169;;;-1:-1:-1;8312:3:19;;7837:484;-1:-1:-1;;;;;;7837:484:19:o;8326:187::-;8491:14;;8484:22;8466:41;;8454:2;8439:18;;8421:92::o;8518:177::-;8664:25;;;8652:2;8637:18;;8619:76::o;8700:221::-;;8849:2;8838:9;8831:21;8869:46;8911:2;8900:9;8896:18;8888:6;8869:46;:::i;8926:407::-;9128:2;9110:21;;;9167:2;9147:18;;;9140:30;9206:34;9201:2;9186:18;;9179:62;-1:-1:-1;;;9272:2:19;9257:18;;9250:41;9323:3;9308:19;;9100:233::o;9338:344::-;9540:2;9522:21;;;9579:2;9559:18;;;9552:30;-1:-1:-1;;;9613:2:19;9598:18;;9591:50;9673:2;9658:18;;9512:170::o;9687:407::-;9889:2;9871:21;;;9928:2;9908:18;;;9901:30;9967:34;9962:2;9947:18;;9940:62;-1:-1:-1;;;10033:2:19;10018:18;;10011:41;10084:3;10069:19;;9861:233::o;10099:414::-;10301:2;10283:21;;;10340:2;10320:18;;;10313:30;10379:34;10374:2;10359:18;;10352:62;-1:-1:-1;;;10445:2:19;10430:18;;10423:48;10503:3;10488:19;;10273:240::o;10518:402::-;10720:2;10702:21;;;10759:2;10739:18;;;10732:30;10798:34;10793:2;10778:18;;10771:62;-1:-1:-1;;;10864:2:19;10849:18;;10842:36;10910:3;10895:19;;10692:228::o;10925:352::-;11127:2;11109:21;;;11166:2;11146:18;;;11139:30;11205;11200:2;11185:18;;11178:58;11268:2;11253:18;;11099:178::o;11282:400::-;11484:2;11466:21;;;11523:2;11503:18;;;11496:30;11562:34;11557:2;11542:18;;11535:62;-1:-1:-1;;;11628:2:19;11613:18;;11606:34;11672:3;11657:19;;11456:226::o;11687:349::-;11889:2;11871:21;;;11928:2;11908:18;;;11901:30;11967:27;11962:2;11947:18;;11940:55;12027:2;12012:18;;11861:175::o;12041:342::-;12243:2;12225:21;;;12282:2;12262:18;;;12255:30;-1:-1:-1;;;12316:2:19;12301:18;;12294:48;12374:2;12359:18;;12215:168::o;12388:408::-;12590:2;12572:21;;;12629:2;12609:18;;;12602:30;12668:34;12663:2;12648:18;;12641:62;-1:-1:-1;;;12734:2:19;12719:18;;12712:42;12786:3;12771:19;;12562:234::o;12801:346::-;13003:2;12985:21;;;13042:2;13022:18;;;13015:30;-1:-1:-1;;;13076:2:19;13061:18;;13054:52;13138:2;13123:18;;12975:172::o;13152:340::-;13354:2;13336:21;;;13393:2;13373:18;;;13366:30;-1:-1:-1;;;13427:2:19;13412:18;;13405:46;13483:2;13468:18;;13326:166::o;13497:397::-;13699:2;13681:21;;;13738:2;13718:18;;;13711:30;13777:34;13772:2;13757:18;;13750:62;-1:-1:-1;;;13843:2:19;13828:18;;13821:31;13884:3;13869:19;;13671:223::o;13899:420::-;14101:2;14083:21;;;14140:2;14120:18;;;14113:30;14179:34;14174:2;14159:18;;14152:62;14250:26;14245:2;14230:18;;14223:54;14309:3;14294:19;;14073:246::o;14324:406::-;14526:2;14508:21;;;14565:2;14545:18;;;14538:30;14604:34;14599:2;14584:18;;14577:62;-1:-1:-1;;;14670:2:19;14655:18;;14648:40;14720:3;14705:19;;14498:232::o;14735:405::-;14937:2;14919:21;;;14976:2;14956:18;;;14949:30;15015:34;15010:2;14995:18;;14988:62;-1:-1:-1;;;15081:2:19;15066:18;;15059:39;15130:3;15115:19;;14909:231::o;15145:341::-;15347:2;15329:21;;;15386:2;15366:18;;;15359:30;-1:-1:-1;;;15420:2:19;15405:18;;15398:47;15477:2;15462:18;;15319:167::o;15491:356::-;15693:2;15675:21;;;15712:18;;;15705:30;15771:34;15766:2;15751:18;;15744:62;15838:2;15823:18;;15665:182::o;15852:331::-;16054:2;16036:21;;;16093:1;16073:18;;;16066:29;-1:-1:-1;;;16126:2:19;16111:18;;16104:38;16174:2;16159:18;;16026:157::o;16188:408::-;16390:2;16372:21;;;16429:2;16409:18;;;16402:30;16468:34;16463:2;16448:18;;16441:62;-1:-1:-1;;;16534:2:19;16519:18;;16512:42;16586:3;16571:19;;16362:234::o;16601:339::-;16803:2;16785:21;;;16842:2;16822:18;;;16815:30;-1:-1:-1;;;16876:2:19;16861:18;;16854:45;16931:2;16916:18;;16775:165::o;16945:356::-;17147:2;17129:21;;;17166:18;;;17159:30;17225:34;17220:2;17205:18;;17198:62;17292:2;17277:18;;17119:182::o;17306:405::-;17508:2;17490:21;;;17547:2;17527:18;;;17520:30;17586:34;17581:2;17566:18;;17559:62;-1:-1:-1;;;17652:2:19;17637:18;;17630:39;17701:3;17686:19;;17480:231::o;17716:411::-;17918:2;17900:21;;;17957:2;17937:18;;;17930:30;17996:34;17991:2;17976:18;;17969:62;-1:-1:-1;;;18062:2:19;18047:18;;18040:45;18117:3;18102:19;;17890:237::o;18132:341::-;18334:2;18316:21;;;18373:2;18353:18;;;18346:30;-1:-1:-1;;;18407:2:19;18392:18;;18385:47;18464:2;18449:18;;18306:167::o;18478:397::-;18680:2;18662:21;;;18719:2;18699:18;;;18692:30;18758:34;18753:2;18738:18;;18731:62;-1:-1:-1;;;18824:2:19;18809:18;;18802:31;18865:3;18850:19;;18652:223::o;18880:413::-;19082:2;19064:21;;;19121:2;19101:18;;;19094:30;19160:34;19155:2;19140:18;;19133:62;-1:-1:-1;;;19226:2:19;19211:18;;19204:47;19283:3;19268:19;;19054:239::o;19298:397::-;19500:2;19482:21;;;19539:2;19519:18;;;19512:30;19578:34;19573:2;19558:18;;19551:62;-1:-1:-1;;;19644:2:19;19629:18;;19622:31;19685:3;19670:19;;19472:223::o;19700:408::-;19902:2;19884:21;;;19941:2;19921:18;;;19914:30;19980:34;19975:2;19960:18;;19953:62;-1:-1:-1;;;20046:2:19;20031:18;;20024:42;20098:3;20083:19;;19874:234::o;20113:412::-;20315:2;20297:21;;;20354:2;20334:18;;;20327:30;20393:34;20388:2;20373:18;;20366:62;-1:-1:-1;;;20459:2:19;20444:18;;20437:46;20515:3;20500:19;;20287:238::o;20965:128::-;;21036:1;21032:6;21029:1;21026:13;21023:2;;;21042:18;;:::i;:::-;-1:-1:-1;21078:9:19;;21013:80::o;21098:120::-;;21164:1;21154:2;;21169:18;;:::i;:::-;-1:-1:-1;21203:9:19;;21144:74::o;21223:168::-;;21329:1;21325;21321:6;21317:14;21314:1;21311:21;21306:1;21299:9;21292:17;21288:45;21285:2;;;21336:18;;:::i;:::-;-1:-1:-1;21376:9:19;;21275:116::o;21396:125::-;;21464:1;21461;21458:8;21455:2;;;21469:18;;:::i;:::-;-1:-1:-1;21506:9:19;;21445:76::o;21526:258::-;21598:1;21608:113;21622:6;21619:1;21616:13;21608:113;;;21698:11;;;21692:18;21679:11;;;21672:39;21644:2;21637:10;21608:113;;;21739:6;21736:1;21733:13;21730:2;;;-1:-1:-1;;21774:1:19;21756:16;;21749:27;21579:205::o;21789:380::-;21874:1;21864:12;;21921:1;21911:12;;;21932:2;;21986:4;21978:6;21974:17;21964:27;;21932:2;22039;22031:6;22028:14;22008:18;22005:38;22002:2;;;22085:10;22080:3;22076:20;22073:1;22066:31;22120:4;22117:1;22110:15;22148:4;22145:1;22138:15;22002:2;;21844:325;;;:::o;22174:135::-;;-1:-1:-1;;22234:17:19;;22231:2;;;22254:18;;:::i;:::-;-1:-1:-1;22301:1:19;22290:13;;22221:88::o;22314:112::-;;22372:1;22362:2;;22377:18;;:::i;:::-;-1:-1:-1;22411:9:19;;22352:74::o;22431:127::-;22492:10;22487:3;22483:20;22480:1;22473:31;22523:4;22520:1;22513:15;22547:4;22544:1;22537:15;22563:127;22624:10;22619:3;22615:20;22612:1;22605:31;22655:4;22652:1;22645:15;22679:4;22676:1;22669:15;22695:127;22756:10;22751:3;22747:20;22744:1;22737:31;22787:4;22784:1;22777:15;22811:4;22808:1;22801:15;22827:133;-1:-1:-1;;;;;;22903:32:19;;22893:43;;22883:2;;22950:1;22947;22940:12

Swarm Source

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