ETH Price: $3,475.84 (+7.05%)
Gas: 9 Gwei

Token

Skullx (SKULLX)
 

Overview

Max Total Supply

10,000 SKULLX

Holders

2,567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
marimur.eth
Balance
6 SKULLX
0x0ca5e28503be54e777fddae3ac5f3206bcd46ee9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Skullx is a collection of 10,000 skulls which come from 9 different realms with their own unique traits and designs. Summoned as ERC-721 tokens on the Ethereum Blockchain. Skullx holders get access to future airdrops and holder only raffles and events.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Skullx

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Skullx.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

// For readability purpose only. It could be replaced with ERC721
contract AeonsContract {
    function ownerOf(uint256 tokenId) public view virtual returns (address) {}
}

contract Skullx is ERC721Enumerable, Ownable, ReentrancyGuard {
    string public skullxProvenance;

    AeonsContract aeonsContract;

    uint256 public constant MAX_SKULLX = 10000;
    uint256 public constant SUMMON_LIMIT = 10;
    uint256 public constant SKULLX_BASE_PRICE = 0.08 ether;

    uint256 public publicSaleStartingPrice;
    uint256 public publicSaleDuration;
    uint256 public publicSaleStartTime;

    bool public publicSaleActive;
    bool public aeonsPreSaleActive;
    bool public originsFreeMintActive;

    uint256 public reservedLeft = 150;

    mapping(uint256 => bool) private aeonsUsedList;
    mapping(address => uint256) private originsListClaimAvailable;

    string public baseURI;

    address w0 = 0xF65b1bC72ffe0c8BcbC91da87abc53aC8Cf884FD;
    address w1 = 0x7057092E6fB32683c7aB292420fFFe11B9929a9b;
    address w2 = 0x74F963A0741BCc06112AFAb7B0863eA2Ce405e8C;
    address w3 = 0xE0D0c735A5779919363dB1DEEE102fa5536C93fE;

    constructor(
        string memory name,
        string memory symbol,
        string memory uri,
        address aeonsAddress)
    ERC721(name, symbol) {
        setBaseURI(uri);
        aeonsContract = AeonsContract(aeonsAddress);
        // Team
        _safeMint( w0, 1);
        _safeMint( w1, 2);
        _safeMint( w2, 3);
    }

    event PublicSaleStart(
        uint256 indexed saleDuration,
        uint256 indexed saleStartTime
    );
    event PublicSalePaused(
        uint256 indexed currentPrice,
        uint256 indexed timeElapsed
    );

    // ---------------------
    // PUBLIC SALE FUNCTIONS
    // ---------------------
    modifier whenPublicSaleActive() {
        require(publicSaleActive, "Public sale is not active");
        _;
    }

    function summon(uint256 numSkullx) external payable whenPublicSaleActive nonReentrant {
        uint256 supply = totalSupply();
        require(numSkullx <= SUMMON_LIMIT, 'Exceeds SUMMON_LIMIT');
        require(supply + numSkullx <= MAX_SKULLX - reservedLeft, 'Exceeds MAX_SKULLX');

        uint256 costToMint = getMintPrice() * numSkullx;
        require(costToMint <= msg.value, 'ETH amount is not sufficient');

        // Start index at 1
        for (uint256 i; i < numSkullx; i++) {
            _safeMint(msg.sender, supply + i + 1);
        }

        if (msg.value > costToMint) {
            Address.sendValue(payable(msg.sender), msg.value - costToMint);
        }
    }

    function startPublicSale(uint256 saleDuration, uint256 saleStartPrice)
    external
    onlyOwner
    {
        require(!publicSaleActive, "Public sale has already begun");
        publicSaleDuration = saleDuration;
        publicSaleStartingPrice = saleStartPrice;
        publicSaleStartTime = block.timestamp;
        publicSaleActive = true;
        emit PublicSaleStart(saleDuration, publicSaleStartTime);
    }

    function pausePublicSale() external onlyOwner whenPublicSaleActive {
        uint256 currentSalePrice = getMintPrice();
        publicSaleActive = false;
        emit PublicSalePaused(currentSalePrice, getElapsedSaleTime());
    }

    function getElapsedSaleTime() internal view returns (uint256) {
        return
        publicSaleStartTime > 0 ? block.timestamp - publicSaleStartTime : 0;
    }

    function getRemainingSaleTime() external view returns (uint256) {
        require(publicSaleStartTime > 0, "Public sale hasn't started yet");
        if (getElapsedSaleTime() >= publicSaleDuration) {
            return 0;
        }

        return (publicSaleStartTime + publicSaleDuration) - block.timestamp;
    }

    function getMintPrice() public view whenPublicSaleActive returns (uint256) {
        uint256 elapsed = getElapsedSaleTime();
        if (elapsed >= publicSaleDuration) {
            return SKULLX_BASE_PRICE;
        } else {
            uint256 currentPrice = ((publicSaleDuration - elapsed) *
            publicSaleStartingPrice) / publicSaleDuration;
            return
            currentPrice > SKULLX_BASE_PRICE
            ? currentPrice
            : SKULLX_BASE_PRICE;
        }
    }

    // -----------------------
    // AEONS PRESALE FUNCTIONS
    // -----------------------
    function isAeonPresaleUsed(uint256 aeonId) public view returns (bool) {
        require(aeonId < 2001 && aeonId > 0, "Invalid Aeon id");
        return aeonsUsedList[aeonId];
    }

    function aeonsPresaleSummon(uint256[] calldata aeonIds) external payable nonReentrant {
        uint256 supply = totalSupply();
        require(aeonsPreSaleActive, 'Presale not active');

        for (uint256 i = 0; i < aeonIds.length; i++) {
            require(aeonsContract.ownerOf(aeonIds[i]) == msg.sender, "Not the Aeon owner");
            require(aeonsUsedList[aeonIds[i]] == false, 'Aeon already used');
        }

        require(supply + aeonIds.length <= MAX_SKULLX - reservedLeft, 'Exceeds MAX_SKULLX');
        require(SKULLX_BASE_PRICE * aeonIds.length <= msg.value, 'ETH amount is not sufficient');

        for (uint256 i = 0; i < aeonIds.length; i++) {
            // Start index at 1
            aeonsUsedList[aeonIds[i]] = true;
            _safeMint(msg.sender, supply + i + 1);
        }
    }

    function toggleAeonsPresaleActive() external onlyOwner {
        aeonsPreSaleActive = !aeonsPreSaleActive;
    }

    // ----------------------------------
    // SKULLX ORIGINS FREE MINT FUNCTIONS
    // ----------------------------------
    function addToOriginsList(address[] calldata addresses, uint256[] calldata numOrigins) external onlyOwner {
        require(addresses.length == numOrigins.length, "Param arrays must be the same length");
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");

            originsListClaimAvailable[addresses[i]] = numOrigins[i];
        }
    }

    function removeFromOriginsList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            originsListClaimAvailable[addresses[i]] = 0;
        }
    }

    function getOriginsListClaimAvailable(address owner) external view returns (uint256){
        return originsListClaimAvailable[owner];
    }

    function originsFreeSummon(uint256 numSkullx) external payable nonReentrant {
        uint256 supply = totalSupply();
        require(originsFreeMintActive, 'Free summon phase for Skullx role is not active');
        require(originsListClaimAvailable[msg.sender] >= numSkullx, 'Exceeds free mints available');
        require(supply + numSkullx <= MAX_SKULLX - reservedLeft, 'Exceeds MAX_SKULLX');

        // Start index at 1
        for (uint256 i; i < numSkullx; i++) {
            originsListClaimAvailable[msg.sender]--;
            _safeMint(msg.sender, supply + i + 1);
        }
    }

    function toggleOriginsFreeMintActive() external onlyOwner {
        originsFreeMintActive = !originsFreeMintActive;
    }

    // ---------------
    // OTHER FUNCTIONS
    // ---------------
    function giveAway(address to, uint256 numSkullx) external onlyOwner() {
        require(numSkullx <= reservedLeft, "Exceeds reserved Skullx left");
        uint256 supply = totalSupply();

        // Start index at 1
        for (uint256 i; i < numSkullx; i++) {
            _safeMint(to, supply + i + 1);
        }

        reservedLeft -= numSkullx;
    }

    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        skullxProvenance = provenanceHash;
    }

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 percent = address(this).balance / 100;
        require(payable(w0).send(percent * 52));
        require(payable(w1).send(percent * 32));
        require(payable(w2).send(percent * 11));
        require(payable(w3).send(percent * 5));
    }
}

