ETH Price: $3,485.06 (+3.66%)
Gas: 3 Gwei

Token

Lost Children of Andromeda: CYNQUE Prototypes (CYNQUE)
 

Overview

Max Total Supply

1,111 CYNQUE

Holders

371

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CYNQUE
0x0f97b0bd7ad496bc7e0c1d5a6712e9c4796eecb0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CYNQUE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : CYNQUE.sol
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

/*
CYNQUE.sol
Written by: mousedev.eth
*/

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";

contract CYNQUE is ERC721, Ownable{
    using Strings for uint256;

    string public baseURI;
    string public contractURI;
    uint256 public nextTokenId = 1;

    address public passportAddress;
    
    //CRA<<
        uint256 public collectionSize;

        // Length of the auction in blocks
        uint256 public duration;

        // Starting block number of the auction
        uint256 public startBlock;

        // Length of an auction step in blocks
        uint256 public stepDuration;

        // Starting price of the auction in wei
        uint256 public startPrice;

        // Floor price of the auction in wei
        uint256 public floorPrice;

        // Magnitude of price change per step
        uint256 public priceDeltaUp;
        uint256 public priceDeltaDown;

        // Expected rate of mints per step (calculated)
        uint256 public expectedStepMintRate;

        // Current step in the auction, starts at 1
        uint256 internal _currentStep;

        uint256 internal auctionId;

        // Mapping from step to number of mints at that step
        mapping(uint256 => mapping(uint256 => uint256)) internal _mintsPerStep;

        // Mapping from step to price at that step
        mapping(uint256 => uint256) internal _pricePerStep;
    //>>

    mapping(uint256 => bool) public passportHasMinted;

    mapping(uint256 => uint256) public passportToCynque;
    mapping(uint256 => uint256) public cynqueToPassport;

    mapping(address => uint256) public quantityOfPublicMinted;

    //EIP2981
    uint256 private _royaltyBps;
    address private _royaltyRecipient;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;

    //Custom errors
    error MaxPassportMintExceeded();
    error PublicSaleNotLive();
    error NotOwnerOfCynque();
    error TeamMintAlreadyDone();
    error MaxMintedOnPublicSale();
    error IncorrectQuantity();

    error MaxSupplyExceeded();
    error PassportAlreadyMinted();
    error NotOwnerOfPassport();
    error NotEnoughEtherSent();

    constructor(uint256 startBlock_)
        ERC721("Lost Children of Andromeda: CYNQUE Prototypes", "CYNQUE")
    {
        collectionSize = 1111;
        duration = 3046; //~11 hours
        startBlock = startBlock_;
        stepDuration = 69; //~15 minutes
        startPrice = 0;
        floorPrice = 0;
        priceDeltaUp = 0.11 ether;
        priceDeltaDown = 0.055 ether;
        auctionId = 0;

        expectedStepMintRate = collectionSize / (duration / stepDuration);

        // Auction steps start at 1
        _currentStep = 1;
        _pricePerStep[1] = startPrice;

        baseURI = "https://api.lostchildren.xyz/api/cynques/";
        passportAddress = 0x4aa0247996529009a1D805AccC84432CC1b5da5D;
    }

    /*
   __  __                  ______                 __  _
  / / / /_______  _____   / ____/_  ______  _____/ /_(_)___  ____  _____
 / / / / ___/ _ \/ ___/  / /_  / / / / __ \/ ___/ __/ / __ \/ __ \/ ___/
/ /_/ (__  )  __/ /     / __/ / /_/ / / / / /__/ /_/ / /_/ / / / (__  )
\____/____/\___/_/     /_/    \__,_/_/ /_/\___/\__/_/\____/_/ /_/____/
*/
    function mintCynqueWithPassports(
        uint256 _quantity, 
        uint256[] memory passportIds,
        uint8 v, bytes32 r, bytes32 s
    ) external payable {
        bytes32 message = keccak256(abi.encodePacked(msg.sender, _quantity, passportIds));
        bytes32 hashedMessage = hashMessage(message);
        address addr = ecrecover(hashedMessage, v, r, s);
        require(addr == msg.sender, "Invalid sig!");

        if (_quantity < 1 || _quantity > 4) revert IncorrectQuantity();
        if(passportIds.length > _quantity) revert MaxPassportMintExceeded();
        if (quantityOfPublicMinted[msg.sender] + _quantity > 4)
            revert MaxMintedOnPublicSale();

        (uint256 auctionStep, uint256 price) = _getCurrentStepAndPrice();
        // Update auction state to the new step and new price
        if (auctionStep > _currentStep) {
            _pricePerStep[auctionStep] = price;
            _currentStep = auctionStep;
        }

        uint256 discountPrice = ((price * 8)/10) * passportIds.length;
        uint256 totalPrice = ((_quantity - passportIds.length) * price) + discountPrice;

        if (msg.value < totalPrice)
            revert NotEnoughEtherSent();

        for (uint256 i = 0; i < passportIds.length; i++) {
            //Require this passport hasn't minted
            if (passportHasMinted[passportIds[i]] == true)
                revert PassportAlreadyMinted();

            //Make sure they own this passport
            if (IERC721(passportAddress).ownerOf(passportIds[i]) != msg.sender)
                revert NotOwnerOfPassport();

            //Mark minted before minting.
            passportHasMinted[passportIds[i]] = true;

            //Store that this passport is connected to the next cynque
            passportToCynque[passportIds[i]] = nextTokenId;

            //Store that the next cynque is connected to this passport
            cynqueToPassport[nextTokenId] = passportIds[i];
        }

        for (uint256 i = 0; i < _quantity; i++) {
            mintCynque();            
        }

        quantityOfPublicMinted[msg.sender] += _quantity;
        _mintsPerStep[auctionId][auctionStep] += _quantity;
    }

    function cynqueronize(uint256 passportId, uint256 cynqueTokenId) external {
        //Make sure they own this passport
        if (IERC721(passportAddress).ownerOf(passportId) != msg.sender)
            revert NotOwnerOfPassport();

        //Make sure they own this passport
        if (ownerOf(cynqueTokenId) != msg.sender) revert NotOwnerOfCynque();

        //Store that this passport is connected to this cynque.
        passportToCynque[passportId] = cynqueTokenId;

        //Store that this cynque is connected to this passport.
        cynqueToPassport[cynqueTokenId] = passportId;
    }

    function mintCynque() internal {
        //Require under max supply
        if (nextTokenId > 1111) revert MaxSupplyExceeded();

        _mint(msg.sender, nextTokenId);

        unchecked {
            ++nextTokenId;
        }
    }

    function hashMessage(bytes32 message) private pure returns (bytes32) {
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";
        return keccak256(abi.encodePacked(prefix, message));
    }

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

    function walletOfOwner(address _address)
        public
        view
        virtual
        returns (uint256[] memory)
    {
        //Thanks 0xinuarashi for da inspo

        uint256 _balance = balanceOf(_address);
        uint256[] memory _tokens = new uint256[](_balance);
        uint256 _addedTokens;
        for (uint256 i = 1; i <= totalSupply(); i++) {
            if (ownerOf(i) == _address) {
                _tokens[_addedTokens] = i;
                _addedTokens++;
            }

            if (_addedTokens == _balance) break;
        }
        return _tokens;
    }

    function totalSupply() public view returns (uint256) {
        return nextTokenId - 1;
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        require(_exists(id), "Token does not exist!");
        return string(abi.encodePacked(baseURI, id.toString()));
    }

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

    function royaltyInfo(uint256, uint256 value)
        external
        view
        returns (address, uint256)
    {
        return (_royaltyRecipient, (value * _royaltyBps) / 10000);
    }

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

    function communitySweep(uint256 _quantity) external onlyOwner {
        for (uint256 i = 0; i < _quantity; i++) {
            mintCynque();
        }
    }

    function teamMint() external onlyOwner {
        if (nextTokenId > 1) revert TeamMintAlreadyDone();

        for (uint256 i = 0; i < 110; i++) {
            mintCynque();
        }
    }

    function setBaseURI(string calldata _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setContractURI(string calldata _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setPassportAddress(address _passportAddress) external onlyOwner {
        passportAddress = _passportAddress;
    }

    function withdraw() public onlyOwner {
        (bool succ, ) = payable(msg.sender).call{value: address(this).balance}(
            ""
        );
        require(succ, "transfer failed");
    }

    function setPrice(uint256 _price) external onlyOwner {
        _pricePerStep[_currentStep] = _price;
    }

    function restartAuction(
        uint256 duration_,
        uint256 startBlock_,
        uint256 stepDuration_,
        uint256 startPrice_,
        uint256 floorPrice_,
        uint256 priceDeltaUp_,
        uint256 priceDeltaDown_
    ) external onlyOwner(){
        require(duration_ > 0, "duration_ must be > 0");
        require(startBlock_ > block.number, "Start block must be > current block");
        require(stepDuration_ > 0, "stepDuration_ must be > 0");
        require(startPrice_ >= floorPrice_, "startPrice_ must be >= floorPrice_");
        require(priceDeltaUp_ > 0 && priceDeltaDown_ > 0, "priceDeltas must be > 0");

        duration = duration_;
        startBlock = startBlock_;
        stepDuration = stepDuration_;
        startPrice = startPrice_;
        floorPrice = floorPrice_;
        priceDeltaUp = priceDeltaUp_;
        priceDeltaDown = priceDeltaDown_;
        auctionId++;

        expectedStepMintRate = collectionSize / (duration / stepDuration);

         // Auction steps start at 1
        _currentStep = 1;
        _pricePerStep[1] = startPrice;
    }

    /**
  ________  ___     ______  ___  _____________________  _  ______
 / ___/ _ \/ _ |   / __/ / / / |/ / ___/_  __/  _/ __ \/ |/ / __/
/ /__/ , _/ __ |  / _// /_/ /    / /__  / / _/ // /_/ /    /\ \  
\___/_/|_/_/ |_| /_/  \____/_/|_/\___/ /_/ /___/\____/_/|_/___/                                                                     
*/
    /**
     * ROYALTY FUNCTIONS
     */
    function updateRoyalties(address payable recipient, uint256 bps)
        external
        onlyOwner
    {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }



    /**
     * @dev Get the current step of the auction based on the elapsed time.
     */
    function _getStep() internal view returns (uint256) {
        // Note: In this implementation, this can never happen
        // because startBlock is always set to the block.number on deploy
        // in the constructor - but a production version of this contract
        // would want to explicitly set the startBlock of the auction
        require(block.number >= startBlock, "Auction has not started!");

        uint256 elapsedBlocks = block.number - startBlock;

        // The auction can't last longer than the auction's duration
        if (elapsedBlocks > duration) {
            elapsedBlocks = duration;
        }

        uint256 step = Math.ceilDiv(elapsedBlocks, stepDuration);

        // Steps start at 1
        return step > 0 ? step : 1;
    }

    /**
     * @dev Returns the current auction price given the current and previous step.
     */
    function _getAuctionPrice(uint256 currStep, uint256 prevStep) internal view returns (uint256) {
        require(prevStep > 0, "prevStep must be > 0");
        require(_currentStep >= prevStep, "_currentStep must be >= prevStep");
        require(currStep >= prevStep, "currStep must be >= prevStep");

        uint256 price = _pricePerStep[prevStep];
        uint256 passedSteps = currStep - prevStep;
        uint256 numMinted;

        while (passedSteps > 0) {
            numMinted = _mintsPerStep[auctionId][prevStep];

            // More than the expected rate, raise the price
            if (numMinted > expectedStepMintRate) {
                price += priceDeltaUp;
            }
            // Less than the expected rate, lower the price
            else if (numMinted < expectedStepMintRate) {
                if (priceDeltaDown > price - floorPrice) {
                    price = floorPrice;
                } else {
                    price -= priceDeltaDown;
                }
            }
            // If numMinted == expectedStepMintRate, keep the same price

            prevStep += 1;
            passedSteps -= 1;
        }

        return price;
    }

    /**
     * @dev Returns a tuple of the current step and price.
     */
    function _getCurrentStepAndPrice() internal view returns (uint256, uint256) {
        uint256 step = _getStep();

        // False positive guarding against using strict equality checks
        // Shouldn't be a problem here because we check for > and < cases
        // slither-disable-next-line incorrect-equality
        if (step == _currentStep) {
            return (_currentStep, _pricePerStep[_currentStep]);
        } else if (step > _currentStep) {
            return (step, _getAuctionPrice(step, _currentStep));
        } else {
            revert("Step is < _currentStep");
        }
    }

    /**
     * @dev Returns the current auction price.
     */
    function getCurrentAuctionPrice() external view returns (uint256, uint256) {
        (uint256 step, uint256 price) = _getCurrentStepAndPrice();

        return (step, price);
    }
}

File 2 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 5 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 7 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 8 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 12 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"startBlock_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"IncorrectQuantity","type":"error"},{"inputs":[],"name":"MaxMintedOnPublicSale","type":"error"},{"inputs":[],"name":"MaxPassportMintExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"NotEnoughEtherSent","type":"error"},{"inputs":[],"name":"NotOwnerOfCynque","type":"error"},{"inputs":[],"name":"NotOwnerOfPassport","type":"error"},{"inputs":[],"name":"PassportAlreadyMinted","type":"error"},{"inputs":[],"name":"PublicSaleNotLive","type":"error"},{"inputs":[],"name":"TeamMintAlreadyDone","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"communitySweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cynqueToPassport","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"passportId","type":"uint256"},{"internalType":"uint256","name":"cynqueTokenId","type":"uint256"}],"name":"cynqueronize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expectedStepMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"floorPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256[]","name":"passportIds","type":"uint256[]"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mintCynqueWithPassports","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passportAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passportHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passportToCynque","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceDeltaDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceDeltaUp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"quantityOfPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"duration_","type":"uint256"},{"internalType":"uint256","name":"startBlock_","type":"uint256"},{"internalType":"uint256","name":"stepDuration_","type":"uint256"},{"internalType":"uint256","name":"startPrice_","type":"uint256"},{"internalType":"uint256","name":"floorPrice_","type":"uint256"},{"internalType":"uint256","name":"priceDeltaUp_","type":"uint256"},{"internalType":"uint256","name":"priceDeltaDown_","type":"uint256"}],"name":"restartAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_passportAddress","type":"address"}],"name":"setPassportAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009553480156200001657600080fd5b5060405162005d9638038062005d9683398181016040528101906200003c9190620003a3565b6040518060600160405280602d815260200162005d40602d91396040518060400160405280600681526020017f43594e51554500000000000000000000000000000000000000000000000000008152508160009080519060200190620000a4929190620002dc565b508060019080519060200190620000bd929190620002dc565b505050620000e0620000d46200020e60201b60201c565b6200021660201b60201c565b610457600b81905550610be6600c8190555080600d819055506045600e819055506000600f819055506000601081905550670186cc6acd4b000060118190555066c3663566a580006012819055506000601581905550600e54600c54620001489190620003d5565b600b54620001579190620003d5565b6013819055506001601481905550600f5460176000600181526020019081526020016000208190555060405180606001604052806029815260200162005d6d6029913960079080519060200190620001b1929190620002dc565b50734aa0247996529009a1d805accc84432cc1b5da5d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004ca565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ea9062000417565b90600052602060002090601f0160209004810192826200030e57600085556200035a565b82601f106200032957805160ff19168380011785556200035a565b828001600101855582156200035a579182015b82811115620003595782518255916020019190600101906200033c565b5b5090506200036991906200036d565b5090565b5b80821115620003885760008160009055506001016200036e565b5090565b6000815190506200039d81620004b0565b92915050565b600060208284031215620003bc57620003bb620004ab565b5b6000620003cc848285016200038c565b91505092915050565b6000620003e2826200040d565b9150620003ef836200040d565b9250826200040257620004016200044d565b5b828204905092915050565b6000819050919050565b600060028204905060018216806200043057607f821691505b602082108114156200044757620004466200047c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620004bb816200040d565b8114620004c757600080fd5b50565b61586680620004da6000396000f3fe6080604052600436106102935760003560e01c80636c0360eb1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146109e7578063f1a9af8914610a24578063f2fde38b14610a4f578063f35ceb9014610a78578063f670084a14610ab5578063fbc2b62714610ade57610293565b8063b88d4fde146108eb578063ba7a86b814610914578063c60dc6931461092b578063c87b56dd14610956578063cb7f028d14610993578063e8a3d485146109bc57610293565b806391b7f5ed1161011357806391b7f5ed146107dd5780639363c81214610806578063938e3d7b1461083157806395d89b411461085a578063a22cb46514610885578063b329ff69146108ae57610293565b80636c0360eb146106df5780636c2f5acd1461070a57806370a0823114610733578063715018a61461077057806375794a3c146107875780638da5cb5b146107b257610293565b80633ccfd60b116101fe5780634a4e5776116101b75780634a4e5776146105dd5780634c5ff4f71461060857806351c7115b1461063157806355f804b31461065d578063603d324d146106865780636352211e146106a257610293565b80633ccfd60b146104df57806342842e0e146104f6578063438b63001461051f57806345c0f5331461055c578063460f05221461058757806348cd4cb1146105b257610293565b8063143f8ce711610250578063143f8ce7146103bc57806318160ddd146103e7578063215990b31461041257806323b872dd1461043b57806329f7617f146104645780632a55205a146104a157610293565b806301ffc9a714610298578063041b1a1e146102d557806306fdde0314610300578063081812fc1461032b578063095ea7b3146103685780630fb5a6b414610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613d06565b610b1b565b6040516102cc9190614783565b60405180910390f35b3480156102e157600080fd5b506102ea610b7c565b6040516102f79190614b85565b60405180910390f35b34801561030c57600080fd5b50610315610b82565b60405161032291906147e3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613dad565b610c14565b60405161035f91906146d1565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613cc6565b610c99565b005b34801561039d57600080fd5b506103a6610db1565b6040516103b39190614b85565b60405180910390f35b3480156103c857600080fd5b506103d1610db7565b6040516103de9190614b85565b60405180910390f35b3480156103f357600080fd5b506103fc610dbd565b6040516104099190614b85565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613eb1565b610dd3565b005b34801561044757600080fd5b50610462600480360381019061045d9190613bb0565b611041565b005b34801561047057600080fd5b5061048b60048036038101906104869190613dad565b6110a1565b6040516104989190614783565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613e71565b6110c1565b6040516104d6929190614738565b60405180910390f35b3480156104eb57600080fd5b506104f461110d565b005b34801561050257600080fd5b5061051d60048036038101906105189190613bb0565b611238565b005b34801561052b57600080fd5b5061054660048036038101906105419190613ad6565b611258565b6040516105539190614761565b60405180910390f35b34801561056857600080fd5b50610571611361565b60405161057e9190614b85565b60405180910390f35b34801561059357600080fd5b5061059c611367565b6040516105a991906146d1565b60405180910390f35b3480156105be57600080fd5b506105c761138d565b6040516105d49190614b85565b60405180910390f35b3480156105e957600080fd5b506105f2611393565b6040516105ff9190614b85565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613ad6565b611399565b005b34801561063d57600080fd5b50610646611459565b604051610654929190614ba0565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613d60565b611477565b005b6106a0600480360381019061069b9190613dda565b611509565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613dad565b611b07565b6040516106d691906146d1565b60405180910390f35b3480156106eb57600080fd5b506106f4611bb9565b60405161070191906147e3565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613b30565b611c47565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613ad6565b611d0f565b6040516107679190614b85565b60405180910390f35b34801561077c57600080fd5b50610785611dc7565b005b34801561079357600080fd5b5061079c611e4f565b6040516107a99190614b85565b60405180910390f35b3480156107be57600080fd5b506107c7611e55565b6040516107d491906146d1565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613dad565b611e7f565b005b34801561081257600080fd5b5061081b611f18565b6040516108289190614b85565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613d60565b611f1e565b005b34801561086657600080fd5b5061086f611fb0565b60405161087c91906147e3565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613c86565b612042565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613ad6565b612058565b6040516108e29190614b85565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613c03565b612070565b005b34801561092057600080fd5b506109296120d2565b005b34801561093757600080fd5b506109406121b5565b60405161094d9190614b85565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613dad565b6121bb565b60405161098a91906147e3565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613e71565b612237565b005b3480156109c857600080fd5b506109d16123e7565b6040516109de91906147e3565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613b70565b612475565b604051610a1b9190614783565b60405180910390f35b348015610a3057600080fd5b50610a39612509565b604051610a469190614b85565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190613ad6565b61250f565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613dad565b612607565b604051610aac9190614b85565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613dad565b61261f565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613dad565b6126c5565b604051610b129190614b85565b60405180910390f35b6000610b26826126dd565b80610b755750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060008054610b9190614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90614ee6565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b5050505050905090565b6000610c1f826127bf565b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590614a45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca482611b07565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90614aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3461282b565b73ffffffffffffffffffffffffffffffffffffffff161480610d635750610d6281610d5d61282b565b612475565b5b610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906149a5565b60405180910390fd5b610dac8383612833565b505050565b600c5481565b60125481565b60006001600954610dce9190614dd3565b905090565b610ddb61282b565b73ffffffffffffffffffffffffffffffffffffffff16610df9611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690614a65565b60405180910390fd5b60008711610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990614945565b60405180910390fd5b438611610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906149c5565b60405180910390fd5b60008511610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614805565b60405180910390fd5b82841015610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906148e5565b60405180910390fd5b600082118015610f6a5750600081115b610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090614ac5565b60405180910390fd5b86600c8190555085600d8190555084600e8190555083600f8190555082601081905550816011819055508060128190555060156000815480929190610fed90614f49565b9190505550600e54600c546110029190614d48565b600b5461100f9190614d48565b6013819055506001601481905550600f5460176000600181526020019081526020016000208190555050505050505050565b61105261104c61282b565b826128ec565b611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614ae5565b60405180910390fd5b61109c8383836129ca565b505050565b60186020528060005260406000206000915054906101000a900460ff1681565b600080601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710601c54856110f89190614d79565b6111029190614d48565b915091509250929050565b61111561282b565b73ffffffffffffffffffffffffffffffffffffffff16611133611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090614a65565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111af906146bc565b60006040518083038185875af1925050503d80600081146111ec576040519150601f19603f3d011682016040523d82523d6000602084013e6111f1565b606091505b5050905080611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90614b05565b60405180910390fd5b50565b61125383838360405180602001604052806000815250612070565b505050565b6060600061126583611d0f565b905060008167ffffffffffffffff811115611283576112826150b7565b5b6040519080825280602002602001820160405280156112b15781602001602082028036833780820191505090505b509050600080600190505b6112c4610dbd565b8111611355578573ffffffffffffffffffffffffffffffffffffffff166112ea82611b07565b73ffffffffffffffffffffffffffffffffffffffff161415611335578083838151811061131a57611319615088565b5b602002602001018181525050818061133190614f49565b9250505b8382141561134257611355565b808061134d90614f49565b9150506112bc565b50819350505050919050565b600b5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600e5481565b6113a161282b565b73ffffffffffffffffffffffffffffffffffffffff166113bf611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614a65565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600080611467612c31565b9150915081819350935050509091565b61147f61282b565b73ffffffffffffffffffffffffffffffffffffffff1661149d611e55565b73ffffffffffffffffffffffffffffffffffffffff16146114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90614a65565b60405180910390fd5b818160079190611504929190613812565b505050565b600033868660405160200161152093929190614637565b604051602081830303815290604052805190602001209050600061154382612ccd565b905060006001828787876040516000815260200160405260405161156a949392919061479e565b6020604051602081039080840390855afa15801561158c573d6000803e3d6000fd5b5050506020604051035190503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906148a5565b60405180910390fd5b60018810806116155750600488115b1561164c576040517f74dde5a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8787511115611687576040517f1ec6f9a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600488601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d49190614cf2565b111561170c576040517f7d98136700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611717612c31565b9150915060145482111561174557806017600084815260200190815260200160002081905550816014819055505b60008951600a6008846117589190614d79565b6117629190614d48565b61176c9190614d79565b9050600081838c518e61177f9190614dd3565b6117899190614d79565b6117939190614cf2565b9050803410156117cf576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8b51811015611a3e5760011515601860008e84815181106117f6576117f5615088565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415611854576040517fe1f3c53600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8e84815181106118bc576118bb615088565b5b60200260200101516040518263ffffffff1660e01b81526004016118e09190614b85565b60206040518083038186803b1580156118f857600080fd5b505afa15801561190c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190613b03565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601860008e848151811061199657611995615088565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600954601960008e84815181106119dd576119dc615088565b5b60200260200101518152602001908152602001600020819055508b8181518110611a0a57611a09615088565b5b6020026020010151601a60006009548152602001908152602001600020819055508080611a3690614f49565b9150506117d2565b5060005b8c811015611a6557611a52612d39565b8080611a5d90614f49565b915050611a42565b508b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab59190614cf2565b925050819055508b60166000601554815260200190815260200160002060008681526020019081526020016000206000828254611af29190614cf2565b92505081905550505050505050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614a05565b60405180910390fd5b80915050919050565b60078054611bc690614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf290614ee6565b8015611c3f5780601f10611c1457610100808354040283529160200191611c3f565b820191906000526020600020905b815481529060010190602001808311611c2257829003601f168201915b505050505081565b611c4f61282b565b73ffffffffffffffffffffffffffffffffffffffff16611c6d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90614a65565b60405180910390fd5b81601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601c819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906149e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dcf61282b565b73ffffffffffffffffffffffffffffffffffffffff16611ded611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90614a65565b60405180910390fd5b611e4d6000612d95565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e8761282b565b73ffffffffffffffffffffffffffffffffffffffff16611ea5611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290614a65565b60405180910390fd5b806017600060145481526020019081526020016000208190555050565b60105481565b611f2661282b565b73ffffffffffffffffffffffffffffffffffffffff16611f44611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190614a65565b60405180910390fd5b818160089190611fab929190613812565b505050565b606060018054611fbf90614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90614ee6565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b5050505050905090565b61205461204d61282b565b8383612e5b565b5050565b601b6020528060005260406000206000915090505481565b61208161207b61282b565b836128ec565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790614ae5565b60405180910390fd5b6120cc84848484612fc8565b50505050565b6120da61282b565b73ffffffffffffffffffffffffffffffffffffffff166120f8611e55565b73ffffffffffffffffffffffffffffffffffffffff161461214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590614a65565b60405180910390fd5b6001600954111561218b576040517fce2e7a4600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b606e8110156121b25761219f612d39565b80806121aa90614f49565b91505061218e565b50565b60115481565b60606121c6826127bf565b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614b45565b60405180910390fd5b600761221083613024565b604051602001612221929190614698565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016122a99190614b85565b60206040518083038186803b1580156122c157600080fd5b505afa1580156122d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f99190613b03565b73ffffffffffffffffffffffffffffffffffffffff1614612346576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661236682611b07565b73ffffffffffffffffffffffffffffffffffffffff16146123b3576040517f86fdf30b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601960008481526020019081526020016000208190555081601a6000838152602001908152602001600020819055505050565b600880546123f490614ee6565b80601f016020809104026020016040519081016040528092919081815260200182805461242090614ee6565b801561246d5780601f106124425761010080835404028352916020019161246d565b820191906000526020600020905b81548152906001019060200180831161245057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b61251761282b565b73ffffffffffffffffffffffffffffffffffffffff16612535611e55565b73ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614a65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614865565b60405180910390fd5b61260481612d95565b50565b601a6020528060005260406000206000915090505481565b61262761282b565b73ffffffffffffffffffffffffffffffffffffffff16612645611e55565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614a65565b60405180910390fd5b60005b818110156126c1576126ae612d39565b80806126b990614f49565b91505061269e565b5050565b60196020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127b857506127b782613185565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128a683611b07565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128f7826127bf565b612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90614965565b60405180910390fd5b600061294183611b07565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061298357506129828185612475565b5b806129c157508373ffffffffffffffffffffffffffffffffffffffff166129a984610c14565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129ea82611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790614885565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614905565b60405180910390fd5b612abb8383836131ef565b612ac6600082612833565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b169190614dd3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6d9190614cf2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2c8383836131f4565b505050565b6000806000612c3e6131f9565b9050601454811415612c6d57601454601760006014548152602001908152602001600020549250925050612cc9565b601454811115612c8e5780612c848260145461328a565b9250925050612cc9565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc090614a85565b60405180910390fd5b9091565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090508083604051602001612d1b929190614670565b60405160208183030381529060405280519060200120915050919050565b6104576009541115612d77576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d833360095461343f565b60096000815460010191905081905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190614925565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fbb9190614783565b60405180910390a3505050565b612fd38484846129ca565b612fdf84848484613619565b61301e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301590614845565b60405180910390fd5b50505050565b6060600082141561306c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613180565b600082905060005b6000821461309e57808061308790614f49565b915050600a826130979190614d48565b9150613074565b60008167ffffffffffffffff8111156130ba576130b96150b7565b5b6040519080825280601f01601f1916602001820160405280156130ec5781602001600182028036833780820191505090505b5090505b60008514613179576001826131059190614dd3565b9150600a856131149190614fca565b60306131209190614cf2565b60f81b81838151811061313657613135615088565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131729190614d48565b94506130f0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6000600d54431015613240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323790614985565b60405180910390fd5b6000600d54436132509190614dd3565b9050600c5481111561326257600c5490505b600061327082600e546137b0565b905060008111613281576001613283565b805b9250505090565b60008082116132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614b65565b60405180910390fd5b816014541015613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614b25565b60405180910390fd5b81831015613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614825565b60405180910390fd5b6000601760008481526020019081526020016000205490506000838561337c9190614dd3565b905060005b60008211156134335760166000601554815260200190815260200160002060008681526020019081526020016000205490506013548111156133d257601154836133cb9190614cf2565b9250613410565b60135481101561340f57601054836133ea9190614dd3565b60125411156133fd57601054925061340e565b6012548361340b9190614dd3565b92505b5b5b60018561341d9190614cf2565b945060018261342c9190614dd3565b9150613381565b82935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a690614a25565b60405180910390fd5b6134b8816127bf565b156134f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ef906148c5565b60405180910390fd5b613504600083836131ef565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135549190614cf2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613615600083836131f4565b5050565b600061363a8473ffffffffffffffffffffffffffffffffffffffff166137ef565b156137a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261366361282b565b8786866040518563ffffffff1660e01b815260040161368594939291906146ec565b602060405180830381600087803b15801561369f57600080fd5b505af19250505080156136d057506040513d601f19601f820116820180604052508101906136cd9190613d33565b60015b613753573d8060008114613700576040519150601f19603f3d011682016040523d82523d6000602084013e613705565b606091505b5060008151141561374b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374290614845565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a8565b600190505b949350505050565b60008082846137bf9190614fca565b146137cb5760016137ce565b60005b60ff1682846137dd9190614d48565b6137e79190614cf2565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461381e90614ee6565b90600052602060002090601f0160209004810192826138405760008555613887565b82601f1061385957803560ff1916838001178555613887565b82800160010185558215613887579182015b8281111561388657823582559160200191906001019061386b565b5b5090506138949190613898565b5090565b5b808211156138b1576000816000905550600101613899565b5090565b60006138c86138c384614bee565b614bc9565b905080838252602082019050828560208602820111156138eb576138ea6150f0565b5b60005b8581101561391b57816139018882613aac565b8452602084019350602083019250506001810190506138ee565b5050509392505050565b600061393861393384614c1a565b614bc9565b905082815260208101848484011115613954576139536150f5565b5b61395f848285614ea4565b509392505050565b6000813590506139768161578f565b92915050565b60008151905061398b8161578f565b92915050565b6000813590506139a0816157a6565b92915050565b600082601f8301126139bb576139ba6150eb565b5b81356139cb8482602086016138b5565b91505092915050565b6000813590506139e3816157bd565b92915050565b6000813590506139f8816157d4565b92915050565b600081359050613a0d816157eb565b92915050565b600081519050613a22816157eb565b92915050565b600082601f830112613a3d57613a3c6150eb565b5b8135613a4d848260208601613925565b91505092915050565b60008083601f840112613a6c57613a6b6150eb565b5b8235905067ffffffffffffffff811115613a8957613a886150e6565b5b602083019150836001820283011115613aa557613aa46150f0565b5b9250929050565b600081359050613abb81615802565b92915050565b600081359050613ad081615819565b92915050565b600060208284031215613aec57613aeb6150ff565b5b6000613afa84828501613967565b91505092915050565b600060208284031215613b1957613b186150ff565b5b6000613b278482850161397c565b91505092915050565b60008060408385031215613b4757613b466150ff565b5b6000613b5585828601613991565b9250506020613b6685828601613aac565b9150509250929050565b60008060408385031215613b8757613b866150ff565b5b6000613b9585828601613967565b9250506020613ba685828601613967565b9150509250929050565b600080600060608486031215613bc957613bc86150ff565b5b6000613bd786828701613967565b9350506020613be886828701613967565b9250506040613bf986828701613aac565b9150509250925092565b60008060008060808587031215613c1d57613c1c6150ff565b5b6000613c2b87828801613967565b9450506020613c3c87828801613967565b9350506040613c4d87828801613aac565b925050606085013567ffffffffffffffff811115613c6e57613c6d6150fa565b5b613c7a87828801613a28565b91505092959194509250565b60008060408385031215613c9d57613c9c6150ff565b5b6000613cab85828601613967565b9250506020613cbc858286016139d4565b9150509250929050565b60008060408385031215613cdd57613cdc6150ff565b5b6000613ceb85828601613967565b9250506020613cfc85828601613aac565b9150509250929050565b600060208284031215613d1c57613d1b6150ff565b5b6000613d2a848285016139fe565b91505092915050565b600060208284031215613d4957613d486150ff565b5b6000613d5784828501613a13565b91505092915050565b60008060208385031215613d7757613d766150ff565b5b600083013567ffffffffffffffff811115613d9557613d946150fa565b5b613da185828601613a56565b92509250509250929050565b600060208284031215613dc357613dc26150ff565b5b6000613dd184828501613aac565b91505092915050565b600080600080600060a08688031215613df657613df56150ff565b5b6000613e0488828901613aac565b955050602086013567ffffffffffffffff811115613e2557613e246150fa565b5b613e31888289016139a6565b9450506040613e4288828901613ac1565b9350506060613e53888289016139e9565b9250506080613e64888289016139e9565b9150509295509295909350565b60008060408385031215613e8857613e876150ff565b5b6000613e9685828601613aac565b9250506020613ea785828601613aac565b9150509250929050565b600080600080600080600060e0888a031215613ed057613ecf6150ff565b5b6000613ede8a828b01613aac565b9750506020613eef8a828b01613aac565b9650506040613f008a828b01613aac565b9550506060613f118a828b01613aac565b9450506080613f228a828b01613aac565b93505060a0613f338a828b01613aac565b92505060c0613f448a828b01613aac565b91505092959891949750929550565b6000613f5f83836145e4565b60208301905092915050565b6000613f778383614602565b60208301905092915050565b613f8c81614e07565b82525050565b613fa3613f9e82614e07565b614f92565b82525050565b6000613fb482614c70565b613fbe8185614c9e565b9350613fc983614c4b565b8060005b83811015613ffa578151613fe18882613f53565b9750613fec83614c91565b925050600181019050613fcd565b5085935050505092915050565b600061401282614c70565b61401c8185614caf565b935061402783614c4b565b8060005b8381101561405857815161403f8882613f6b565b975061404a83614c91565b92505060018101905061402b565b5085935050505092915050565b61406e81614e2b565b82525050565b61407d81614e37565b82525050565b61409461408f82614e37565b614fa4565b82525050565b60006140a582614c7b565b6140af8185614cba565b93506140bf818560208601614eb3565b6140c881615104565b840191505092915050565b60006140de82614c7b565b6140e88185614ccb565b93506140f8818560208601614eb3565b80840191505092915050565b600061410f82614c86565b6141198185614cd6565b9350614129818560208601614eb3565b61413281615104565b840191505092915050565b600061414882614c86565b6141528185614ce7565b9350614162818560208601614eb3565b80840191505092915050565b6000815461417b81614ee6565b6141858186614ce7565b945060018216600081146141a057600181146141b1576141e4565b60ff198316865281860193506141e4565b6141ba85614c5b565b60005b838110156141dc578154818901526001820191506020810190506141bd565b838801955050505b50505092915050565b60006141fa601983614cd6565b915061420582615122565b602082019050919050565b600061421d601c83614cd6565b91506142288261514b565b602082019050919050565b6000614240603283614cd6565b915061424b82615174565b604082019050919050565b6000614263602683614cd6565b915061426e826151c3565b604082019050919050565b6000614286602583614cd6565b915061429182615212565b604082019050919050565b60006142a9600c83614cd6565b91506142b482615261565b602082019050919050565b60006142cc601c83614cd6565b91506142d78261528a565b602082019050919050565b60006142ef602283614cd6565b91506142fa826152b3565b604082019050919050565b6000614312602483614cd6565b915061431d82615302565b604082019050919050565b6000614335601983614cd6565b915061434082615351565b602082019050919050565b6000614358601583614cd6565b91506143638261537a565b602082019050919050565b600061437b602c83614cd6565b9150614386826153a3565b604082019050919050565b600061439e601883614cd6565b91506143a9826153f2565b602082019050919050565b60006143c1603883614cd6565b91506143cc8261541b565b604082019050919050565b60006143e4602383614cd6565b91506143ef8261546a565b604082019050919050565b6000614407602a83614cd6565b9150614412826154b9565b604082019050919050565b600061442a602983614cd6565b915061443582615508565b604082019050919050565b600061444d602083614cd6565b915061445882615557565b602082019050919050565b6000614470602c83614cd6565b915061447b82615580565b604082019050919050565b6000614493602083614cd6565b915061449e826155cf565b602082019050919050565b60006144b6601683614cd6565b91506144c1826155f8565b602082019050919050565b60006144d9602183614cd6565b91506144e482615621565b604082019050919050565b60006144fc600083614ccb565b915061450782615670565b600082019050919050565b600061451f601783614cd6565b915061452a82615673565b602082019050919050565b6000614542603183614cd6565b915061454d8261569c565b604082019050919050565b6000614565600f83614cd6565b9150614570826156eb565b602082019050919050565b6000614588602083614cd6565b915061459382615714565b602082019050919050565b60006145ab601583614cd6565b91506145b68261573d565b602082019050919050565b60006145ce601483614cd6565b91506145d982615766565b602082019050919050565b6145ed81614e8d565b82525050565b6145fc81614e8d565b82525050565b61460b81614e8d565b82525050565b61462261461d82614e8d565b614fc0565b82525050565b61463181614e97565b82525050565b60006146438286613f92565b6014820191506146538285614611565b6020820191506146638284614007565b9150819050949350505050565b600061467c82856140d3565b91506146888284614083565b6020820191508190509392505050565b60006146a4828561416e565b91506146b0828461413d565b91508190509392505050565b60006146c7826144ef565b9150819050919050565b60006020820190506146e66000830184613f83565b92915050565b60006080820190506147016000830187613f83565b61470e6020830186613f83565b61471b60408301856145f3565b818103606083015261472d818461409a565b905095945050505050565b600060408201905061474d6000830185613f83565b61475a60208301846145f3565b9392505050565b6000602082019050818103600083015261477b8184613fa9565b905092915050565b60006020820190506147986000830184614065565b92915050565b60006080820190506147b36000830187614074565b6147c06020830186614628565b6147cd6040830185614074565b6147da6060830184614074565b95945050505050565b600060208201905081810360008301526147fd8184614104565b905092915050565b6000602082019050818103600083015261481e816141ed565b9050919050565b6000602082019050818103600083015261483e81614210565b9050919050565b6000602082019050818103600083015261485e81614233565b9050919050565b6000602082019050818103600083015261487e81614256565b9050919050565b6000602082019050818103600083015261489e81614279565b9050919050565b600060208201905081810360008301526148be8161429c565b9050919050565b600060208201905081810360008301526148de816142bf565b9050919050565b600060208201905081810360008301526148fe816142e2565b9050919050565b6000602082019050818103600083015261491e81614305565b9050919050565b6000602082019050818103600083015261493e81614328565b9050919050565b6000602082019050818103600083015261495e8161434b565b9050919050565b6000602082019050818103600083015261497e8161436e565b9050919050565b6000602082019050818103600083015261499e81614391565b9050919050565b600060208201905081810360008301526149be816143b4565b9050919050565b600060208201905081810360008301526149de816143d7565b9050919050565b600060208201905081810360008301526149fe816143fa565b9050919050565b60006020820190508181036000830152614a1e8161441d565b9050919050565b60006020820190508181036000830152614a3e81614440565b9050919050565b60006020820190508181036000830152614a5e81614463565b9050919050565b60006020820190508181036000830152614a7e81614486565b9050919050565b60006020820190508181036000830152614a9e816144a9565b9050919050565b60006020820190508181036000830152614abe816144cc565b9050919050565b60006020820190508181036000830152614ade81614512565b9050919050565b60006020820190508181036000830152614afe81614535565b9050919050565b60006020820190508181036000830152614b1e81614558565b9050919050565b60006020820190508181036000830152614b3e8161457b565b9050919050565b60006020820190508181036000830152614b5e8161459e565b9050919050565b60006020820190508181036000830152614b7e816145c1565b9050919050565b6000602082019050614b9a60008301846145f3565b92915050565b6000604082019050614bb560008301856145f3565b614bc260208301846145f3565b9392505050565b6000614bd3614be4565b9050614bdf8282614f18565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0957614c086150b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c3557614c346150b7565b5b614c3e82615104565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cfd82614e8d565b9150614d0883614e8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3d57614d3c614ffb565b5b828201905092915050565b6000614d5382614e8d565b9150614d5e83614e8d565b925082614d6e57614d6d61502a565b5b828204905092915050565b6000614d8482614e8d565b9150614d8f83614e8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc857614dc7614ffb565b5b828202905092915050565b6000614dde82614e8d565b9150614de983614e8d565b925082821015614dfc57614dfb614ffb565b5b828203905092915050565b6000614e1282614e6d565b9050919050565b6000614e2482614e6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614ed1578082015181840152602081019050614eb6565b83811115614ee0576000848401525b50505050565b60006002820490506001821680614efe57607f821691505b60208210811415614f1257614f11615059565b5b50919050565b614f2182615104565b810181811067ffffffffffffffff82111715614f4057614f3f6150b7565b5b80604052505050565b6000614f5482614e8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8757614f86614ffb565b5b600182019050919050565b6000614f9d82614fae565b9050919050565b6000819050919050565b6000614fb982615115565b9050919050565b6000819050919050565b6000614fd582614e8d565b9150614fe083614e8d565b925082614ff057614fef61502a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f737465704475726174696f6e5f206d757374206265203e203000000000000000600082015250565b7f6375727253746570206d757374206265203e3d20707265765374657000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420736967210000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f737461727450726963655f206d757374206265203e3d20666c6f6f725072696360008201527f655f000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6475726174696f6e5f206d757374206265203e20300000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41756374696f6e20686173206e6f742073746172746564210000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f537461727420626c6f636b206d757374206265203e2063757272656e7420626c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53746570206973203c205f63757272656e745374657000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f707269636544656c746173206d757374206265203e2030000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5f63757272656e7453746570206d757374206265203e3d207072657653746570600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7072657653746570206d757374206265203e2030000000000000000000000000600082015250565b61579881614e07565b81146157a357600080fd5b50565b6157af81614e19565b81146157ba57600080fd5b50565b6157c681614e2b565b81146157d157600080fd5b50565b6157dd81614e37565b81146157e857600080fd5b50565b6157f481614e41565b81146157ff57600080fd5b50565b61580b81614e8d565b811461581657600080fd5b50565b61582281614e97565b811461582d57600080fd5b5056fea26469706673582212201201e298981074dcff387ca52bfa4bd74a98d66cc08dcdde34b2dc7ea5c45c8e64736f6c634300080700334c6f7374204368696c6472656e206f6620416e64726f6d6564613a2043594e5155452050726f746f747970657368747470733a2f2f6170692e6c6f73746368696c6472656e2e78797a2f6170692f63796e717565732f0000000000000000000000000000000000000000000000000000000000e541df

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636c0360eb1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146109e7578063f1a9af8914610a24578063f2fde38b14610a4f578063f35ceb9014610a78578063f670084a14610ab5578063fbc2b62714610ade57610293565b8063b88d4fde146108eb578063ba7a86b814610914578063c60dc6931461092b578063c87b56dd14610956578063cb7f028d14610993578063e8a3d485146109bc57610293565b806391b7f5ed1161011357806391b7f5ed146107dd5780639363c81214610806578063938e3d7b1461083157806395d89b411461085a578063a22cb46514610885578063b329ff69146108ae57610293565b80636c0360eb146106df5780636c2f5acd1461070a57806370a0823114610733578063715018a61461077057806375794a3c146107875780638da5cb5b146107b257610293565b80633ccfd60b116101fe5780634a4e5776116101b75780634a4e5776146105dd5780634c5ff4f71461060857806351c7115b1461063157806355f804b31461065d578063603d324d146106865780636352211e146106a257610293565b80633ccfd60b146104df57806342842e0e146104f6578063438b63001461051f57806345c0f5331461055c578063460f05221461058757806348cd4cb1146105b257610293565b8063143f8ce711610250578063143f8ce7146103bc57806318160ddd146103e7578063215990b31461041257806323b872dd1461043b57806329f7617f146104645780632a55205a146104a157610293565b806301ffc9a714610298578063041b1a1e146102d557806306fdde0314610300578063081812fc1461032b578063095ea7b3146103685780630fb5a6b414610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613d06565b610b1b565b6040516102cc9190614783565b60405180910390f35b3480156102e157600080fd5b506102ea610b7c565b6040516102f79190614b85565b60405180910390f35b34801561030c57600080fd5b50610315610b82565b60405161032291906147e3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613dad565b610c14565b60405161035f91906146d1565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613cc6565b610c99565b005b34801561039d57600080fd5b506103a6610db1565b6040516103b39190614b85565b60405180910390f35b3480156103c857600080fd5b506103d1610db7565b6040516103de9190614b85565b60405180910390f35b3480156103f357600080fd5b506103fc610dbd565b6040516104099190614b85565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613eb1565b610dd3565b005b34801561044757600080fd5b50610462600480360381019061045d9190613bb0565b611041565b005b34801561047057600080fd5b5061048b60048036038101906104869190613dad565b6110a1565b6040516104989190614783565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613e71565b6110c1565b6040516104d6929190614738565b60405180910390f35b3480156104eb57600080fd5b506104f461110d565b005b34801561050257600080fd5b5061051d60048036038101906105189190613bb0565b611238565b005b34801561052b57600080fd5b5061054660048036038101906105419190613ad6565b611258565b6040516105539190614761565b60405180910390f35b34801561056857600080fd5b50610571611361565b60405161057e9190614b85565b60405180910390f35b34801561059357600080fd5b5061059c611367565b6040516105a991906146d1565b60405180910390f35b3480156105be57600080fd5b506105c761138d565b6040516105d49190614b85565b60405180910390f35b3480156105e957600080fd5b506105f2611393565b6040516105ff9190614b85565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613ad6565b611399565b005b34801561063d57600080fd5b50610646611459565b604051610654929190614ba0565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613d60565b611477565b005b6106a0600480360381019061069b9190613dda565b611509565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613dad565b611b07565b6040516106d691906146d1565b60405180910390f35b3480156106eb57600080fd5b506106f4611bb9565b60405161070191906147e3565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613b30565b611c47565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613ad6565b611d0f565b6040516107679190614b85565b60405180910390f35b34801561077c57600080fd5b50610785611dc7565b005b34801561079357600080fd5b5061079c611e4f565b6040516107a99190614b85565b60405180910390f35b3480156107be57600080fd5b506107c7611e55565b6040516107d491906146d1565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190613dad565b611e7f565b005b34801561081257600080fd5b5061081b611f18565b6040516108289190614b85565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613d60565b611f1e565b005b34801561086657600080fd5b5061086f611fb0565b60405161087c91906147e3565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190613c86565b612042565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613ad6565b612058565b6040516108e29190614b85565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613c03565b612070565b005b34801561092057600080fd5b506109296120d2565b005b34801561093757600080fd5b506109406121b5565b60405161094d9190614b85565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613dad565b6121bb565b60405161098a91906147e3565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190613e71565b612237565b005b3480156109c857600080fd5b506109d16123e7565b6040516109de91906147e3565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613b70565b612475565b604051610a1b9190614783565b60405180910390f35b348015610a3057600080fd5b50610a39612509565b604051610a469190614b85565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190613ad6565b61250f565b005b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190613dad565b612607565b604051610aac9190614b85565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190613dad565b61261f565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613dad565b6126c5565b604051610b129190614b85565b60405180910390f35b6000610b26826126dd565b80610b755750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060008054610b9190614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90614ee6565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b5050505050905090565b6000610c1f826127bf565b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590614a45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca482611b07565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90614aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3461282b565b73ffffffffffffffffffffffffffffffffffffffff161480610d635750610d6281610d5d61282b565b612475565b5b610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906149a5565b60405180910390fd5b610dac8383612833565b505050565b600c5481565b60125481565b60006001600954610dce9190614dd3565b905090565b610ddb61282b565b73ffffffffffffffffffffffffffffffffffffffff16610df9611e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690614a65565b60405180910390fd5b60008711610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990614945565b60405180910390fd5b438611610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906149c5565b60405180910390fd5b60008511610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90614805565b60405180910390fd5b82841015610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906148e5565b60405180910390fd5b600082118015610f6a5750600081115b610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090614ac5565b60405180910390fd5b86600c8190555085600d8190555084600e8190555083600f8190555082601081905550816011819055508060128190555060156000815480929190610fed90614f49565b9190505550600e54600c546110029190614d48565b600b5461100f9190614d48565b6013819055506001601481905550600f5460176000600181526020019081526020016000208190555050505050505050565b61105261104c61282b565b826128ec565b611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614ae5565b60405180910390fd5b61109c8383836129ca565b505050565b60186020528060005260406000206000915054906101000a900460ff1681565b600080601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710601c54856110f89190614d79565b6111029190614d48565b915091509250929050565b61111561282b565b73ffffffffffffffffffffffffffffffffffffffff16611133611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090614a65565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111af906146bc565b60006040518083038185875af1925050503d80600081146111ec576040519150601f19603f3d011682016040523d82523d6000602084013e6111f1565b606091505b5050905080611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90614b05565b60405180910390fd5b50565b61125383838360405180602001604052806000815250612070565b505050565b6060600061126583611d0f565b905060008167ffffffffffffffff811115611283576112826150b7565b5b6040519080825280602002602001820160405280156112b15781602001602082028036833780820191505090505b509050600080600190505b6112c4610dbd565b8111611355578573ffffffffffffffffffffffffffffffffffffffff166112ea82611b07565b73ffffffffffffffffffffffffffffffffffffffff161415611335578083838151811061131a57611319615088565b5b602002602001018181525050818061133190614f49565b9250505b8382141561134257611355565b808061134d90614f49565b9150506112bc565b50819350505050919050565b600b5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600e5481565b6113a161282b565b73ffffffffffffffffffffffffffffffffffffffff166113bf611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140c90614a65565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600080611467612c31565b9150915081819350935050509091565b61147f61282b565b73ffffffffffffffffffffffffffffffffffffffff1661149d611e55565b73ffffffffffffffffffffffffffffffffffffffff16146114f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ea90614a65565b60405180910390fd5b818160079190611504929190613812565b505050565b600033868660405160200161152093929190614637565b604051602081830303815290604052805190602001209050600061154382612ccd565b905060006001828787876040516000815260200160405260405161156a949392919061479e565b6020604051602081039080840390855afa15801561158c573d6000803e3d6000fd5b5050506020604051035190503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906148a5565b60405180910390fd5b60018810806116155750600488115b1561164c576040517f74dde5a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8787511115611687576040517f1ec6f9a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600488601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d49190614cf2565b111561170c576040517f7d98136700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611717612c31565b9150915060145482111561174557806017600084815260200190815260200160002081905550816014819055505b60008951600a6008846117589190614d79565b6117629190614d48565b61176c9190614d79565b9050600081838c518e61177f9190614dd3565b6117899190614d79565b6117939190614cf2565b9050803410156117cf576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8b51811015611a3e5760011515601860008e84815181106117f6576117f5615088565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415611854576040517fe1f3c53600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8e84815181106118bc576118bb615088565b5b60200260200101516040518263ffffffff1660e01b81526004016118e09190614b85565b60206040518083038186803b1580156118f857600080fd5b505afa15801561190c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190613b03565b73ffffffffffffffffffffffffffffffffffffffff161461197d576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601860008e848151811061199657611995615088565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600954601960008e84815181106119dd576119dc615088565b5b60200260200101518152602001908152602001600020819055508b8181518110611a0a57611a09615088565b5b6020026020010151601a60006009548152602001908152602001600020819055508080611a3690614f49565b9150506117d2565b5060005b8c811015611a6557611a52612d39565b8080611a5d90614f49565b915050611a42565b508b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab59190614cf2565b925050819055508b60166000601554815260200190815260200160002060008681526020019081526020016000206000828254611af29190614cf2565b92505081905550505050505050505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614a05565b60405180910390fd5b80915050919050565b60078054611bc690614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf290614ee6565b8015611c3f5780601f10611c1457610100808354040283529160200191611c3f565b820191906000526020600020905b815481529060010190602001808311611c2257829003601f168201915b505050505081565b611c4f61282b565b73ffffffffffffffffffffffffffffffffffffffff16611c6d611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90614a65565b60405180910390fd5b81601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601c819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906149e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dcf61282b565b73ffffffffffffffffffffffffffffffffffffffff16611ded611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3a90614a65565b60405180910390fd5b611e4d6000612d95565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e8761282b565b73ffffffffffffffffffffffffffffffffffffffff16611ea5611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290614a65565b60405180910390fd5b806017600060145481526020019081526020016000208190555050565b60105481565b611f2661282b565b73ffffffffffffffffffffffffffffffffffffffff16611f44611e55565b73ffffffffffffffffffffffffffffffffffffffff1614611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190614a65565b60405180910390fd5b818160089190611fab929190613812565b505050565b606060018054611fbf90614ee6565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90614ee6565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b5050505050905090565b61205461204d61282b565b8383612e5b565b5050565b601b6020528060005260406000206000915090505481565b61208161207b61282b565b836128ec565b6120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790614ae5565b60405180910390fd5b6120cc84848484612fc8565b50505050565b6120da61282b565b73ffffffffffffffffffffffffffffffffffffffff166120f8611e55565b73ffffffffffffffffffffffffffffffffffffffff161461214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590614a65565b60405180910390fd5b6001600954111561218b576040517fce2e7a4600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b606e8110156121b25761219f612d39565b80806121aa90614f49565b91505061218e565b50565b60115481565b60606121c6826127bf565b612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614b45565b60405180910390fd5b600761221083613024565b604051602001612221929190614698565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016122a99190614b85565b60206040518083038186803b1580156122c157600080fd5b505afa1580156122d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f99190613b03565b73ffffffffffffffffffffffffffffffffffffffff1614612346576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661236682611b07565b73ffffffffffffffffffffffffffffffffffffffff16146123b3576040517f86fdf30b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601960008481526020019081526020016000208190555081601a6000838152602001908152602001600020819055505050565b600880546123f490614ee6565b80601f016020809104026020016040519081016040528092919081815260200182805461242090614ee6565b801561246d5780601f106124425761010080835404028352916020019161246d565b820191906000526020600020905b81548152906001019060200180831161245057829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b61251761282b565b73ffffffffffffffffffffffffffffffffffffffff16612535611e55565b73ffffffffffffffffffffffffffffffffffffffff161461258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614a65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f290614865565b60405180910390fd5b61260481612d95565b50565b601a6020528060005260406000206000915090505481565b61262761282b565b73ffffffffffffffffffffffffffffffffffffffff16612645611e55565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614a65565b60405180910390fd5b60005b818110156126c1576126ae612d39565b80806126b990614f49565b91505061269e565b5050565b60196020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127b857506127b782613185565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128a683611b07565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128f7826127bf565b612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90614965565b60405180910390fd5b600061294183611b07565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061298357506129828185612475565b5b806129c157508373ffffffffffffffffffffffffffffffffffffffff166129a984610c14565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129ea82611b07565b73ffffffffffffffffffffffffffffffffffffffff1614612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790614885565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa790614905565b60405180910390fd5b612abb8383836131ef565b612ac6600082612833565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b169190614dd3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6d9190614cf2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2c8383836131f4565b505050565b6000806000612c3e6131f9565b9050601454811415612c6d57601454601760006014548152602001908152602001600020549250925050612cc9565b601454811115612c8e5780612c848260145461328a565b9250925050612cc9565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc090614a85565b60405180910390fd5b9091565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090508083604051602001612d1b929190614670565b60405160208183030381529060405280519060200120915050919050565b6104576009541115612d77576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d833360095461343f565b60096000815460010191905081905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190614925565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fbb9190614783565b60405180910390a3505050565b612fd38484846129ca565b612fdf84848484613619565b61301e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301590614845565b60405180910390fd5b50505050565b6060600082141561306c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613180565b600082905060005b6000821461309e57808061308790614f49565b915050600a826130979190614d48565b9150613074565b60008167ffffffffffffffff8111156130ba576130b96150b7565b5b6040519080825280601f01601f1916602001820160405280156130ec5781602001600182028036833780820191505090505b5090505b60008514613179576001826131059190614dd3565b9150600a856131149190614fca565b60306131209190614cf2565b60f81b81838151811061313657613135615088565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131729190614d48565b94506130f0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6000600d54431015613240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323790614985565b60405180910390fd5b6000600d54436132509190614dd3565b9050600c5481111561326257600c5490505b600061327082600e546137b0565b905060008111613281576001613283565b805b9250505090565b60008082116132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614b65565b60405180910390fd5b816014541015613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614b25565b60405180910390fd5b81831015613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d90614825565b60405180910390fd5b6000601760008481526020019081526020016000205490506000838561337c9190614dd3565b905060005b60008211156134335760166000601554815260200190815260200160002060008681526020019081526020016000205490506013548111156133d257601154836133cb9190614cf2565b9250613410565b60135481101561340f57601054836133ea9190614dd3565b60125411156133fd57601054925061340e565b6012548361340b9190614dd3565b92505b5b5b60018561341d9190614cf2565b945060018261342c9190614dd3565b9150613381565b82935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a690614a25565b60405180910390fd5b6134b8816127bf565b156134f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ef906148c5565b60405180910390fd5b613504600083836131ef565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135549190614cf2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613615600083836131f4565b5050565b600061363a8473ffffffffffffffffffffffffffffffffffffffff166137ef565b156137a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261366361282b565b8786866040518563ffffffff1660e01b815260040161368594939291906146ec565b602060405180830381600087803b15801561369f57600080fd5b505af19250505080156136d057506040513d601f19601f820116820180604052508101906136cd9190613d33565b60015b613753573d8060008114613700576040519150601f19603f3d011682016040523d82523d6000602084013e613705565b606091505b5060008151141561374b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374290614845565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a8565b600190505b949350505050565b60008082846137bf9190614fca565b146137cb5760016137ce565b60005b60ff1682846137dd9190614d48565b6137e79190614cf2565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461381e90614ee6565b90600052602060002090601f0160209004810192826138405760008555613887565b82601f1061385957803560ff1916838001178555613887565b82800160010185558215613887579182015b8281111561388657823582559160200191906001019061386b565b5b5090506138949190613898565b5090565b5b808211156138b1576000816000905550600101613899565b5090565b60006138c86138c384614bee565b614bc9565b905080838252602082019050828560208602820111156138eb576138ea6150f0565b5b60005b8581101561391b57816139018882613aac565b8452602084019350602083019250506001810190506138ee565b5050509392505050565b600061393861393384614c1a565b614bc9565b905082815260208101848484011115613954576139536150f5565b5b61395f848285614ea4565b509392505050565b6000813590506139768161578f565b92915050565b60008151905061398b8161578f565b92915050565b6000813590506139a0816157a6565b92915050565b600082601f8301126139bb576139ba6150eb565b5b81356139cb8482602086016138b5565b91505092915050565b6000813590506139e3816157bd565b92915050565b6000813590506139f8816157d4565b92915050565b600081359050613a0d816157eb565b92915050565b600081519050613a22816157eb565b92915050565b600082601f830112613a3d57613a3c6150eb565b5b8135613a4d848260208601613925565b91505092915050565b60008083601f840112613a6c57613a6b6150eb565b5b8235905067ffffffffffffffff811115613a8957613a886150e6565b5b602083019150836001820283011115613aa557613aa46150f0565b5b9250929050565b600081359050613abb81615802565b92915050565b600081359050613ad081615819565b92915050565b600060208284031215613aec57613aeb6150ff565b5b6000613afa84828501613967565b91505092915050565b600060208284031215613b1957613b186150ff565b5b6000613b278482850161397c565b91505092915050565b60008060408385031215613b4757613b466150ff565b5b6000613b5585828601613991565b9250506020613b6685828601613aac565b9150509250929050565b60008060408385031215613b8757613b866150ff565b5b6000613b9585828601613967565b9250506020613ba685828601613967565b9150509250929050565b600080600060608486031215613bc957613bc86150ff565b5b6000613bd786828701613967565b9350506020613be886828701613967565b9250506040613bf986828701613aac565b9150509250925092565b60008060008060808587031215613c1d57613c1c6150ff565b5b6000613c2b87828801613967565b9450506020613c3c87828801613967565b9350506040613c4d87828801613aac565b925050606085013567ffffffffffffffff811115613c6e57613c6d6150fa565b5b613c7a87828801613a28565b91505092959194509250565b60008060408385031215613c9d57613c9c6150ff565b5b6000613cab85828601613967565b9250506020613cbc858286016139d4565b9150509250929050565b60008060408385031215613cdd57613cdc6150ff565b5b6000613ceb85828601613967565b9250506020613cfc85828601613aac565b9150509250929050565b600060208284031215613d1c57613d1b6150ff565b5b6000613d2a848285016139fe565b91505092915050565b600060208284031215613d4957613d486150ff565b5b6000613d5784828501613a13565b91505092915050565b60008060208385031215613d7757613d766150ff565b5b600083013567ffffffffffffffff811115613d9557613d946150fa565b5b613da185828601613a56565b92509250509250929050565b600060208284031215613dc357613dc26150ff565b5b6000613dd184828501613aac565b91505092915050565b600080600080600060a08688031215613df657613df56150ff565b5b6000613e0488828901613aac565b955050602086013567ffffffffffffffff811115613e2557613e246150fa565b5b613e31888289016139a6565b9450506040613e4288828901613ac1565b9350506060613e53888289016139e9565b9250506080613e64888289016139e9565b9150509295509295909350565b60008060408385031215613e8857613e876150ff565b5b6000613e9685828601613aac565b9250506020613ea785828601613aac565b9150509250929050565b600080600080600080600060e0888a031215613ed057613ecf6150ff565b5b6000613ede8a828b01613aac565b9750506020613eef8a828b01613aac565b9650506040613f008a828b01613aac565b9550506060613f118a828b01613aac565b9450506080613f228a828b01613aac565b93505060a0613f338a828b01613aac565b92505060c0613f448a828b01613aac565b91505092959891949750929550565b6000613f5f83836145e4565b60208301905092915050565b6000613f778383614602565b60208301905092915050565b613f8c81614e07565b82525050565b613fa3613f9e82614e07565b614f92565b82525050565b6000613fb482614c70565b613fbe8185614c9e565b9350613fc983614c4b565b8060005b83811015613ffa578151613fe18882613f53565b9750613fec83614c91565b925050600181019050613fcd565b5085935050505092915050565b600061401282614c70565b61401c8185614caf565b935061402783614c4b565b8060005b8381101561405857815161403f8882613f6b565b975061404a83614c91565b92505060018101905061402b565b5085935050505092915050565b61406e81614e2b565b82525050565b61407d81614e37565b82525050565b61409461408f82614e37565b614fa4565b82525050565b60006140a582614c7b565b6140af8185614cba565b93506140bf818560208601614eb3565b6140c881615104565b840191505092915050565b60006140de82614c7b565b6140e88185614ccb565b93506140f8818560208601614eb3565b80840191505092915050565b600061410f82614c86565b6141198185614cd6565b9350614129818560208601614eb3565b61413281615104565b840191505092915050565b600061414882614c86565b6141528185614ce7565b9350614162818560208601614eb3565b80840191505092915050565b6000815461417b81614ee6565b6141858186614ce7565b945060018216600081146141a057600181146141b1576141e4565b60ff198316865281860193506141e4565b6141ba85614c5b565b60005b838110156141dc578154818901526001820191506020810190506141bd565b838801955050505b50505092915050565b60006141fa601983614cd6565b915061420582615122565b602082019050919050565b600061421d601c83614cd6565b91506142288261514b565b602082019050919050565b6000614240603283614cd6565b915061424b82615174565b604082019050919050565b6000614263602683614cd6565b915061426e826151c3565b604082019050919050565b6000614286602583614cd6565b915061429182615212565b604082019050919050565b60006142a9600c83614cd6565b91506142b482615261565b602082019050919050565b60006142cc601c83614cd6565b91506142d78261528a565b602082019050919050565b60006142ef602283614cd6565b91506142fa826152b3565b604082019050919050565b6000614312602483614cd6565b915061431d82615302565b604082019050919050565b6000614335601983614cd6565b915061434082615351565b602082019050919050565b6000614358601583614cd6565b91506143638261537a565b602082019050919050565b600061437b602c83614cd6565b9150614386826153a3565b604082019050919050565b600061439e601883614cd6565b91506143a9826153f2565b602082019050919050565b60006143c1603883614cd6565b91506143cc8261541b565b604082019050919050565b60006143e4602383614cd6565b91506143ef8261546a565b604082019050919050565b6000614407602a83614cd6565b9150614412826154b9565b604082019050919050565b600061442a602983614cd6565b915061443582615508565b604082019050919050565b600061444d602083614cd6565b915061445882615557565b602082019050919050565b6000614470602c83614cd6565b915061447b82615580565b604082019050919050565b6000614493602083614cd6565b915061449e826155cf565b602082019050919050565b60006144b6601683614cd6565b91506144c1826155f8565b602082019050919050565b60006144d9602183614cd6565b91506144e482615621565b604082019050919050565b60006144fc600083614ccb565b915061450782615670565b600082019050919050565b600061451f601783614cd6565b915061452a82615673565b602082019050919050565b6000614542603183614cd6565b915061454d8261569c565b604082019050919050565b6000614565600f83614cd6565b9150614570826156eb565b602082019050919050565b6000614588602083614cd6565b915061459382615714565b602082019050919050565b60006145ab601583614cd6565b91506145b68261573d565b602082019050919050565b60006145ce601483614cd6565b91506145d982615766565b602082019050919050565b6145ed81614e8d565b82525050565b6145fc81614e8d565b82525050565b61460b81614e8d565b82525050565b61462261461d82614e8d565b614fc0565b82525050565b61463181614e97565b82525050565b60006146438286613f92565b6014820191506146538285614611565b6020820191506146638284614007565b9150819050949350505050565b600061467c82856140d3565b91506146888284614083565b6020820191508190509392505050565b60006146a4828561416e565b91506146b0828461413d565b91508190509392505050565b60006146c7826144ef565b9150819050919050565b60006020820190506146e66000830184613f83565b92915050565b60006080820190506147016000830187613f83565b61470e6020830186613f83565b61471b60408301856145f3565b818103606083015261472d818461409a565b905095945050505050565b600060408201905061474d6000830185613f83565b61475a60208301846145f3565b9392505050565b6000602082019050818103600083015261477b8184613fa9565b905092915050565b60006020820190506147986000830184614065565b92915050565b60006080820190506147b36000830187614074565b6147c06020830186614628565b6147cd6040830185614074565b6147da6060830184614074565b95945050505050565b600060208201905081810360008301526147fd8184614104565b905092915050565b6000602082019050818103600083015261481e816141ed565b9050919050565b6000602082019050818103600083015261483e81614210565b9050919050565b6000602082019050818103600083015261485e81614233565b9050919050565b6000602082019050818103600083015261487e81614256565b9050919050565b6000602082019050818103600083015261489e81614279565b9050919050565b600060208201905081810360008301526148be8161429c565b9050919050565b600060208201905081810360008301526148de816142bf565b9050919050565b600060208201905081810360008301526148fe816142e2565b9050919050565b6000602082019050818103600083015261491e81614305565b9050919050565b6000602082019050818103600083015261493e81614328565b9050919050565b6000602082019050818103600083015261495e8161434b565b9050919050565b6000602082019050818103600083015261497e8161436e565b9050919050565b6000602082019050818103600083015261499e81614391565b9050919050565b600060208201905081810360008301526149be816143b4565b9050919050565b600060208201905081810360008301526149de816143d7565b9050919050565b600060208201905081810360008301526149fe816143fa565b9050919050565b60006020820190508181036000830152614a1e8161441d565b9050919050565b60006020820190508181036000830152614a3e81614440565b9050919050565b60006020820190508181036000830152614a5e81614463565b9050919050565b60006020820190508181036000830152614a7e81614486565b9050919050565b60006020820190508181036000830152614a9e816144a9565b9050919050565b60006020820190508181036000830152614abe816144cc565b9050919050565b60006020820190508181036000830152614ade81614512565b9050919050565b60006020820190508181036000830152614afe81614535565b9050919050565b60006020820190508181036000830152614b1e81614558565b9050919050565b60006020820190508181036000830152614b3e8161457b565b9050919050565b60006020820190508181036000830152614b5e8161459e565b9050919050565b60006020820190508181036000830152614b7e816145c1565b9050919050565b6000602082019050614b9a60008301846145f3565b92915050565b6000604082019050614bb560008301856145f3565b614bc260208301846145f3565b9392505050565b6000614bd3614be4565b9050614bdf8282614f18565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0957614c086150b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c3557614c346150b7565b5b614c3e82615104565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cfd82614e8d565b9150614d0883614e8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3d57614d3c614ffb565b5b828201905092915050565b6000614d5382614e8d565b9150614d5e83614e8d565b925082614d6e57614d6d61502a565b5b828204905092915050565b6000614d8482614e8d565b9150614d8f83614e8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc857614dc7614ffb565b5b828202905092915050565b6000614dde82614e8d565b9150614de983614e8d565b925082821015614dfc57614dfb614ffb565b5b828203905092915050565b6000614e1282614e6d565b9050919050565b6000614e2482614e6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614ed1578082015181840152602081019050614eb6565b83811115614ee0576000848401525b50505050565b60006002820490506001821680614efe57607f821691505b60208210811415614f1257614f11615059565b5b50919050565b614f2182615104565b810181811067ffffffffffffffff82111715614f4057614f3f6150b7565b5b80604052505050565b6000614f5482614e8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8757614f86614ffb565b5b600182019050919050565b6000614f9d82614fae565b9050919050565b6000819050919050565b6000614fb982615115565b9050919050565b6000819050919050565b6000614fd582614e8d565b9150614fe083614e8d565b925082614ff057614fef61502a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f737465704475726174696f6e5f206d757374206265203e203000000000000000600082015250565b7f6375727253746570206d757374206265203e3d20707265765374657000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420736967210000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f737461727450726963655f206d757374206265203e3d20666c6f6f725072696360008201527f655f000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6475726174696f6e5f206d757374206265203e20300000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f41756374696f6e20686173206e6f742073746172746564210000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f537461727420626c6f636b206d757374206265203e2063757272656e7420626c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53746570206973203c205f63757272656e745374657000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f707269636544656c746173206d757374206265203e2030000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5f63757272656e7453746570206d757374206265203e3d207072657653746570600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7072657653746570206d757374206265203e2030000000000000000000000000600082015250565b61579881614e07565b81146157a357600080fd5b50565b6157af81614e19565b81146157ba57600080fd5b50565b6157c681614e2b565b81146157d157600080fd5b50565b6157dd81614e37565b81146157e857600080fd5b50565b6157f481614e41565b81146157ff57600080fd5b50565b61580b81614e8d565b811461581657600080fd5b50565b61582281614e97565b811461582d57600080fd5b5056fea26469706673582212201201e298981074dcff387ca52bfa4bd74a98d66cc08dcdde34b2dc7ea5c45c8e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000e541df

-----Decoded View---------------
Arg [0] : startBlock_ (uint256): 15024607

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000e541df


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.