File 2 of 14 : 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 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 14 : 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 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"aeonsAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"currentPrice","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timeElapsed","type":"uint256"}],"name":"PublicSalePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"saleDuration","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"saleStartTime","type":"uint256"}],"name":"PublicSaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SKULLX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SKULLX_BASE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUMMON_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numOrigins","type":"uint256[]"}],"name":"addToOriginsList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aeonsPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"aeonIds","type":"uint256[]"}],"name":"aeonsPresaleSummon","outputs":[],"stateMutability":"payable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getOriginsListClaimAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numSkullx","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"aeonId","type":"uint256"}],"name":"isAeonPresaleUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"originsFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSkullx","type":"uint256"}],"name":"originsFreeSummon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromOriginsList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skullxProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleDuration","type":"uint256"},{"internalType":"uint256","name":"saleStartPrice","type":"uint256"}],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSkullx","type":"uint256"}],"name":"summon","outputs":[],"stateMutability":"payable","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":[],"name":"toggleAeonsPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOriginsFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052609660125573f65b1bc72ffe0c8bcbc91da87abc53ac8cf884fd601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737057092e6fb32683c7ab292420fffe11b9929a9b601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507374f963a0741bcc06112afab7b0863ea2ce405e8c601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e0d0c735a5779919363db1deee102fa5536c93fe601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016a57600080fd5b50604051620076a8380380620076a8833981810160405281019062000190919062001126565b83838160009080519060200190620001aa92919062000e74565b508060019080519060200190620001c392919062000e74565b505050620001e6620001da620002e960201b60201c565b620002f160201b60201c565b6001600b81905550620001ff82620003b760201b60201c565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000275601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200046260201b60201c565b620002aa601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660026200046260201b60201c565b620002df601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036200046260201b60201c565b5050505062001782565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003c7620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ed6200048860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d9062001256565b60405180910390fd5b80601590805190602001906200045e92919062000e74565b5050565b62000484828260405180602001604052806000815250620004b260201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004c483836200052060201b60201c565b620004d960008484846200070660201b60201c565b6200051b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051290620012ee565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000593576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058a9062001360565b60405180910390fd5b620005a481620008c060201b60201c565b15620005e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005de90620013d2565b60405180910390fd5b620005fb600083836200092c60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200064d91906200142d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007348473ffffffffffffffffffffffffffffffffffffffff1662000a7360201b62002d361760201c565b15620008b3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000766620002e960201b60201c565b8786866040518563ffffffff1660e01b81526004016200078a949392919062001509565b602060405180830381600087803b158015620007a557600080fd5b505af1925050508015620007d957506040513d601f19601f82011682018060405250810190620007d69190620015ba565b60015b62000862573d80600081146200080c576040519150601f19603f3d011682016040523d82523d6000602084013e62000811565b606091505b506000815114156200085a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085190620012ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008b8565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200094483838362000a8660201b62002d491760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000991576200098b8162000a8b60201b60201c565b620009d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009d857620009d7838262000ad460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a265762000a208162000c5160201b60201c565b62000a6e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a6d5762000a6c828262000d2d60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000aee8462000db960201b620017641760201c565b62000afa9190620015ec565b905060006007600084815260200190815260200160002054905081811462000be0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c679190620015ec565b905060006009600084815260200190815260200160002054905060006008838154811062000c9a5762000c9962001627565b5b90600052602060002001549050806008838154811062000cbf5762000cbe62001627565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d115762000d1062001656565b5b6001900381819060005260206000200160009055905550505050565b600062000d458362000db960201b620017641760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e2490620016fb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e82906200174c565b90600052602060002090601f01602090048101928262000ea6576000855562000ef2565b82601f1062000ec157805160ff191683800117855562000ef2565b8280016001018555821562000ef2579182015b8281111562000ef157825182559160200191906001019062000ed4565b5b50905062000f01919062000f05565b5090565b5b8082111562000f2057600081600090555060010162000f06565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000f8d8262000f42565b810181811067ffffffffffffffff8211171562000faf5762000fae62000f53565b5b80604052505050565b600062000fc462000f24565b905062000fd2828262000f82565b919050565b600067ffffffffffffffff82111562000ff55762000ff462000f53565b5b620010008262000f42565b9050602081019050919050565b60005b838110156200102d57808201518184015260208101905062001010565b838111156200103d576000848401525b50505050565b60006200105a620010548462000fd7565b62000fb8565b90508281526020810184848401111562001079576200107862000f3d565b5b620010868482856200100d565b509392505050565b600082601f830112620010a657620010a562000f38565b5b8151620010b884826020860162001043565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010ee82620010c1565b9050919050565b6200110081620010e1565b81146200110c57600080fd5b50565b6000815190506200112081620010f5565b92915050565b6000806000806080858703121562001143576200114262000f2e565b5b600085015167ffffffffffffffff81111562001164576200116362000f33565b5b62001172878288016200108e565b945050602085015167ffffffffffffffff81111562001196576200119562000f33565b5b620011a4878288016200108e565b935050604085015167ffffffffffffffff811115620011c857620011c762000f33565b5b620011d6878288016200108e565b9250506060620011e9878288016200110f565b91505092959194509250565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200123e602083620011f5565b91506200124b8262001206565b602082019050919050565b6000602082019050818103600083015262001271816200122f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620012d6603283620011f5565b9150620012e38262001278565b604082019050919050565b600060208201905081810360008301526200130981620012c7565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062001348602083620011f5565b9150620013558262001310565b602082019050919050565b600060208201905081810360008301526200137b8162001339565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620013ba601c83620011f5565b9150620013c78262001382565b602082019050919050565b60006020820190508181036000830152620013ed81620013ab565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200143a82620013f4565b91506200144783620013f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200147f576200147e620013fe565b5b828201905092915050565b6200149581620010e1565b82525050565b620014a681620013f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620014d582620014ac565b620014e18185620014b7565b9350620014f38185602086016200100d565b620014fe8162000f42565b840191505092915050565b60006080820190506200152060008301876200148a565b6200152f60208301866200148a565b6200153e60408301856200149b565b8181036060830152620015528184620014c8565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001594816200155d565b8114620015a057600080fd5b50565b600081519050620015b48162001589565b92915050565b600060208284031215620015d357620015d262000f2e565b5b6000620015e384828501620015a3565b91505092915050565b6000620015f982620013f4565b91506200160683620013f4565b9250828210156200161c576200161b620013fe565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000620016e3602a83620011f5565b9150620016f08262001685565b604082019050919050565b600060208201905081810360008301526200171681620016d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200176557607f821691505b602082108114156200177c576200177b6200171d565b5b50919050565b615f1680620017926000396000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063c2ad832b116100c1578063e985e9c51161007a578063e985e9c5146109aa578063f2fde38b146109e7578063f4effd7714610a10578063f5a1b47514610a27578063fb7530dc14610a50578063fd48354e14610a7b57610293565b8063c2ad832b1461089a578063c87b56dd146108c5578063ca80014414610902578063cb2579e51461092b578063cde0b31e14610954578063dc5f3f0e1461097f57610293565b8063994ccb6511610113578063994ccb65146107ab578063a22cb465146107d6578063a7f93ebd146107ff578063b0e6fc461461082a578063b88d4fde14610846578063bc8893b41461086f57610293565b8063715018a6146106ed578063853828b6146107045780638da5cb5b1461070e5780638ee5eabf1461073957806395d89b41146107645780639625dc721461078f57610293565b806342842e0e116101fe5780636352211e116101b75780636352211e146105a35780636bb7b1d9146105e05780636c0360eb1461060b5780636c800dff1461063657806370a082311461067357806370ff5140146106b057610293565b806342842e0e146104a75780634e50de03146104d05780634f6ccce7146104e757806355f804b314610524578063567ac4f61461054d57806362dcce281461057857610293565b80630e79bce2116102505780630e79bce21461039957806310969523146103c457806318160ddd146103ed57806323b872dd146104185780632f745c59146104415780633a12e9331461047e57610293565b806301ffc9a714610298578063035d9f2a146102d557806306fdde03146102f1578063081812fc1461031c578063095ea7b3146103595780630c41f49714610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190614037565b610aa6565b6040516102cc919061407f565b60405180910390f35b6102ef60048036038101906102ea91906140d0565b610b20565b005b3480156102fd57600080fd5b50610306610d2f565b6040516103139190614196565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906140d0565b610dc1565b60405161035091906141f9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190614240565b610e46565b005b34801561038e57600080fd5b50610397610f5e565b005b3480156103a557600080fd5b506103ae611088565b6040516103bb919061407f565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906143b5565b61109b565b005b3480156103f957600080fd5b50610402611131565b60405161040f919061440d565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190614428565b61113e565b005b34801561044d57600080fd5b5061046860048036038101906104639190614240565b61119e565b604051610475919061440d565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061447b565b611243565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614428565b611373565b005b3480156104dc57600080fd5b506104e5611393565b005b3480156104f357600080fd5b5061050e600480360381019061050991906140d0565b61143b565b60405161051b919061440d565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906143b5565b6114ac565b005b34801561055957600080fd5b50610562611542565b60405161056f919061440d565b60405180910390f35b34801561058457600080fd5b5061058d6115c2565b60405161059a919061407f565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906140d0565b6115d5565b6040516105d791906141f9565b60405180910390f35b3480156105ec57600080fd5b506105f5611687565b604051610602919061440d565b60405180910390f35b34801561061757600080fd5b5061062061168d565b60405161062d9190614196565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906144bb565b61171b565b60405161066a919061440d565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906144bb565b611764565b6040516106a7919061440d565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906140d0565b61181c565b6040516106e4919061407f565b60405180910390f35b3480156106f957600080fd5b50610702611896565b005b61070c61191e565b005b34801561071a57600080fd5b50610723611b5e565b60405161073091906141f9565b60405180910390f35b34801561074557600080fd5b5061074e611b88565b60405161075b919061440d565b60405180910390f35b34801561077057600080fd5b50610779611b8e565b6040516107869190614196565b60405180910390f35b6107a960048036038101906107a491906140d0565b611c20565b005b3480156107b757600080fd5b506107c0611e49565b6040516107cd919061440d565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190614514565b611e4f565b005b34801561080b57600080fd5b50610814611fd0565b604051610821919061440d565b60405180910390f35b610844600480360381019061083f91906145b4565b61209a565b005b34801561085257600080fd5b5061086d600480360381019061086891906146a2565b612464565b005b34801561087b57600080fd5b506108846124c6565b604051610891919061407f565b60405180910390f35b3480156108a657600080fd5b506108af6124d9565b6040516108bc919061440d565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e791906140d0565b6124e5565b6040516108f99190614196565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190614240565b61258c565b005b34801561093757600080fd5b50610952600480360381019061094d919061477b565b6126b7565b005b34801561096057600080fd5b5061096961285c565b604051610976919061440d565b60405180910390f35b34801561098b57600080fd5b50610994612861565b6040516109a19190614196565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc91906147c8565b6128ef565b6040516109de919061407f565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906144bb565b612983565b005b348015610a1c57600080fd5b50610a25612a7b565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190614808565b612b23565b005b348015610a5c57600080fd5b50610a65612d2a565b604051610a72919061440d565b60405180910390f35b348015610a8757600080fd5b50610a90612d30565b604051610a9d919061440d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b195750610b1882612d4e565b5b9050919050565b601160009054906101000a900460ff16610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906148d5565b60405180910390fd5b6002600b541415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90614941565b60405180910390fd5b6002600b819055506000610bc7611131565b9050600a821115610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906149ad565b60405180910390fd5b601254612710610c1d91906149fc565b8282610c299190614a30565b1115610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190614ad2565b60405180910390fd5b600082610c75611fd0565b610c7f9190614af2565b905034811115610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90614b98565b60405180910390fd5b60005b83811015610d0357610cf03360018386610ce19190614a30565b610ceb9190614a30565b612e30565b8080610cfb90614bb8565b915050610cc7565b5080341115610d2257610d21338234610d1c91906149fc565b612e4e565b5b50506001600b8190555050565b606060008054610d3e90614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6a90614c30565b8015610db75780601f10610d8c57610100808354040283529160200191610db7565b820191906000526020600020905b815481529060010190602001808311610d9a57829003601f168201915b5050505050905090565b6000610dcc82612f42565b610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290614cd4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e51826115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990614d66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee1612fae565b73ffffffffffffffffffffffffffffffffffffffff161480610f105750610f0f81610f0a612fae565b6128ef565b5b610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614df8565b60405180910390fd5b610f598383612fb6565b505050565b610f66612fae565b73ffffffffffffffffffffffffffffffffffffffff16610f84611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190614e64565b60405180910390fd5b601160009054906101000a900460ff16611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906148d5565b60405180910390fd5b6000611033611fd0565b90506000601160006101000a81548160ff02191690831515021790555061105861306f565b817f6349058becdb87a65b3cda491b5893b82a0f75f57ddf0d2fbb373d2371a02a8b60405160405180910390a350565b601160019054906101000a900460ff1681565b6110a3612fae565b73ffffffffffffffffffffffffffffffffffffffff166110c1611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614e64565b60405180910390fd5b80600c908051906020019061112d929190613f28565b5050565b6000600880549050905090565b61114f611149612fae565b82613095565b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590614ef6565b60405180910390fd5b611199838383613173565b505050565b60006111a983611764565b82106111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190614f88565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61124b612fae565b73ffffffffffffffffffffffffffffffffffffffff16611269611b5e565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614e64565b60405180910390fd5b601160009054906101000a900460ff161561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614ff4565b60405180910390fd5b81600f8190555080600e81905550426010819055506001601160006101000a81548160ff021916908315150217905550601054827ffa7b432778a53a8786452c3cefdd1df8a17f43f9b4587fb4d61b23098e6190af60405160405180910390a35050565b61138e83838360405180602001604052806000815250612464565b505050565b61139b612fae565b73ffffffffffffffffffffffffffffffffffffffff166113b9611b5e565b73ffffffffffffffffffffffffffffffffffffffff161461140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690614e64565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000611445611131565b8210611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90615086565b60405180910390fd5b6008828154811061149a576114996150a6565b5b90600052602060002001549050919050565b6114b4612fae565b73ffffffffffffffffffffffffffffffffffffffff166114d2611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614e64565b60405180910390fd5b806015908051906020019061153e929190613f28565b5050565b60008060105411611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90615121565b60405180910390fd5b600f5461159361306f565b106115a157600090506115bf565b42600f546010546115b29190614a30565b6115bc91906149fc565b90505b90565b601160029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906151b3565b60405180910390fd5b80915050919050565b60105481565b6015805461169a90614c30565b80601f01602080910402602001604051908101604052809291908181526020018280546116c690614c30565b80156117135780601f106116e857610100808354040283529160200191611713565b820191906000526020600020905b8154815290600101906020018083116116f657829003601f168201915b505050505081565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90615245565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006107d18210801561182f5750600082115b61186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906152b1565b60405180910390fd5b6013600083815260200190815260200160002060009054906101000a900460ff169050919050565b61189e612fae565b73ffffffffffffffffffffffffffffffffffffffff166118bc611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990614e64565b60405180910390fd5b61191c60006133cf565b565b611926612fae565b73ffffffffffffffffffffffffffffffffffffffff16611944611b5e565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614e64565b60405180910390fd5b60006064476119a99190615300565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6034836119f49190614af2565b9081150290604051600060405180830381858888f19350505050611a1757600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc602083611a609190614af2565b9081150290604051600060405180830381858888f19350505050611a8357600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600b83611acc9190614af2565b9081150290604051600060405180830381858888f19350505050611aef57600080fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b389190614af2565b9081150290604051600060405180830381858888f19350505050611b5b57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b606060018054611b9d90614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc990614c30565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b5050505050905090565b6002600b541415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90614941565b60405180910390fd5b6002600b819055506000611c78611131565b9050601160029054906101000a900460ff16611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906153a3565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d429061540f565b60405180910390fd5b601254612710611d5b91906149fc565b8282611d679190614a30565b1115611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90614ad2565b60405180910390fd5b60005b82811015611e3c57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e039061542f565b9190505550611e293360018385611e1a9190614a30565b611e249190614a30565b612e30565b8080611e3490614bb8565b915050611dab565b50506001600b8190555050565b600e5481565b611e57612fae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc906154a5565b60405180910390fd5b8060056000611ed2612fae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f7f612fae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc4919061407f565b60405180910390a35050565b6000601160009054906101000a900460ff16612021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612018906148d5565b60405180910390fd5b600061202b61306f565b9050600f5481106120475767011c37937e080000915050612097565b6000600f54600e5483600f5461205d91906149fc565b6120679190614af2565b6120719190615300565b905067011c37937e08000081116120905767011c37937e080000612092565b805b925050505b90565b6002600b5414156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614941565b60405180910390fd5b6002600b8190555060006120f2611131565b9050601160019054906101000a900460ff16612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90615511565b60405180910390fd5b60005b83839050811015612315573373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8686858181106121b9576121b86150a6565b5b905060200201356040518263ffffffff1660e01b81526004016121dc919061440d565b60206040518083038186803b1580156121f457600080fd5b505afa158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190615546565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612279906155bf565b60405180910390fd5b600015156013600086868581811061229d5761229c6150a6565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151514612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f99061562b565b60405180910390fd5b808061230d90614bb8565b915050612146565b5060125461271061232691906149fc565b83839050826123359190614a30565b1115612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d90614ad2565b60405180910390fd5b348383905067011c37937e08000061238e9190614af2565b11156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614b98565b60405180910390fd5b60005b83839050811015612456576001601360008686858181106123f6576123f56150a6565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555061244333600183856124349190614a30565b61243e9190614a30565b612e30565b808061244e90614bb8565b9150506123d2565b50506001600b819055505050565b61247561246f612fae565b83613095565b6124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab90614ef6565b60405180910390fd5b6124c084848484613495565b50505050565b601160009054906101000a900460ff1681565b67011c37937e08000081565b60606124f082612f42565b61252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906156bd565b60405180910390fd5b60006125396134f1565b905060008151116125595760405180602001604052806000815250612584565b8061256384613583565b604051602001612574929190615719565b6040516020818303038152906040525b915050919050565b612594612fae565b73ffffffffffffffffffffffffffffffffffffffff166125b2611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90614e64565b60405180910390fd5b60125481111561264d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264490615789565b60405180910390fd5b6000612657611131565b905060005b828110156126985761268584600183856126769190614a30565b6126809190614a30565b612e30565b808061269090614bb8565b91505061265c565b5081601260008282546126ab91906149fc565b92505081905550505050565b6126bf612fae565b73ffffffffffffffffffffffffffffffffffffffff166126dd611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614e64565b60405180910390fd5b60005b8282905081101561285757600073ffffffffffffffffffffffffffffffffffffffff1683838381811061276c5761276b6150a6565b5b905060200201602081019061278191906144bb565b73ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf906157f5565b60405180910390fd5b6000601460008585858181106127f1576127f06150a6565b5b905060200201602081019061280691906144bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061284f90614bb8565b915050612736565b505050565b600a81565b600c805461286e90614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461289a90614c30565b80156128e75780601f106128bc576101008083540402835291602001916128e7565b820191906000526020600020905b8154815290600101906020018083116128ca57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61298b612fae565b73ffffffffffffffffffffffffffffffffffffffff166129a9611b5e565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614e64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690615887565b60405180910390fd5b612a78816133cf565b50565b612a83612fae565b73ffffffffffffffffffffffffffffffffffffffff16612aa1611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee90614e64565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612b2b612fae565b73ffffffffffffffffffffffffffffffffffffffff16612b49611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9690614e64565b60405180910390fd5b818190508484905014612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde90615919565b60405180910390fd5b60005b84849050811015612d2357600073ffffffffffffffffffffffffffffffffffffffff16858583818110612c2057612c1f6150a6565b5b9050602002016020810190612c3591906144bb565b73ffffffffffffffffffffffffffffffffffffffff161415612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906157f5565b60405180910390fd5b828282818110612c9f57612c9e6150a6565b5b9050602002013560146000878785818110612cbd57612cbc6150a6565b5b9050602002016020810190612cd291906144bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080612d1b90614bb8565b915050612bea565b5050505050565b61271081565b600f5481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e295750612e28826136e4565b5b9050919050565b612e4a82826040518060200160405280600081525061374e565b5050565b80471015612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890615985565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612eb7906159d6565b60006040518083038185875af1925050503d8060008114612ef4576040519150601f19603f3d011682016040523d82523d6000602084013e612ef9565b606091505b5050905080612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3490615a5d565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613029836115d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060105411613081576000613090565b6010544261308f91906149fc565b5b905090565b60006130a082612f42565b6130df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d690615aef565b60405180910390fd5b60006130ea836115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061315957508373ffffffffffffffffffffffffffffffffffffffff1661314184610dc1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061316a575061316981856128ef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613193826115d5565b73ffffffffffffffffffffffffffffffffffffffff16146131e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e090615b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325090615c13565b60405180910390fd5b6132648383836137a9565b61326f600082612fb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bf91906149fc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133169190614a30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a0848484613173565b6134ac848484846138bd565b6134eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e290615ca5565b60405180910390fd5b50505050565b60606015805461350090614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461352c90614c30565b80156135795780601f1061354e57610100808354040283529160200191613579565b820191906000526020600020905b81548152906001019060200180831161355c57829003601f168201915b5050505050905090565b606060008214156135cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136df565b600082905060005b600082146135fd5780806135e690614bb8565b915050600a826135f69190615300565b91506135d3565b60008167ffffffffffffffff8111156136195761361861428a565b5b6040519080825280601f01601f19166020018201604052801561364b5781602001600182028036833780820191505090505b5090505b600085146136d85760018261366491906149fc565b9150600a856136739190615cc5565b603061367f9190614a30565b60f81b818381518110613695576136946150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d19190615300565b945061364f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6137588383613a54565b61376560008484846138bd565b6137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379b90615ca5565b60405180910390fd5b505050565b6137b4838383612d49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137f7576137f281613c22565b613836565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613835576138348382613c6b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138795761387481613dd8565b6138b8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138b7576138b68282613ea9565b5b5b505050565b60006138de8473ffffffffffffffffffffffffffffffffffffffff16612d36565b15613a47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613907612fae565b8786866040518563ffffffff1660e01b81526004016139299493929190615d4b565b602060405180830381600087803b15801561394357600080fd5b505af192505050801561397457506040513d601f19601f820116820180604052508101906139719190615dac565b60015b6139f7573d80600081146139a4576040519150601f19603f3d011682016040523d82523d6000602084013e6139a9565b606091505b506000815114156139ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e690615ca5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a4c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613abb90615e25565b60405180910390fd5b613acd81612f42565b15613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0490615e91565b60405180910390fd5b613b19600083836137a9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b699190614a30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c7884611764565b613c8291906149fc565b9050600060076000848152602001908152602001600020549050818114613d67576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613dec91906149fc565b9050600060096000848152602001908152602001600020549050600060088381548110613e1c57613e1b6150a6565b5b906000526020600020015490508060088381548110613e3e57613e3d6150a6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e8d57613e8c615eb1565b5b6001900381819060005260206000200160009055905550505050565b6000613eb483611764565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613f3490614c30565b90600052602060002090601f016020900481019282613f565760008555613f9d565b82601f10613f6f57805160ff1916838001178555613f9d565b82800160010185558215613f9d579182015b82811115613f9c578251825591602001919060010190613f81565b5b509050613faa9190613fae565b5090565b5b80821115613fc7576000816000905550600101613faf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61401481613fdf565b811461401f57600080fd5b50565b6000813590506140318161400b565b92915050565b60006020828403121561404d5761404c613fd5565b5b600061405b84828501614022565b91505092915050565b60008115159050919050565b61407981614064565b82525050565b60006020820190506140946000830184614070565b92915050565b6000819050919050565b6140ad8161409a565b81146140b857600080fd5b50565b6000813590506140ca816140a4565b92915050565b6000602082840312156140e6576140e5613fd5565b5b60006140f4848285016140bb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561413757808201518184015260208101905061411c565b83811115614146576000848401525b50505050565b6000601f19601f8301169050919050565b6000614168826140fd565b6141728185614108565b9350614182818560208601614119565b61418b8161414c565b840191505092915050565b600060208201905081810360008301526141b0818461415d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141e3826141b8565b9050919050565b6141f3816141d8565b82525050565b600060208201905061420e60008301846141ea565b92915050565b61421d816141d8565b811461422857600080fd5b50565b60008135905061423a81614214565b92915050565b6000806040838503121561425757614256613fd5565b5b60006142658582860161422b565b9250506020614276858286016140bb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142c28261414c565b810181811067ffffffffffffffff821117156142e1576142e061428a565b5b80604052505050565b60006142f4613fcb565b905061430082826142b9565b919050565b600067ffffffffffffffff8211156143205761431f61428a565b5b6143298261414c565b9050602081019050919050565b82818337600083830152505050565b600061435861435384614305565b6142ea565b90508281526020810184848401111561437457614373614285565b5b61437f848285614336565b509392505050565b600082601f83011261439c5761439b614280565b5b81356143ac848260208601614345565b91505092915050565b6000602082840312156143cb576143ca613fd5565b5b600082013567ffffffffffffffff8111156143e9576143e8613fda565b5b6143f584828501614387565b91505092915050565b6144078161409a565b82525050565b600060208201905061442260008301846143fe565b92915050565b60008060006060848603121561444157614440613fd5565b5b600061444f8682870161422b565b93505060206144608682870161422b565b9250506040614471868287016140bb565b9150509250925092565b6000806040838503121561449257614491613fd5565b5b60006144a0858286016140bb565b92505060206144b1858286016140bb565b9150509250929050565b6000602082840312156144d1576144d0613fd5565b5b60006144df8482850161422b565b91505092915050565b6144f181614064565b81146144fc57600080fd5b50565b60008135905061450e816144e8565b92915050565b6000806040838503121561452b5761452a613fd5565b5b60006145398582860161422b565b925050602061454a858286016144ff565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261457457614573614280565b5b8235905067ffffffffffffffff81111561459157614590614554565b5b6020830191508360208202830111156145ad576145ac614559565b5b9250929050565b600080602083850312156145cb576145ca613fd5565b5b600083013567ffffffffffffffff8111156145e9576145e8613fda565b5b6145f58582860161455e565b92509250509250929050565b600067ffffffffffffffff82111561461c5761461b61428a565b5b6146258261414c565b9050602081019050919050565b600061464561464084614601565b6142ea565b90508281526020810184848401111561466157614660614285565b5b61466c848285614336565b509392505050565b600082601f83011261468957614688614280565b5b8135614699848260208601614632565b91505092915050565b600080600080608085870312156146bc576146bb613fd5565b5b60006146ca8782880161422b565b94505060206146db8782880161422b565b93505060406146ec878288016140bb565b925050606085013567ffffffffffffffff81111561470d5761470c613fda565b5b61471987828801614674565b91505092959194509250565b60008083601f84011261473b5761473a614280565b5b8235905067ffffffffffffffff81111561475857614757614554565b5b60208301915083602082028301111561477457614773614559565b5b9250929050565b6000806020838503121561479257614791613fd5565b5b600083013567ffffffffffffffff8111156147b0576147af613fda565b5b6147bc85828601614725565b92509250509250929050565b600080604083850312156147df576147de613fd5565b5b60006147ed8582860161422b565b92505060206147fe8582860161422b565b9150509250929050565b6000806000806040858703121561482257614821613fd5565b5b600085013567ffffffffffffffff8111156148405761483f613fda565b5b61484c87828801614725565b9450945050602085013567ffffffffffffffff81111561486f5761486e613fda565b5b61487b8782880161455e565b925092505092959194509250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006148bf601983614108565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061492b601f83614108565b9150614936826148f5565b602082019050919050565b6000602082019050818103600083015261495a8161491e565b9050919050565b7f457863656564732053554d4d4f4e5f4c494d4954000000000000000000000000600082015250565b6000614997601483614108565b91506149a282614961565b602082019050919050565b600060208201905081810360008301526149c68161498a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a078261409a565b9150614a128361409a565b925082821015614a2557614a246149cd565b5b828203905092915050565b6000614a3b8261409a565b9150614a468361409a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7b57614a7a6149cd565b5b828201905092915050565b7f45786365656473204d41585f534b554c4c580000000000000000000000000000600082015250565b6000614abc601283614108565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd8261409a565b9150614b088361409a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4157614b406149cd565b5b828202905092915050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000614b82601c83614108565b9150614b8d82614b4c565b602082019050919050565b60006020820190508181036000830152614bb181614b75565b9050919050565b6000614bc38261409a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf657614bf56149cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c4857607f821691505b60208210811415614c5c57614c5b614c01565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614cbe602c83614108565b9150614cc982614c62565b604082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d50602183614108565b9150614d5b82614cf4565b604082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614de2603883614108565b9150614ded82614d86565b604082019050919050565b60006020820190508181036000830152614e1181614dd5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e4e602083614108565b9150614e5982614e18565b602082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614ee0603183614108565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614f72602b83614108565b9150614f7d82614f16565b604082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f5075626c69632073616c652068617320616c726561647920626567756e000000600082015250565b6000614fde601d83614108565b9150614fe982614fa8565b602082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615070602c83614108565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c69632073616c65206861736e27742073746172746564207965740000600082015250565b600061510b601e83614108565b9150615116826150d5565b602082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061519d602983614108565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061522f602a83614108565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f496e76616c69642041656f6e2069640000000000000000000000000000000000600082015250565b600061529b600f83614108565b91506152a682615265565b602082019050919050565b600060208201905081810360008301526152ca8161528e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061530b8261409a565b91506153168361409a565b925082615326576153256152d1565b5b828204905092915050565b7f467265652073756d6d6f6e20706861736520666f7220536b756c6c7820726f6c60008201527f65206973206e6f74206163746976650000000000000000000000000000000000602082015250565b600061538d602f83614108565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b7f457863656564732066726565206d696e747320617661696c61626c6500000000600082015250565b60006153f9601c83614108565b9150615404826153c3565b602082019050919050565b60006020820190508181036000830152615428816153ec565b9050919050565b600061543a8261409a565b9150600082141561544e5761544d6149cd565b5b600182039050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061548f601983614108565b915061549a82615459565b602082019050919050565b600060208201905081810360008301526154be81615482565b9050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b60006154fb601283614108565b9150615506826154c5565b602082019050919050565b6000602082019050818103600083015261552a816154ee565b9050919050565b60008151905061554081614214565b92915050565b60006020828403121561555c5761555b613fd5565b5b600061556a84828501615531565b91505092915050565b7f4e6f74207468652041656f6e206f776e65720000000000000000000000000000600082015250565b60006155a9601283614108565b91506155b482615573565b602082019050919050565b600060208201905081810360008301526155d88161559c565b9050919050565b7f41656f6e20616c72656164792075736564000000000000000000000000000000600082015250565b6000615615601183614108565b9150615620826155df565b602082019050919050565b6000602082019050818103600083015261564481615608565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006156a7602f83614108565b91506156b28261564b565b604082019050919050565b600060208201905081810360008301526156d68161569a565b9050919050565b600081905092915050565b60006156f3826140fd565b6156fd81856156dd565b935061570d818560208601614119565b80840191505092915050565b600061572582856156e8565b915061573182846156e8565b91508190509392505050565b7f4578636565647320726573657276656420536b756c6c78206c65667400000000600082015250565b6000615773601c83614108565b915061577e8261573d565b602082019050919050565b600060208201905081810360008301526157a281615766565b9050919050565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b60006157df601a83614108565b91506157ea826157a9565b602082019050919050565b6000602082019050818103600083015261580e816157d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615871602683614108565b915061587c82615815565b604082019050919050565b600060208201905081810360008301526158a081615864565b9050919050565b7f506172616d20617272617973206d757374206265207468652073616d65206c6560008201527f6e67746800000000000000000000000000000000000000000000000000000000602082015250565b6000615903602483614108565b915061590e826158a7565b604082019050919050565b60006020820190508181036000830152615932816158f6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061596f601d83614108565b915061597a82615939565b602082019050919050565b6000602082019050818103600083015261599e81615962565b9050919050565b600081905092915050565b50565b60006159c06000836159a5565b91506159cb826159b0565b600082019050919050565b60006159e1826159b3565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000615a47603a83614108565b9150615a52826159eb565b604082019050919050565b60006020820190508181036000830152615a7681615a3a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615ad9602c83614108565b9150615ae482615a7d565b604082019050919050565b60006020820190508181036000830152615b0881615acc565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b6b602983614108565b9150615b7682615b0f565b604082019050919050565b60006020820190508181036000830152615b9a81615b5e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615bfd602483614108565b9150615c0882615ba1565b604082019050919050565b60006020820190508181036000830152615c2c81615bf0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8f603283614108565b9150615c9a82615c33565b604082019050919050565b60006020820190508181036000830152615cbe81615c82565b9050919050565b6000615cd08261409a565b9150615cdb8361409a565b925082615ceb57615cea6152d1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d1d82615cf6565b615d278185615d01565b9350615d37818560208601614119565b615d408161414c565b840191505092915050565b6000608082019050615d6060008301876141ea565b615d6d60208301866141ea565b615d7a60408301856143fe565b8181036060830152615d8c8184615d12565b905095945050505050565b600081519050615da68161400b565b92915050565b600060208284031215615dc257615dc1613fd5565b5b6000615dd084828501615d97565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e0f602083614108565b9150615e1a82615dd9565b602082019050919050565b60006020820190508181036000830152615e3e81615e02565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e7b601c83614108565b9150615e8682615e45565b602082019050919050565b60006020820190508181036000830152615eaa81615e6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212209960c139ee6298b13636951e5705492388f9b2037931caa0545f1a51f2df01ee64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d4f417cfd29ae83a303b6d75f88b62a696de47e10000000000000000000000000000000000000000000000000000000000000006536b756c6c7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b554c4c580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f736b756c6c786e66742e696f2f6170692f736b756c6c782f

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063715018a61161015a578063c2ad832b116100c1578063e985e9c51161007a578063e985e9c5146109aa578063f2fde38b146109e7578063f4effd7714610a10578063f5a1b47514610a27578063fb7530dc14610a50578063fd48354e14610a7b57610293565b8063c2ad832b1461089a578063c87b56dd146108c5578063ca80014414610902578063cb2579e51461092b578063cde0b31e14610954578063dc5f3f0e1461097f57610293565b8063994ccb6511610113578063994ccb65146107ab578063a22cb465146107d6578063a7f93ebd146107ff578063b0e6fc461461082a578063b88d4fde14610846578063bc8893b41461086f57610293565b8063715018a6146106ed578063853828b6146107045780638da5cb5b1461070e5780638ee5eabf1461073957806395d89b41146107645780639625dc721461078f57610293565b806342842e0e116101fe5780636352211e116101b75780636352211e146105a35780636bb7b1d9146105e05780636c0360eb1461060b5780636c800dff1461063657806370a082311461067357806370ff5140146106b057610293565b806342842e0e146104a75780634e50de03146104d05780634f6ccce7146104e757806355f804b314610524578063567ac4f61461054d57806362dcce281461057857610293565b80630e79bce2116102505780630e79bce21461039957806310969523146103c457806318160ddd146103ed57806323b872dd146104185780632f745c59146104415780633a12e9331461047e57610293565b806301ffc9a714610298578063035d9f2a146102d557806306fdde03146102f1578063081812fc1461031c578063095ea7b3146103595780630c41f49714610382575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190614037565b610aa6565b6040516102cc919061407f565b60405180910390f35b6102ef60048036038101906102ea91906140d0565b610b20565b005b3480156102fd57600080fd5b50610306610d2f565b6040516103139190614196565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906140d0565b610dc1565b60405161035091906141f9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190614240565b610e46565b005b34801561038e57600080fd5b50610397610f5e565b005b3480156103a557600080fd5b506103ae611088565b6040516103bb919061407f565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906143b5565b61109b565b005b3480156103f957600080fd5b50610402611131565b60405161040f919061440d565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190614428565b61113e565b005b34801561044d57600080fd5b5061046860048036038101906104639190614240565b61119e565b604051610475919061440d565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061447b565b611243565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614428565b611373565b005b3480156104dc57600080fd5b506104e5611393565b005b3480156104f357600080fd5b5061050e600480360381019061050991906140d0565b61143b565b60405161051b919061440d565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906143b5565b6114ac565b005b34801561055957600080fd5b50610562611542565b60405161056f919061440d565b60405180910390f35b34801561058457600080fd5b5061058d6115c2565b60405161059a919061407f565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906140d0565b6115d5565b6040516105d791906141f9565b60405180910390f35b3480156105ec57600080fd5b506105f5611687565b604051610602919061440d565b60405180910390f35b34801561061757600080fd5b5061062061168d565b60405161062d9190614196565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906144bb565b61171b565b60405161066a919061440d565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906144bb565b611764565b6040516106a7919061440d565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906140d0565b61181c565b6040516106e4919061407f565b60405180910390f35b3480156106f957600080fd5b50610702611896565b005b61070c61191e565b005b34801561071a57600080fd5b50610723611b5e565b60405161073091906141f9565b60405180910390f35b34801561074557600080fd5b5061074e611b88565b60405161075b919061440d565b60405180910390f35b34801561077057600080fd5b50610779611b8e565b6040516107869190614196565b60405180910390f35b6107a960048036038101906107a491906140d0565b611c20565b005b3480156107b757600080fd5b506107c0611e49565b6040516107cd919061440d565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190614514565b611e4f565b005b34801561080b57600080fd5b50610814611fd0565b604051610821919061440d565b60405180910390f35b610844600480360381019061083f91906145b4565b61209a565b005b34801561085257600080fd5b5061086d600480360381019061086891906146a2565b612464565b005b34801561087b57600080fd5b506108846124c6565b604051610891919061407f565b60405180910390f35b3480156108a657600080fd5b506108af6124d9565b6040516108bc919061440d565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e791906140d0565b6124e5565b6040516108f99190614196565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190614240565b61258c565b005b34801561093757600080fd5b50610952600480360381019061094d919061477b565b6126b7565b005b34801561096057600080fd5b5061096961285c565b604051610976919061440d565b60405180910390f35b34801561098b57600080fd5b50610994612861565b6040516109a19190614196565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc91906147c8565b6128ef565b6040516109de919061407f565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906144bb565b612983565b005b348015610a1c57600080fd5b50610a25612a7b565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190614808565b612b23565b005b348015610a5c57600080fd5b50610a65612d2a565b604051610a72919061440d565b60405180910390f35b348015610a8757600080fd5b50610a90612d30565b604051610a9d919061440d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b195750610b1882612d4e565b5b9050919050565b601160009054906101000a900460ff16610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906148d5565b60405180910390fd5b6002600b541415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90614941565b60405180910390fd5b6002600b819055506000610bc7611131565b9050600a821115610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906149ad565b60405180910390fd5b601254612710610c1d91906149fc565b8282610c299190614a30565b1115610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190614ad2565b60405180910390fd5b600082610c75611fd0565b610c7f9190614af2565b905034811115610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90614b98565b60405180910390fd5b60005b83811015610d0357610cf03360018386610ce19190614a30565b610ceb9190614a30565b612e30565b8080610cfb90614bb8565b915050610cc7565b5080341115610d2257610d21338234610d1c91906149fc565b612e4e565b5b50506001600b8190555050565b606060008054610d3e90614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6a90614c30565b8015610db75780601f10610d8c57610100808354040283529160200191610db7565b820191906000526020600020905b815481529060010190602001808311610d9a57829003601f168201915b5050505050905090565b6000610dcc82612f42565b610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290614cd4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e51826115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990614d66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee1612fae565b73ffffffffffffffffffffffffffffffffffffffff161480610f105750610f0f81610f0a612fae565b6128ef565b5b610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614df8565b60405180910390fd5b610f598383612fb6565b505050565b610f66612fae565b73ffffffffffffffffffffffffffffffffffffffff16610f84611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190614e64565b60405180910390fd5b601160009054906101000a900460ff16611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906148d5565b60405180910390fd5b6000611033611fd0565b90506000601160006101000a81548160ff02191690831515021790555061105861306f565b817f6349058becdb87a65b3cda491b5893b82a0f75f57ddf0d2fbb373d2371a02a8b60405160405180910390a350565b601160019054906101000a900460ff1681565b6110a3612fae565b73ffffffffffffffffffffffffffffffffffffffff166110c1611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90614e64565b60405180910390fd5b80600c908051906020019061112d929190613f28565b5050565b6000600880549050905090565b61114f611149612fae565b82613095565b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590614ef6565b60405180910390fd5b611199838383613173565b505050565b60006111a983611764565b82106111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190614f88565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61124b612fae565b73ffffffffffffffffffffffffffffffffffffffff16611269611b5e565b73ffffffffffffffffffffffffffffffffffffffff16146112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690614e64565b60405180910390fd5b601160009054906101000a900460ff161561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614ff4565b60405180910390fd5b81600f8190555080600e81905550426010819055506001601160006101000a81548160ff021916908315150217905550601054827ffa7b432778a53a8786452c3cefdd1df8a17f43f9b4587fb4d61b23098e6190af60405160405180910390a35050565b61138e83838360405180602001604052806000815250612464565b505050565b61139b612fae565b73ffffffffffffffffffffffffffffffffffffffff166113b9611b5e565b73ffffffffffffffffffffffffffffffffffffffff161461140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690614e64565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000611445611131565b8210611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90615086565b60405180910390fd5b6008828154811061149a576114996150a6565b5b90600052602060002001549050919050565b6114b4612fae565b73ffffffffffffffffffffffffffffffffffffffff166114d2611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614e64565b60405180910390fd5b806015908051906020019061153e929190613f28565b5050565b60008060105411611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90615121565b60405180910390fd5b600f5461159361306f565b106115a157600090506115bf565b42600f546010546115b29190614a30565b6115bc91906149fc565b90505b90565b601160029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611675906151b3565b60405180910390fd5b80915050919050565b60105481565b6015805461169a90614c30565b80601f01602080910402602001604051908101604052809291908181526020018280546116c690614c30565b80156117135780601f106116e857610100808354040283529160200191611713565b820191906000526020600020905b8154815290600101906020018083116116f657829003601f168201915b505050505081565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90615245565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006107d18210801561182f5750600082115b61186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906152b1565b60405180910390fd5b6013600083815260200190815260200160002060009054906101000a900460ff169050919050565b61189e612fae565b73ffffffffffffffffffffffffffffffffffffffff166118bc611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990614e64565b60405180910390fd5b61191c60006133cf565b565b611926612fae565b73ffffffffffffffffffffffffffffffffffffffff16611944611b5e565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614e64565b60405180910390fd5b60006064476119a99190615300565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6034836119f49190614af2565b9081150290604051600060405180830381858888f19350505050611a1757600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc602083611a609190614af2565b9081150290604051600060405180830381858888f19350505050611a8357600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600b83611acc9190614af2565b9081150290604051600060405180830381858888f19350505050611aef57600080fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b389190614af2565b9081150290604051600060405180830381858888f19350505050611b5b57600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b606060018054611b9d90614c30565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc990614c30565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b5050505050905090565b6002600b541415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90614941565b60405180910390fd5b6002600b819055506000611c78611131565b9050601160029054906101000a900460ff16611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906153a3565b60405180910390fd5b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d429061540f565b60405180910390fd5b601254612710611d5b91906149fc565b8282611d679190614a30565b1115611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90614ad2565b60405180910390fd5b60005b82811015611e3c57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e039061542f565b9190505550611e293360018385611e1a9190614a30565b611e249190614a30565b612e30565b8080611e3490614bb8565b915050611dab565b50506001600b8190555050565b600e5481565b611e57612fae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc906154a5565b60405180910390fd5b8060056000611ed2612fae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f7f612fae565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fc4919061407f565b60405180910390a35050565b6000601160009054906101000a900460ff16612021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612018906148d5565b60405180910390fd5b600061202b61306f565b9050600f5481106120475767011c37937e080000915050612097565b6000600f54600e5483600f5461205d91906149fc565b6120679190614af2565b6120719190615300565b905067011c37937e08000081116120905767011c37937e080000612092565b805b925050505b90565b6002600b5414156120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614941565b60405180910390fd5b6002600b8190555060006120f2611131565b9050601160019054906101000a900460ff16612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90615511565b60405180910390fd5b60005b83839050811015612315573373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8686858181106121b9576121b86150a6565b5b905060200201356040518263ffffffff1660e01b81526004016121dc919061440d565b60206040518083038186803b1580156121f457600080fd5b505afa158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190615546565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612279906155bf565b60405180910390fd5b600015156013600086868581811061229d5761229c6150a6565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16151514612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f99061562b565b60405180910390fd5b808061230d90614bb8565b915050612146565b5060125461271061232691906149fc565b83839050826123359190614a30565b1115612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d90614ad2565b60405180910390fd5b348383905067011c37937e08000061238e9190614af2565b11156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614b98565b60405180910390fd5b60005b83839050811015612456576001601360008686858181106123f6576123f56150a6565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555061244333600183856124349190614a30565b61243e9190614a30565b612e30565b808061244e90614bb8565b9150506123d2565b50506001600b819055505050565b61247561246f612fae565b83613095565b6124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab90614ef6565b60405180910390fd5b6124c084848484613495565b50505050565b601160009054906101000a900460ff1681565b67011c37937e08000081565b60606124f082612f42565b61252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906156bd565b60405180910390fd5b60006125396134f1565b905060008151116125595760405180602001604052806000815250612584565b8061256384613583565b604051602001612574929190615719565b6040516020818303038152906040525b915050919050565b612594612fae565b73ffffffffffffffffffffffffffffffffffffffff166125b2611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90614e64565b60405180910390fd5b60125481111561264d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264490615789565b60405180910390fd5b6000612657611131565b905060005b828110156126985761268584600183856126769190614a30565b6126809190614a30565b612e30565b808061269090614bb8565b91505061265c565b5081601260008282546126ab91906149fc565b92505081905550505050565b6126bf612fae565b73ffffffffffffffffffffffffffffffffffffffff166126dd611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614e64565b60405180910390fd5b60005b8282905081101561285757600073ffffffffffffffffffffffffffffffffffffffff1683838381811061276c5761276b6150a6565b5b905060200201602081019061278191906144bb565b73ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cf906157f5565b60405180910390fd5b6000601460008585858181106127f1576127f06150a6565b5b905060200201602081019061280691906144bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061284f90614bb8565b915050612736565b505050565b600a81565b600c805461286e90614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461289a90614c30565b80156128e75780601f106128bc576101008083540402835291602001916128e7565b820191906000526020600020905b8154815290600101906020018083116128ca57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61298b612fae565b73ffffffffffffffffffffffffffffffffffffffff166129a9611b5e565b73ffffffffffffffffffffffffffffffffffffffff16146129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614e64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690615887565b60405180910390fd5b612a78816133cf565b50565b612a83612fae565b73ffffffffffffffffffffffffffffffffffffffff16612aa1611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee90614e64565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612b2b612fae565b73ffffffffffffffffffffffffffffffffffffffff16612b49611b5e565b73ffffffffffffffffffffffffffffffffffffffff1614612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9690614e64565b60405180910390fd5b818190508484905014612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde90615919565b60405180910390fd5b60005b84849050811015612d2357600073ffffffffffffffffffffffffffffffffffffffff16858583818110612c2057612c1f6150a6565b5b9050602002016020810190612c3591906144bb565b73ffffffffffffffffffffffffffffffffffffffff161415612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906157f5565b60405180910390fd5b828282818110612c9f57612c9e6150a6565b5b9050602002013560146000878785818110612cbd57612cbc6150a6565b5b9050602002016020810190612cd291906144bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080612d1b90614bb8565b915050612bea565b5050505050565b61271081565b600f5481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e295750612e28826136e4565b5b9050919050565b612e4a82826040518060200160405280600081525061374e565b5050565b80471015612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8890615985565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612eb7906159d6565b60006040518083038185875af1925050503d8060008114612ef4576040519150601f19603f3d011682016040523d82523d6000602084013e612ef9565b606091505b5050905080612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3490615a5d565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613029836115d5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008060105411613081576000613090565b6010544261308f91906149fc565b5b905090565b60006130a082612f42565b6130df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d690615aef565b60405180910390fd5b60006130ea836115d5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061315957508373ffffffffffffffffffffffffffffffffffffffff1661314184610dc1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061316a575061316981856128ef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613193826115d5565b73ffffffffffffffffffffffffffffffffffffffff16146131e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e090615b81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325090615c13565b60405180910390fd5b6132648383836137a9565b61326f600082612fb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bf91906149fc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133169190614a30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a0848484613173565b6134ac848484846138bd565b6134eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e290615ca5565b60405180910390fd5b50505050565b60606015805461350090614c30565b80601f016020809104026020016040519081016040528092919081815260200182805461352c90614c30565b80156135795780601f1061354e57610100808354040283529160200191613579565b820191906000526020600020905b81548152906001019060200180831161355c57829003601f168201915b5050505050905090565b606060008214156135cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136df565b600082905060005b600082146135fd5780806135e690614bb8565b915050600a826135f69190615300565b91506135d3565b60008167ffffffffffffffff8111156136195761361861428a565b5b6040519080825280601f01601f19166020018201604052801561364b5781602001600182028036833780820191505090505b5090505b600085146136d85760018261366491906149fc565b9150600a856136739190615cc5565b603061367f9190614a30565b60f81b818381518110613695576136946150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d19190615300565b945061364f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6137588383613a54565b61376560008484846138bd565b6137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379b90615ca5565b60405180910390fd5b505050565b6137b4838383612d49565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137f7576137f281613c22565b613836565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613835576138348382613c6b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138795761387481613dd8565b6138b8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138b7576138b68282613ea9565b5b5b505050565b60006138de8473ffffffffffffffffffffffffffffffffffffffff16612d36565b15613a47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613907612fae565b8786866040518563ffffffff1660e01b81526004016139299493929190615d4b565b602060405180830381600087803b15801561394357600080fd5b505af192505050801561397457506040513d601f19601f820116820180604052508101906139719190615dac565b60015b6139f7573d80600081146139a4576040519150601f19603f3d011682016040523d82523d6000602084013e6139a9565b606091505b506000815114156139ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139e690615ca5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a4c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613abb90615e25565b60405180910390fd5b613acd81612f42565b15613b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0490615e91565b60405180910390fd5b613b19600083836137a9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b699190614a30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c7884611764565b613c8291906149fc565b9050600060076000848152602001908152602001600020549050818114613d67576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613dec91906149fc565b9050600060096000848152602001908152602001600020549050600060088381548110613e1c57613e1b6150a6565b5b906000526020600020015490508060088381548110613e3e57613e3d6150a6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e8d57613e8c615eb1565b5b6001900381819060005260206000200160009055905550505050565b6000613eb483611764565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613f3490614c30565b90600052602060002090601f016020900481019282613f565760008555613f9d565b82601f10613f6f57805160ff1916838001178555613f9d565b82800160010185558215613f9d579182015b82811115613f9c578251825591602001919060010190613f81565b5b509050613faa9190613fae565b5090565b5b80821115613fc7576000816000905550600101613faf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61401481613fdf565b811461401f57600080fd5b50565b6000813590506140318161400b565b92915050565b60006020828403121561404d5761404c613fd5565b5b600061405b84828501614022565b91505092915050565b60008115159050919050565b61407981614064565b82525050565b60006020820190506140946000830184614070565b92915050565b6000819050919050565b6140ad8161409a565b81146140b857600080fd5b50565b6000813590506140ca816140a4565b92915050565b6000602082840312156140e6576140e5613fd5565b5b60006140f4848285016140bb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561413757808201518184015260208101905061411c565b83811115614146576000848401525b50505050565b6000601f19601f8301169050919050565b6000614168826140fd565b6141728185614108565b9350614182818560208601614119565b61418b8161414c565b840191505092915050565b600060208201905081810360008301526141b0818461415d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141e3826141b8565b9050919050565b6141f3816141d8565b82525050565b600060208201905061420e60008301846141ea565b92915050565b61421d816141d8565b811461422857600080fd5b50565b60008135905061423a81614214565b92915050565b6000806040838503121561425757614256613fd5565b5b60006142658582860161422b565b9250506020614276858286016140bb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142c28261414c565b810181811067ffffffffffffffff821117156142e1576142e061428a565b5b80604052505050565b60006142f4613fcb565b905061430082826142b9565b919050565b600067ffffffffffffffff8211156143205761431f61428a565b5b6143298261414c565b9050602081019050919050565b82818337600083830152505050565b600061435861435384614305565b6142ea565b90508281526020810184848401111561437457614373614285565b5b61437f848285614336565b509392505050565b600082601f83011261439c5761439b614280565b5b81356143ac848260208601614345565b91505092915050565b6000602082840312156143cb576143ca613fd5565b5b600082013567ffffffffffffffff8111156143e9576143e8613fda565b5b6143f584828501614387565b91505092915050565b6144078161409a565b82525050565b600060208201905061442260008301846143fe565b92915050565b60008060006060848603121561444157614440613fd5565b5b600061444f8682870161422b565b93505060206144608682870161422b565b9250506040614471868287016140bb565b9150509250925092565b6000806040838503121561449257614491613fd5565b5b60006144a0858286016140bb565b92505060206144b1858286016140bb565b9150509250929050565b6000602082840312156144d1576144d0613fd5565b5b60006144df8482850161422b565b91505092915050565b6144f181614064565b81146144fc57600080fd5b50565b60008135905061450e816144e8565b92915050565b6000806040838503121561452b5761452a613fd5565b5b60006145398582860161422b565b925050602061454a858286016144ff565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261457457614573614280565b5b8235905067ffffffffffffffff81111561459157614590614554565b5b6020830191508360208202830111156145ad576145ac614559565b5b9250929050565b600080602083850312156145cb576145ca613fd5565b5b600083013567ffffffffffffffff8111156145e9576145e8613fda565b5b6145f58582860161455e565b92509250509250929050565b600067ffffffffffffffff82111561461c5761461b61428a565b5b6146258261414c565b9050602081019050919050565b600061464561464084614601565b6142ea565b90508281526020810184848401111561466157614660614285565b5b61466c848285614336565b509392505050565b600082601f83011261468957614688614280565b5b8135614699848260208601614632565b91505092915050565b600080600080608085870312156146bc576146bb613fd5565b5b60006146ca8782880161422b565b94505060206146db8782880161422b565b93505060406146ec878288016140bb565b925050606085013567ffffffffffffffff81111561470d5761470c613fda565b5b61471987828801614674565b91505092959194509250565b60008083601f84011261473b5761473a614280565b5b8235905067ffffffffffffffff81111561475857614757614554565b5b60208301915083602082028301111561477457614773614559565b5b9250929050565b6000806020838503121561479257614791613fd5565b5b600083013567ffffffffffffffff8111156147b0576147af613fda565b5b6147bc85828601614725565b92509250509250929050565b600080604083850312156147df576147de613fd5565b5b60006147ed8582860161422b565b92505060206147fe8582860161422b565b9150509250929050565b6000806000806040858703121561482257614821613fd5565b5b600085013567ffffffffffffffff8111156148405761483f613fda565b5b61484c87828801614725565b9450945050602085013567ffffffffffffffff81111561486f5761486e613fda565b5b61487b8782880161455e565b925092505092959194509250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b60006148bf601983614108565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061492b601f83614108565b9150614936826148f5565b602082019050919050565b6000602082019050818103600083015261495a8161491e565b9050919050565b7f457863656564732053554d4d4f4e5f4c494d4954000000000000000000000000600082015250565b6000614997601483614108565b91506149a282614961565b602082019050919050565b600060208201905081810360008301526149c68161498a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a078261409a565b9150614a128361409a565b925082821015614a2557614a246149cd565b5b828203905092915050565b6000614a3b8261409a565b9150614a468361409a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7b57614a7a6149cd565b5b828201905092915050565b7f45786365656473204d41585f534b554c4c580000000000000000000000000000600082015250565b6000614abc601283614108565b9150614ac782614a86565b602082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd8261409a565b9150614b088361409a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4157614b406149cd565b5b828202905092915050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000614b82601c83614108565b9150614b8d82614b4c565b602082019050919050565b60006020820190508181036000830152614bb181614b75565b9050919050565b6000614bc38261409a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bf657614bf56149cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c4857607f821691505b60208210811415614c5c57614c5b614c01565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614cbe602c83614108565b9150614cc982614c62565b604082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d50602183614108565b9150614d5b82614cf4565b604082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614de2603883614108565b9150614ded82614d86565b604082019050919050565b60006020820190508181036000830152614e1181614dd5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e4e602083614108565b9150614e5982614e18565b602082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614ee0603183614108565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614f72602b83614108565b9150614f7d82614f16565b604082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f5075626c69632073616c652068617320616c726561647920626567756e000000600082015250565b6000614fde601d83614108565b9150614fe982614fa8565b602082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615070602c83614108565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5075626c69632073616c65206861736e27742073746172746564207965740000600082015250565b600061510b601e83614108565b9150615116826150d5565b602082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061519d602983614108565b91506151a882615141565b604082019050919050565b600060208201905081810360008301526151cc81615190565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061522f602a83614108565b915061523a826151d3565b604082019050919050565b6000602082019050818103600083015261525e81615222565b9050919050565b7f496e76616c69642041656f6e2069640000000000000000000000000000000000600082015250565b600061529b600f83614108565b91506152a682615265565b602082019050919050565b600060208201905081810360008301526152ca8161528e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061530b8261409a565b91506153168361409a565b925082615326576153256152d1565b5b828204905092915050565b7f467265652073756d6d6f6e20706861736520666f7220536b756c6c7820726f6c60008201527f65206973206e6f74206163746976650000000000000000000000000000000000602082015250565b600061538d602f83614108565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b7f457863656564732066726565206d696e747320617661696c61626c6500000000600082015250565b60006153f9601c83614108565b9150615404826153c3565b602082019050919050565b60006020820190508181036000830152615428816153ec565b9050919050565b600061543a8261409a565b9150600082141561544e5761544d6149cd565b5b600182039050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061548f601983614108565b915061549a82615459565b602082019050919050565b600060208201905081810360008301526154be81615482565b9050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b60006154fb601283614108565b9150615506826154c5565b602082019050919050565b6000602082019050818103600083015261552a816154ee565b9050919050565b60008151905061554081614214565b92915050565b60006020828403121561555c5761555b613fd5565b5b600061556a84828501615531565b91505092915050565b7f4e6f74207468652041656f6e206f776e65720000000000000000000000000000600082015250565b60006155a9601283614108565b91506155b482615573565b602082019050919050565b600060208201905081810360008301526155d88161559c565b9050919050565b7f41656f6e20616c72656164792075736564000000000000000000000000000000600082015250565b6000615615601183614108565b9150615620826155df565b602082019050919050565b6000602082019050818103600083015261564481615608565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006156a7602f83614108565b91506156b28261564b565b604082019050919050565b600060208201905081810360008301526156d68161569a565b9050919050565b600081905092915050565b60006156f3826140fd565b6156fd81856156dd565b935061570d818560208601614119565b80840191505092915050565b600061572582856156e8565b915061573182846156e8565b91508190509392505050565b7f4578636565647320726573657276656420536b756c6c78206c65667400000000600082015250565b6000615773601c83614108565b915061577e8261573d565b602082019050919050565b600060208201905081810360008301526157a281615766565b9050919050565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b60006157df601a83614108565b91506157ea826157a9565b602082019050919050565b6000602082019050818103600083015261580e816157d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615871602683614108565b915061587c82615815565b604082019050919050565b600060208201905081810360008301526158a081615864565b9050919050565b7f506172616d20617272617973206d757374206265207468652073616d65206c6560008201527f6e67746800000000000000000000000000000000000000000000000000000000602082015250565b6000615903602483614108565b915061590e826158a7565b604082019050919050565b60006020820190508181036000830152615932816158f6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061596f601d83614108565b915061597a82615939565b602082019050919050565b6000602082019050818103600083015261599e81615962565b9050919050565b600081905092915050565b50565b60006159c06000836159a5565b91506159cb826159b0565b600082019050919050565b60006159e1826159b3565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000615a47603a83614108565b9150615a52826159eb565b604082019050919050565b60006020820190508181036000830152615a7681615a3a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615ad9602c83614108565b9150615ae482615a7d565b604082019050919050565b60006020820190508181036000830152615b0881615acc565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b6b602983614108565b9150615b7682615b0f565b604082019050919050565b60006020820190508181036000830152615b9a81615b5e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615bfd602483614108565b9150615c0882615ba1565b604082019050919050565b60006020820190508181036000830152615c2c81615bf0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8f603283614108565b9150615c9a82615c33565b604082019050919050565b60006020820190508181036000830152615cbe81615c82565b9050919050565b6000615cd08261409a565b9150615cdb8361409a565b925082615ceb57615cea6152d1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d1d82615cf6565b615d278185615d01565b9350615d37818560208601614119565b615d408161414c565b840191505092915050565b6000608082019050615d6060008301876141ea565b615d6d60208301866141ea565b615d7a60408301856143fe565b8181036060830152615d8c8184615d12565b905095945050505050565b600081519050615da68161400b565b92915050565b600060208284031215615dc257615dc1613fd5565b5b6000615dd084828501615d97565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e0f602083614108565b9150615e1a82615dd9565b602082019050919050565b60006020820190508181036000830152615e3e81615e02565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e7b601c83614108565b9150615e8682615e45565b602082019050919050565b60006020820190508181036000830152615eaa81615e6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212209960c139ee6298b13636951e5705492388f9b2037931caa0545f1a51f2df01ee64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d4f417cfd29ae83a303b6d75f88b62a696de47e10000000000000000000000000000000000000000000000000000000000000006536b756c6c7800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b554c4c580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f736b756c6c786e66742e696f2f6170692f736b756c6c782f

-----Decoded View---------------
Arg [0] : name (string): Skullx
Arg [1] : symbol (string): SKULLX
Arg [2] : uri (string): https://skullxnft.io/api/skullx/
Arg [3] : aeonsAddress (address): 0xD4f417Cfd29AE83A303B6D75F88B62A696De47E1

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000d4f417cfd29ae83a303b6d75f88b62a696de47e1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 536b756c6c780000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 534b554c4c580000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [9] : 68747470733a2f2f736b756c6c786e66742e696f2f6170692f736b756c6c782f


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.