ETH Price: $3,365.49 (-1.50%)
Gas: 8 Gwei

Token

Acclimated​MoonCats (😺)
 

Overview

Max Total Supply

20,042 😺

Holders

5,506

Market

Volume (24H)

0.2551 ETH

Min Price (24H)

$373.91 @ 0.111100 ETH

Max Price (24H)

$484.63 @ 0.144000 ETH
Balance
2 😺
0xED144fa2cb2CA68a617a8bd19e6faD9245187E33
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

After a whirlwind adventure four years in the making the MoonCats have been rescued and are acclimating to their life on the blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoonCatAcclimator

Compiler Version
v0.7.3+commit.9bfce1f6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 21 : MoonCatAcclimator.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.7.3;

import "./openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721Holder.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "./IERC998.sol";
import "./MoonCatOrderLookup.sol";

//        ##          ##
//      ##  ##      ##  ##
//      ##..  ######  ..##
//    ####              ####
//    ##                  ##
//    ##    ()      ()    ##
//    ##                  ##
//    ##     \  ##  /     ##
//    ##      \/  \/      ##
//      ##              ##
//        ##############
//
//    #AcclimatedMoonCatsGlow
//  https://mooncat.community/


/**
 * @title MoonCat​Acclimator
 * @notice Accepts an original MoonCat and wraps it to present an ERC721- and ERC998-compliant asset
 * @notice Accepts a MoonCat wrapped with the older wrapping contract (at 0x7C40c3...) and re-wraps them
 * @notice Ownable by an admin address. Rights of the Owner are to pause and unpause the contract, and update metadata URL
 */
contract MoonCatAcclimator is
    ERC721,
    ERC721Holder,
    Ownable,
    Pausable,
    IERC998ERC721TopDown,
    IERC998ERC721TopDownEnumerable
{
    bytes32 private constant ERC998_MAGIC_VALUE = 0x00000000000000000000000000000000000000000000000000000000cd740db5;
    bytes4 private constant _INTERFACE_ID_ERC998ERC721TopDown = 0x1efdf36a;

    MoonCatOrderLookup public rescueOrderLookup;

    MoonCatRescue MCR = MoonCatRescue(0x60cd862c9C687A9dE49aecdC3A99b74A4fc54aB6);
    MoonCatsWrapped OLD_MCRW = MoonCatsWrapped(0x7C40c393DC0f283F318791d746d894DdD3693572);

    constructor(string memory baseURI)
        ERC721(unicode"Acclimated​MoonCats", unicode"😺")
        Ownable()
    {
        _registerInterface(_INTERFACE_ID_ERC998ERC721TopDown);
        rescueOrderLookup = new MoonCatOrderLookup();
        setBaseURI(baseURI);
        _pause(); // Start in a paused state
    }

    function pause() public whenNotPaused onlyOwner {
        _pause();
    }
    function unpause() public whenPaused onlyOwner {
        _unpause();
    }

    /**
     * @dev Emitted when `catId` token is wrapped into `tokenId`, owned by `owner`.
     */
    event MoonCatAcclimated(
        uint256 tokenId,
        address indexed owner
    );

    /**
     * @dev Emitted when `catId` token is unwrapped from `tokenId`, owned by `owner`.
     */
    event MoonCatDeacclimated(
        uint256 tokenId,
        address indexed owner
    );

    /**
     * @dev returns tokenId of newly minted wrapped MoonCat
     *
     * Requirements:
     *
     * - Do not need to check if _msgSender() is MoonCat owner as the wrapped token is assigned to owner (even if that's not _msgSender())
     * - Owner needs to call makeAdoptionOfferToAddress() in moonCatRescue first.
     * Emits a {Transfer} ERC721 event.
     * @param _rescueOrder the minting order of the MoonCat to wrap
     * @return the ID (rescue order) of the minted token
     */
    function wrap(uint256 _rescueOrder) public returns (uint256) {
        bytes5 catId = MCR.rescueOrder(_rescueOrder);
        address _owner = MCR.catOwners(catId);
        MCR.acceptAdoptionOffer(catId);
        return _wrap(_owner, _rescueOrder);
    }

    /**
     * @dev returns tokenId of newly minted wrapped MoonCat
     *
     * This method must not allow an adoption offer specifically to the new Wrapper address to be buy-able by anyone,
     * because that is how the real owner sets up a manual wrapping of the MoonCat (where they don't really intend to sell).
     *
     * Requirements:
     *
     * - MoonCat at `_rescueOrder` must be offered for sale to any address.
     * - Must have active makeAdoptionOffer() in moonCatRescue contract.
     * Emits a {Transfer} and {MoonCatAcclimated} event.
     * @param _rescueOrder the minting order of the MoonCat to wrap
     * @return the ID (rescue order) of the minted token
     */
    function buyAndWrap(uint256 _rescueOrder) public payable returns (uint256) {
        bytes5 catId = MCR.rescueOrder(_rescueOrder);
        (bool exists, , , , address onlyOfferTo) = MCR.adoptionOffers(catId);
        require(
            onlyOfferTo == address(0) && exists,
            "That MoonCat is not for sale"
        );
        MCR.acceptAdoptionOffer{value: msg.value}(catId);
        return _wrap(_msgSender(), _rescueOrder);
    }

    /**
     * @dev returns tokenId of burned unwrapped MoonCat
     *
     * Requirements:
     *
     * - msgSender() must be owner.
     * Emits a {Transfer} and {MoonCatDeacclimated} event.
     * @param _tokenId the minting order of the MoonCat to unwrap
     * @return the ID (rescue order) of the burned token
     */
    function unwrap(uint256 _tokenId) public returns (uint256) {
        require(ownerOf(_tokenId) == _msgSender(), "Not your MoonCat!");
        require(
            super._exists(_tokenId),
            "That MoonCat is not wrapped in this contract"
        );
        bytes5 catId = MCR.rescueOrder(_tokenId);
        MCR.giveCat(catId, ownerOf(_tokenId));
        _burn(_tokenId);
        emit MoonCatDeacclimated(_tokenId, _msgSender());
        return _tokenId;
    }

    /**
     * @dev wraps MoonCat that was safeTransferFrom() the old MoonCat wrapper directly in one transaction
     *
     * Requirements:
     * - Owner of old wrapped MoonCat must include the rescueOrder in the calldata as a bytes32
     * Emits a {Transfer} and {MoonCatAcclimated} event.
     * @param _to the address that is to be the owner of the newly-wrapped token
     * @param _oldTokenID the ID of the token in the other wrapping contract
     * @param _rescueOrder the minting order of the MoonCat being wrapped
     * @return the ID (rescue order) of the minted token
     */
    function _wrapOnSafeTransferFromReceipt(
        address _to,
        uint256 _oldTokenID,
        uint256 _rescueOrder
    ) internal returns (uint256) {
        if (
            MCR.rescueOrder(_rescueOrder) !=
            OLD_MCRW._tokenIDToCatID(_oldTokenID)
        ) {
            // Look up rescue order in Lookup contract
            require(
                rescueOrderLookup.oldTokenIdExists(_oldTokenID),
                "Unable to determine proper rescueOrder for this old token ID"
            );
            _rescueOrder = rescueOrderLookup.oldTokenIdToRescueOrder(
                _oldTokenID
            );
            require(
                MCR.rescueOrder(_rescueOrder) ==
                    OLD_MCRW._tokenIDToCatID(_oldTokenID),
                "_oldTokenID and _rescueOrder do not match same catID"
            );
        }
        OLD_MCRW.unwrap(_oldTokenID);
        return _wrap(_to, _rescueOrder);
    }

    /**
     * @dev wraps an unwrapped MoonCat
     *
     * notes:
     * Emits a {Transfer} and {MoonCatAcclimated} event.
     * @param _owner the address that should be the new owner of the newly-created token
     * @param _tokenId the ID of the token to create (rescue order of the MoonCat)
     * @return the ID (rescue order) of the minted token
     */
    function _wrap(address _owner, uint256 _tokenId)
        internal
        returns (uint256)
    {
        require(!paused(), "Attempted wrap while paused");
        _mint(_owner, _tokenId);
        emit MoonCatAcclimated(_tokenId, _msgSender());
        return _tokenId;
    }

    /**
     * @dev Always returns `IERC721Receiver.onERC721Received.selector`
     *
     * This function handles both automatic rewrapping of old-wrapped MoonCats, and assigning ERC721 tokens as "child assets"
     * of MoonCats already wrapped with this contract.
     *
     * If the incoming token is an old-wrapped Mooncat, the `_data` variable is structured as
     * the first 32 bytes are the rescue order of the transferred MoonCat, subsequent 20 bytes
     * are the new owner's address. If the rescue order is not supplied, the `_oldTokenId` is
     * looked up in the {MoonCatOrderLookup} contract. If a new owner's address is not
     * supplied, the new owner will be assigned as the `_from` sender.
     * Emits a {Transfer} and {MoonCatAcclimated} event.
     *
     * If the incoming token is any other type of ERC721, the `_data` variable is structured as
     * the first 32 bytes are the token ID (rescue order) of the MoonCat that is to receive that assest.
     * Emits a {ReceivedChild} event.
     *
     * @param _operator the _msgSender of the transaction
     * @param _from the address of the former owner of the incoming token
     * @param _oldTokenId the ID of the incoming token
     * @param _data additional metdata
     */
    function onERC721Received(
        address _operator,
        address _from,
        uint256 _oldTokenId,
        bytes calldata _data
    ) public override(ERC721Holder, IERC998ERC721TopDown) returns (bytes4) {
        // Using msg.sender here instead of _operator because we want to know the most recent transaction source,
        // not the start of the chain
        if (msg.sender == address(0x7C40c393DC0f283F318791d746d894DdD3693572)) {
            // This is a Wrapped MoonCat incoming. Don't make it a child, instead unwrap and re-wrap it

            // Who should own this MoonCat after wrapping?
            address _to =
                (_data.length >= 32 + 20 && bytesToAddress(_data, 32) != address(0))
                    ? bytesToAddress(_data, 32)
                    : _from;
            require(
                _to != address(0) && _to != address(this),
                "Invalid destination owner specified"
            );

            _wrapOnSafeTransferFromReceipt(
                _to,
                _oldTokenId,
                (_data.length >= 32) ? toUint256(_data, 0) : 0
            );
            return ERC721Holder.onERC721Received(_operator, _from, _oldTokenId, _data);
        }

        // Otherwise, handle as ERC998 Child incoming
        require(_data.length > 0, "_data must contain the uint256 tokenId to transfer the child token to");
        // convert up to 32 bytes of_data to uint256, owner NFT tokenId passed as uint in bytes
        uint256 tokenId;
        assembly {tokenId := calldataload(164)}
        if (_data.length < 32) {
            tokenId = tokenId >> 256 - _data.length * 8;
        }
        _receiveChild(_from, tokenId, msg.sender, _oldTokenId);
        require(ERC721(msg.sender).ownerOf(_oldTokenId) != address(0), "Child token not owned");
        return ERC721Holder.onERC721Received(_operator, _from, _oldTokenId, _data);
    }

    /**
     * @dev sets the base URI
     *
     * notes:
     * - only callable by the contract owner
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        _setBaseURI(_newBaseURI);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     * This contract returns the locally-wrapped token count as well as old-wrapped MoonCats
     * that are mapped in the {MoonCatOrderLookup} contract.
     */
    function balanceOf(address _owner) public view override returns (uint256) {
        return
            super.balanceOf(_owner) +
            rescueOrderLookup.entriesPerAddress(_owner);
    }

    /**
    * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This contract enumerates the locally-wrapped token count as well as old-wrapped MoonCats
     * that are mapped in the {MoonCatOrderLookup} contract.
    */
    function tokenOfOwnerByIndex(address _owner, uint256 _index)
        public
        view
        override
        returns (uint256)
    {
        uint256 localBalance = super.balanceOf(_owner);
        if (_index < localBalance) {
            // This index is in the range of tokens owned by that address here in this contract
            return super.tokenOfOwnerByIndex(_owner, _index);
        }

        // Looking to enumerate a token that's mapped to the old wrapping contract
        uint16 countFound = 0;
        for (uint256 i = 0; i < OLD_MCRW.balanceOf(_owner); i++) {
            uint256 oldTokenId = OLD_MCRW.tokenOfOwnerByIndex(_owner, i);
            if (rescueOrderLookup.oldTokenIdExists(oldTokenId)) {
                countFound++;
                if (countFound == _index - localBalance + 1) {
                    return
                        rescueOrderLookup.oldTokenIdToRescueOrder(oldTokenId);
                }
            }
        }
        revert("Cannot find token ID for that index");
    }

    /**
    * @dev See {IERC721-ownerOf}.
    */
    function ownerOf(uint256 _tokenId) public view override returns (address) {
        if (super._exists(_tokenId)) {
            return super.ownerOf(_tokenId);
        }

        // Check other wrapper

        // First see if we're dealing with the MoonCat that was the zeroth-wrapped MoonCat in other wrapper
        bytes5 thisMoonCatID = MCR.rescueOrder(_tokenId);
        if (thisMoonCatID == OLD_MCRW._tokenIDToCatID(0)) {
            return OLD_MCRW.ownerOf(0);
        }
        uint256 otherID = OLD_MCRW._catIDToTokenID(thisMoonCatID);
        // We're not dealing with the zeroth-wrapped MoonCat, so a zero here is an indication they don't exist
        require(otherID > 0, "That MoonCat is not wrapped");
        return OLD_MCRW.ownerOf(otherID);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address _owner, address _operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            rescueOrderLookup.entriesPerAddress(_owner) == 0
                ? super.isApprovedForAll(_owner, _operator)
                : super.isApprovedForAll(_owner, _operator) &&
                    OLD_MCRW.isApprovedForAll(_owner, address(this));
    }

    /**
     * @dev See {ERC721-_isApprovedOrOwner}.
     */
    function _isApprovedOrOwner(address _spender, uint256 _tokenId)
        internal
        view
        override
        returns (bool)
    {
        require(
            _exists(_tokenId),
            "ERC721: operator query for nonexistent token"
        );
        // Differs here from OpenZeppelin standard:
        // Calls `ownerOf` instead of `ERC721.ownerOf`
        address _owner = ownerOf(_tokenId);
        return (_spender == _owner ||
            getApproved(_tokenId) == _spender ||
            ERC721.isApprovedForAll(_owner, _spender));
    }

    /**
     * @dev See {ERC721-approve}.
     */
    function approve(address _to, uint256 _tokenId) public override {
        address _owner = ownerOf(_tokenId);
        require(_to != _owner, "ERC721: approval to current owner");
        // Differs here from OpenZeppelin standard:
        // Calls `isApprovedForAll` instead of `ERC721.isApprovedForAll`
        require(
            _msgSender() == _owner || isApprovedForAll(_owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(_to, _tokenId);
    }

    /**
     * @dev rewrap several MoonCats from the old wrapper at once
     * Owner needs to call setApprovalForAll in old wrapper first.
     * @param _rescueOrders an array of MoonCats, identified by rescue order, to rewrap
     * @param _oldTokenIds an array holding the corresponding token ID
     *        in the old wrapper for each MoonCat to be rewrapped
     */
    function batchReWrap(
        uint256[] memory _rescueOrders,
        uint256[] memory _oldTokenIds
    ) public {
        for (uint16 i = 0; i < _rescueOrders.length; i++) {
            address _owner = OLD_MCRW.ownerOf(_oldTokenIds[i]);
            OLD_MCRW.safeTransferFrom(
                _owner,
                address(this),
                _oldTokenIds[i],
                abi.encodePacked(
                    uintToBytes(_rescueOrders[i]),
                    addressToBytes(_owner)
                )
            );
        }
    }

    /**
     * @dev Take a list of unwrapped MoonCat rescue orders and wrap them.
     * @param _rescueOrders an array of MoonCats, identified by rescue order, to rewrap
     */
    function batchWrap(uint256[] memory _rescueOrders) public {
        for (uint16 i = 0; i < _rescueOrders.length; i++) {
            wrap(_rescueOrders[i]);
        }
    }

    /**
     * @dev Take a list of MoonCats wrapped in this contract and unwrap them.
     * @param _rescueOrders an array of MoonCats, identified by rescue order, to unwrap
     */
    function batchUnwrap(uint256[] memory _rescueOrders) public {
        for (uint16 i = 0; i < _rescueOrders.length; i++) {
            unwrap(_rescueOrders[i]);
        }
    }

    /**
     * @dev See {ERC721-_transfer}.
     * If the token being transferred exists in this contract, the standard ERC721 logic is used.
     * If the token does not exist in this contract, look it up in the old wrapping contract,
     * and attempt to wrap-then-transfer it.
     */
    function _transfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal override {
        if (super._exists(_tokenId)) {
            return super._transfer(_from, _to, _tokenId);
        }

        require(_to != address(0), "ERC721: transfer to the zero address");

        if (_to == address(this)) {
            // Sending the token to be owned by this contract? That's not what they meant; make it owned by the original owner after re-wrapping
            _to = _from;
        }
        uint256 oldTokenId =
            OLD_MCRW._catIDToTokenID(MCR.rescueOrder(_tokenId));
        OLD_MCRW.safeTransferFrom(
            _from,
            address(this),
            oldTokenId,
            abi.encodePacked(uintToBytes(_tokenId), addressToBytes(_to))
        );
        rescueOrderLookup.removeEntry(oldTokenId);
    }

    /**
     * @dev See {ERC721-_exists}.
     * If the token being queried exists in this contract, the standard ERC721 logic is used.
     * If the token does not exist in this contract, look it up in the old wrapping contract,
     * and see if it exists there.
     */
    function _exists(uint256 _tokenId) internal view override returns (bool) {
        if (super._exists(_tokenId)) {
            return true;
        }

        // Check if exists in old wrapping contract
        bytes5 realMoonCatZero = OLD_MCRW._tokenIDToCatID(0);
        bytes5 thisMoonCatID = MCR.rescueOrder(_tokenId);
        if (thisMoonCatID == realMoonCatZero) {
            return true;
        }

        return OLD_MCRW._catIDToTokenID(thisMoonCatID) != 0;
    }

    ///// ERC998 /////
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableSet for EnumerableSet.AddressSet;

    /// @dev mapping of local token IDs, and which addresses they own children at.
    /// tokenId => child contract
    mapping(uint256 => EnumerableSet.AddressSet) private childContracts;

    /// @dev mapping of local token IDs, addresses they own children at, and IDs of the specific child tokens
    /// tokenId => (child address => array of child tokens)
    mapping(uint256 => mapping(address => EnumerableSet.UintSet)) private childTokens;

    /// @dev mapping of addresses of child tokens, the specific child token IDs, and which local token owns them
    /// child address => childId => tokenId
    mapping(address => mapping(uint256 => uint256)) internal childTokenOwner;
    uint8 constant TOKEN_OWNER_OFFSET = 10;

    /**
     * @dev a token has been transferred to this contract mark which local token is to now own it
     * Emits a {ReceivedChild} event.
     *
     * @param _from the address who sent the token to this contract
     * @param _tokenId the local token ID that is to be the parent
     * @param _childContract the address of the child token's contract
     * @param _childTokenId the ID value of teh incoming child token
     */
    function _receiveChild(address _from, uint256 _tokenId, address _childContract, uint256 _childTokenId) private {
        require(!paused(), "Child received while paused");
        require(super._exists(_tokenId), "That MoonCat is not wrapped in this contract");
        require(childTokens[_tokenId][_childContract].contains(_childTokenId) == false, "Cannot receive child token because it has already been received");
        childContracts[_tokenId].add(_childContract);
        childTokens[_tokenId][_childContract].add(_childTokenId);
        childTokenOwner[_childContract][_childTokenId] = _tokenId + TOKEN_OWNER_OFFSET;
        emit ReceivedChild(_from, _tokenId, _childContract, _childTokenId);
    }

    /**
     * @dev See {IERC998ERC721TopDown-getChild}.
     */
    function getChild(
        address _from,
        uint256 _tokenId,
        address _childContract,
        uint256 _childTokenId
    ) public override {
        _receiveChild(_from, _tokenId, _childContract, _childTokenId);
        IERC721(_childContract).transferFrom(_from, address(this), _childTokenId);
    }

    /**
     * @dev Given a child address/ID that is owned by some token in this contract, return that owning token's owner
     * @param _childContract the address of the child asset being queried
     * @param _childTokenId the specific ID of the child asset being queried
     * @return parentTokenOwner the address of the owner of that child's parent asset
     * @return parentTokenId the local token ID that is the parent of that child asset
     */
    function _ownerOfChild(address _childContract, uint256 _childTokenId) internal view returns (address parentTokenOwner, uint256 parentTokenId) {
        parentTokenId = childTokenOwner[_childContract][_childTokenId];
        require(parentTokenId > 0, "That child is not owned by a token in this contract");
        return (ownerOf(parentTokenId - TOKEN_OWNER_OFFSET), parentTokenId - TOKEN_OWNER_OFFSET);
    }

    /**
     * @dev See {IERC998ERC721TopDown-ownerOfChild}.
     */
    function ownerOfChild(address _childContract, uint256 _childTokenId)
        public
        override
        view
        returns (bytes32 parentTokenOwner, uint256 parentTokenId)
    {
        parentTokenId = childTokenOwner[_childContract][_childTokenId];
        require(parentTokenId > 0, "That child is not owned by a token in this contract");
        return (ERC998_MAGIC_VALUE << 224 | bytes32(uint256(ownerOf(parentTokenId - TOKEN_OWNER_OFFSET))), parentTokenId - TOKEN_OWNER_OFFSET);
    }

    /**
     * @dev See {IERC998ERC721TopDown-rootOwnerOf}.
     */
    function rootOwnerOf(uint256 _tokenId)
        public
        override
        view
        returns (bytes32 rootOwner)
    {
        return rootOwnerOfChild(address(0), _tokenId);
    }

    /**
     * @dev See {IERC998ERC721TopDown-rootOwnerOfChild}.
     */
    function rootOwnerOfChild(address _childContract, uint256 _childTokenId)
        public
        override
        view
        returns (bytes32 rootOwner)
    {
        address rootOwnerAddress;
        if (_childContract != address(0)) {
            (rootOwnerAddress, _childTokenId) = _ownerOfChild(_childContract, _childTokenId);
        } else {
            rootOwnerAddress = ownerOf(_childTokenId);
        }
        // Case 1: Token owner is this contract and token.
        while (rootOwnerAddress == address(this)) {
            (rootOwnerAddress, _childTokenId) = _ownerOfChild(rootOwnerAddress, _childTokenId);
        }

        (bool callSuccess, bytes memory data) = rootOwnerAddress.staticcall(abi.encodeWithSelector(0xed81cdda, address(this), _childTokenId));
        if (data.length != 0) {
            rootOwner = abi.decode(data, (bytes32));
        }

        if(callSuccess == true && rootOwner >> 224 == ERC998_MAGIC_VALUE) {
            // Case 2: Token owner is other top-down composable
            return rootOwner;
        }
        else {
            // Case 3: Token owner is other contract
            // Or
            // Case 4: Token owner is user
            return ERC998_MAGIC_VALUE << 224 | bytes32(uint256(rootOwnerAddress));
        }
    }

    /**
     * @dev remove internal records linking a given child to a given parent
     * @param _tokenId the local token ID that is the parent of the child asset
     * @param _childContract the address of the child asset to remove
     * @param _childTokenId the specific ID representing the child asset to be removed
     */
    function _removeChild(uint256 _tokenId, address _childContract, uint256 _childTokenId) private {
        require(
            childTokens[_tokenId][_childContract].contains(_childTokenId),
            "Child token not owned by token"
        );

        // remove child token
        childTokens[_tokenId][_childContract].remove(_childTokenId);
        delete childTokenOwner[_childContract][_childTokenId];

        // remove contract
        if (childTokens[_tokenId][_childContract].length() == 0) {
            childContracts[_tokenId].remove(_childContract);
        }
    }

    /**
     * @dev check permissions are correct for a transfer of a child asset
     * @param _fromTokenId the local ID of the token that is the parent
     * @param _to the address this child token is being transferred to
     * @param _childContract the address of the child asset's contract
     * @param _childTokenId the specific ID for the child asset being transferred
     */
    function _checkTransferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId
    ) private view {
        require(!paused(), "Child transfer while paused");
        uint256 tokenId = childTokenOwner[_childContract][_childTokenId];
        require(tokenId > 0, "Child asset is not owned by a token in this contract");
        tokenId -= TOKEN_OWNER_OFFSET;
        require(tokenId == _fromTokenId, "That MoonCat does not own that asset");
        require(_to != address(0), "Transfer to zero address");
        address rootOwner = address(uint160(uint256(rootOwnerOf(_fromTokenId))));
        require(
            _msgSender() == rootOwner || getApproved(_fromTokenId) == _msgSender() || ERC721.isApprovedForAll(rootOwner, _msgSender()),
            "Not allowed to transfer child assets of that MoonCat"
        );
    }

    /**
     * @dev See {IERC998ERC721TopDown-safeTransferChild}.
     */
    function safeTransferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId
    ) public override {
        _checkTransferChild(_fromTokenId, _to, _childContract, _childTokenId);
        _removeChild(_fromTokenId, _childContract, _childTokenId);
        ERC721(_childContract).safeTransferFrom(address(this), _to, _childTokenId);
        emit TransferChild(_fromTokenId, _to, _childContract, _childTokenId);
    }

    /**
     * @dev See {IERC998ERC721TopDown-safeTransferChild}.
     */
    function safeTransferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId,
        bytes calldata _data
    ) public override {
        _checkTransferChild(_fromTokenId, _to, _childContract, _childTokenId);
        _removeChild(_fromTokenId, _childContract, _childTokenId);
        ERC721(_childContract).safeTransferFrom(address(this), _to, _childTokenId, _data);
        emit TransferChild(_fromTokenId, _to, _childContract, _childTokenId);
    }

    /**
     * @dev See {IERC998ERC721TopDown-transferChild}.
     */
    function transferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId
    ) public override {
        _checkTransferChild(_fromTokenId, _to, _childContract, _childTokenId);
        _removeChild(_fromTokenId, _childContract, _childTokenId);
        //this is here to be compatible with cryptokitties and other old contracts that require being owner and approved
        // before transferring.
        //does not work with current standard which does not allow approving self, so we must let it fail in that case.
        //0x095ea7b3 == "approve(address,uint256)"
        (bool success, bytes memory data) = _childContract.call(abi.encodeWithSelector(0x095ea7b3, this, _childTokenId));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'Failed to Approve'
        );
        ERC721(_childContract).transferFrom(address(this), _to, _childTokenId);
        emit TransferChild(_fromTokenId, _to, _childContract, _childTokenId);
    }

    /**
     * @dev See {IERC998ERC721TopDown-transferChildToParent}.
     */
    function transferChildToParent(
        uint256 _fromTokenId,
        address _toContract,
        uint256 _toTokenId,
        address _childContract,
        uint256 _childTokenId,
        bytes calldata _data
    ) public override {
        _checkTransferChild(_fromTokenId, _toContract, _childContract, _childTokenId);
        _removeChild(_fromTokenId, _childContract, _childTokenId);
        IERC998ERC721BottomUp(_childContract).transferToParent(address(this), _toContract, _toTokenId, _childTokenId, _data);
        emit TransferChild(_fromTokenId, _toContract, _childContract, _childTokenId);
    }

    ///// ERC998 Enumerable

    /**
     * @dev See {IERC998ERC721TopDownEnumerable-totalChildContracts}.
     */
    function totalChildContracts(uint256 _tokenId)
        external
        override
        view
        returns (uint256)
    {
        return childContracts[_tokenId].length();
    }

    /**
     * @dev See {IERC998ERC721TopDownEnumerable-childContractByIndex}.
     */
    function childContractByIndex(uint256 _tokenId, uint256 _index)
        external
        override
        view
        returns (address childContract)
    {
        return childContracts[_tokenId].at(_index);
    }

    /**
     * @dev See {IERC998ERC721TopDownEnumerable-totalChildTokens}.
     */
    function totalChildTokens(uint256 _tokenId, address _childContract) external override view returns (uint256) {
        return childTokens[_tokenId][_childContract].length();
    }

    /**
     * @dev See {IERC998ERC721TopDownEnumerable-childTokenByIndex}.
     */
    function childTokenByIndex(uint256 _tokenId, address _childContract, uint256 _index) external override view returns (uint256 childTokenId) {
        return childTokens[_tokenId][_childContract].at(_index);
    }
}

// UTILITIES

/**
 * @dev converts bytes (which is at least 32 bytes long) to uint256
 */
function toUint256(bytes memory _bytes, uint256 _start) pure returns (uint256) {
    require(_start + 32 >= _start, "toUint256_overflow");
    require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
    uint256 tempUint;

    assembly {
        tempUint := mload(add(add(_bytes, 0x20), _start))
    }

    return tempUint;
}

/**
 * @dev converts uint256 to a bytes(32) object
 */
function uintToBytes(uint256 x) pure returns (bytes memory b) {
    b = new bytes(32);
    assembly {
        mstore(add(b, 32), x)
    }
}

/**
 * @dev converts bytes (which is at least 20 bytes long) to address
 */
function bytesToAddress(bytes memory bys, uint256 _start)
    pure
    returns (address addr)
{
    assembly {
        addr := mload(add(add(bys, 20), _start))
    }
}

/**
 * @dev converts address to a bytes(32) object
 */
function addressToBytes(address a) pure returns (bytes memory) {
    return abi.encodePacked(a);
}

File 2 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/introspection/ERC165.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import "@openzeppelin/contracts/utils/EnumerableMap.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
    * @dev Return an array of all tokens this
    * CUSTOM FUNCTION, NOT IN OPENZEPPELIN TEMPLATE
    */
    function tokensIdsByOwner(address owner) public view returns (uint256[] memory) {
        uint256[] memory tokens = new uint256[](_holderTokens[owner].length());
        for (uint i = 0; i < _holderTokens[owner].length(); i++) {
            tokens[i] = _holderTokens[owner].at(i);
        }
        return tokens;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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");
        // DIFFERENT FROM OPENZEPPELIN STANDARD
        // Calls `ERC721._exists` rather than `_exists`
        require(!ERC721._exists(tokenId), "ERC721: token already minted");

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        // DIFFERENT FROM OPENZEPPELIN STANDARD
        // Calls `ownerOf` rather than `ERC721.ownerOf`
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

File 3 of 21 : MoonCatOrderLookup.sol
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.7.3;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./IMoonCatRescue.sol";
import "./IMoonCatsWrapped.sol";

/**
 * @title MoonCat Order Lookup
 * @notice A space to have an on-chain record mapping token IDs for OLD_MCRW to their original "rescue order" IDs
 * @dev This contract exists because there is no MoonCat ID => Rescue ID function
 * on the original MoonCatRescue contract. The only way to tell a given MoonCat's
 * rescue order if you don't know it is to iterate through the whole `rescueOrder`
 * array. Looping through that whole array in a smart contract would be
 * prohibitively high gas-usage, and so this alternative is needed.
 */
contract MoonCatOrderLookup is Ownable {

    MoonCatRescue MCR = MoonCatRescue(0x60cd862c9C687A9dE49aecdC3A99b74A4fc54aB6);
    MoonCatsWrapped OLD_MCRW = MoonCatsWrapped(0x7C40c393DC0f283F318791d746d894DdD3693572);

    uint256[25600] private _oldTokenIdToRescueOrder;
    uint8 constant VALUE_OFFSET = 10;

    constructor() Ownable() {}

    /**
      * @dev Submit a batch of token IDs, and their associated rescue orders
      * This is the primary method for the utility of the contract. Anyone
      * can submit this pairing information (not just the owners of the token)
      * and the information can be submitted in batches.
      *
      * Submitting pairs of token IDs with their rescue orders is verified with
      * the original MoonCatRescue contract before recording.
      *
      * Within the private array holding this information, a VALUE_OFFSET is used
      * to differentiate between "not set" and "set to zero" (because Solidity
      * has no concept of "null" or "undefined"). Because the maximum value of the
      * rescue ordering can only be 25,600, we can safely shift the stored values
      * up, and not hit the uint256 limit.
      */
    function submitRescueOrder(
        uint256[] memory oldTokenIds,
        uint16[] memory rescueOrders
    ) public {
        for (uint256 i = 0; i < oldTokenIds.length; i++) {
            require(
                MCR.rescueOrder(rescueOrders[i]) == OLD_MCRW._tokenIDToCatID(oldTokenIds[i]),
                "Pair does not match!"
            );
            _oldTokenIdToRescueOrder[oldTokenIds[i]] = rescueOrders[i] + VALUE_OFFSET;
        }
    }

    /**
      * @dev verify a given old token ID is mapped yet or not
      *
      * This function can use just a zero-check because internally all values are
      * stored with a VALUE_OFFSET added onto them (e.g. storing an actual zero
      * is saved as 0 + VALUE_OFFSET = 10, internally), so anything set to an
      * actual zero means "unset".
      */
    function _exists(uint256 oldTokenId) internal view returns (bool) {
        return _oldTokenIdToRescueOrder[oldTokenId] != 0;
    }

    /**
     * @dev public function to verify whether a given old token ID is mapped or not
     */
    function oldTokenIdExists(uint256 oldTokenId) public view returns(bool) {
        return _exists(oldTokenId);
    }

    /**
     * @dev given an old token ID, return the rescue order of that MoonCat
     *
     * Throws an error if that particular token ID does not have a recorded
     * mapping to a rescue order.
     */
    function oldTokenIdToRescueOrder(uint256 oldTokenId) public view returns(uint256) {
        require(_exists(oldTokenId), "That token ID is not mapped yet");
        return _oldTokenIdToRescueOrder[oldTokenId] - VALUE_OFFSET;
    }

    /**
     * @dev remove a mapping from the data structure
     *
     * This allows reclaiming some gas, so as part of the re-wrapping process,
     * this gets called by the Acclimator contract, to recoup some gas for the
     * MoonCat owner.
     */
    function removeEntry(uint256 _oldTokenId) public onlyOwner {
        delete _oldTokenIdToRescueOrder[_oldTokenId];
    }

    /**
     * @dev for a given address, iterate through all the tokens they own in the
     * old wrapping contract, and for each of them, determine how many are mapped
     * in this lookup contract.
     *
     * This method is used by the Acclimator `balanceOf` and `tokenOfOwnerByIndex`
     * to be able to enumerate old-wrapped MoonCats as if they were already
     * re-wrapped in the Acclimator contract.
     */
    function entriesPerAddress(address _owner) public view returns (uint256) {
        uint256 countMapped = 0;
        for (uint256 i = 0; i < OLD_MCRW.balanceOf(_owner); i++) {
            uint256 oldTokenId = OLD_MCRW.tokenOfOwnerByIndex(_owner, i);
            if (_exists(oldTokenId)) {
                countMapped++;
            }
        }
        return countMapped;
    }
}

File 4 of 21 : IERC998.sol
pragma solidity ^0.7.3;

/**
 * @title ERC998ERC721 Top-Down Composable Non-Fungible Token
 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-998.md
 * Note: the ERC-165 identifier for this interface is 0x1efdf36a
 */
interface IERC998ERC721TopDown {
    /**
     * @dev This emits when a token receives a child token.
     * @param _from The prior owner of the token.
     * @param _toTokenId The token that receives the child token.
     */
    event ReceivedChild(
        address indexed _from,
        uint256 indexed _toTokenId,
        address indexed _childContract,
        uint256 _childTokenId
    );

    /**
     * @dev This emits when a child token is transferred from a token to an address.
     * @param _fromTokenId The parent token that the child token is being transferred from.
     * @param _to The new owner address of the child token.
     */
    event TransferChild(
        uint256 indexed _fromTokenId,
        address indexed _to,
        address indexed _childContract,
        uint256 _childTokenId
    );

    /**
     * @notice Get the root owner of tokenId.
     * @param _tokenId The token to query for a root owner address
     * @return rootOwner The root owner at the top of tree of tokens and ERC998 magic value.
     */
    function rootOwnerOf(uint256 _tokenId)
        external
        view
        returns (bytes32 rootOwner);

    /**
     * @notice Get the root owner of a child token.
     * @param _childContract The contract address of the child token.
     * @param _childTokenId The tokenId of the child.
     * @return rootOwner The root owner at the top of tree of tokens and ERC998 magic value.
     */
    function rootOwnerOfChild(address _childContract, uint256 _childTokenId)
        external
        view
        returns (bytes32 rootOwner);

    /**
     * @notice Get the parent tokenId of a child token.
     * @param _childContract The contract address of the child token.
     * @param _childTokenId The tokenId of the child.
     * @return parentTokenOwner The parent address of the parent token and ERC998 magic value
     * @return parentTokenId The parent tokenId of _tokenId
     */
    function ownerOfChild(address _childContract, uint256 _childTokenId)
        external
        view
        returns (bytes32 parentTokenOwner, uint256 parentTokenId);

    /**
     * @notice A token receives a child token
     * @param _operator The address that caused the transfer.
     * @param _from The owner of the child token.
     * @param _childTokenId The token that is being transferred to the parent.
     * @param _data Up to the first 32 bytes contains an integer which is the receiving parent tokenId.
     */
    function onERC721Received(
        address _operator,
        address _from,
        uint256 _childTokenId,
        bytes calldata _data
    ) external returns (bytes4);

    /**
     * @notice Transfer child token from top-down composable to address.
     * @param _fromTokenId The owning token to transfer from.
     * @param _to The address that receives the child token
     * @param _childContract The ERC721 contract of the child token.
     * @param _childTokenId The tokenId of the token that is being transferred.
     */
    function transferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId
    ) external;

    /**
     * @notice Transfer child token from top-down composable to address.
     * @param _fromTokenId The owning token to transfer from.
     * @param _to The address that receives the child token
     * @param _childContract The ERC721 contract of the child token.
     * @param _childTokenId The tokenId of the token that is being transferred.
     */
    function safeTransferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId
    ) external;

    /**
     * @notice Transfer child token from top-down composable to address.
     * @param _fromTokenId The owning token to transfer from.
     * @param _to The address that receives the child token
     * @param _childContract The ERC721 contract of the child token.
     * @param _childTokenId The tokenId of the token that is being transferred.
     * @param _data Additional data with no specified format
     */
    function safeTransferChild(
        uint256 _fromTokenId,
        address _to,
        address _childContract,
        uint256 _childTokenId,
        bytes calldata _data
    ) external;

    /**
     * @notice Transfer bottom-up composable child token from top-down composable to other ERC721 token.
     * @param _fromTokenId The owning token to transfer from.
     * @param _toContract The ERC721 contract of the receiving token
     * @param _toTokenId The receiving token
     * @param _childContract The bottom-up composable contract of the child token.
     * @param _childTokenId The token that is being transferred.
     * @param _data Additional data with no specified format
     */
    function transferChildToParent(
        uint256 _fromTokenId,
        address _toContract,
        uint256 _toTokenId,
        address _childContract,
        uint256 _childTokenId,
        bytes calldata _data
    ) external;

    /**
     * @notice Get a child token from an ERC721 contract.
     * @param _from The address that owns the child token.
     * @param _tokenId The token that becomes the parent owner
     * @param _childContract The ERC721 contract of the child token
     * @param _childTokenId The tokenId of the child token
     */
    function getChild(
        address _from,
        uint256 _tokenId,
        address _childContract,
        uint256 _childTokenId
    ) external;
}

/**
 * @dev The ERC-165 identifier for this interface is 0xa344afe4
 */
interface IERC998ERC721TopDownEnumerable {
    /**
     * @notice Get the total number of child contracts with tokens that are owned by tokenId.
     * @param _tokenId The parent token of child tokens in child contracts
     * @return uint256 The total number of child contracts with tokens owned by tokenId.
     */
    function totalChildContracts(uint256 _tokenId)
        external
        view
        returns (uint256);

    /**
     * @notice Get child contract by tokenId and index
     * @param _tokenId The parent token of child tokens in child contract
     * @param _index The index position of the child contract
     * @return childContract The contract found at the tokenId and index.
     */
    function childContractByIndex(uint256 _tokenId, uint256 _index)
        external
        view
        returns (address childContract);

    /**
     * @notice Get the total number of child tokens owned by tokenId that exist in a child contract.
     * @param _tokenId The parent token of child tokens
     * @param _childContract The child contract containing the child tokens
     * @return uint256 The total number of child tokens found in child contract that are owned by tokenId.
     */
    function totalChildTokens(uint256 _tokenId, address _childContract)
        external
        view
        returns (uint256);

    /**
     * @notice Get child token owned by tokenId, in child contract, at index position
     * @param _tokenId The parent token of the child token
     * @param _childContract The child contract of the child token
     * @param _index The index position of the child token.
     * @return childTokenId The child tokenId for the parent token, child token and index
     */
    function childTokenByIndex(
        uint256 _tokenId,
        address _childContract,
        uint256 _index
    ) external view returns (uint256 childTokenId);
}

interface IERC998ERC721BottomUp {
    /**
     * @notice Transfer token from owner address to a token
     * @param _from The owner address
     * @param _toContract The ERC721 contract of the receiving token
     * @param _toTokenId The receiving token
     * @param _data Additional data with no specified format
     */
    function transferToParent(
        address _from,
        address _toContract,
        uint256 _toTokenId,
        uint256 _tokenId,
        bytes calldata _data
    ) external;
}

File 5 of 21 : IMoonCatRescue.sol
pragma solidity ^0.7.3;
interface MoonCatRescue {
    function getCatDetails(bytes5 catId)
        external
        view
        returns (
            bytes5 id,
            address owner,
            bytes32 name,
            address onlyOfferTo,
            uint256 offerPrice,
            address requester,
            uint256 requestPrice
        );

    function rescueOrder(uint256 _rescueOrder)
        external
        view
        returns (bytes5 catId);

    function acceptAdoptionOffer(bytes5 catId) external payable;

    function acceptAdoptionRequest(bytes5 catId) external;

    function adoptionRequests(bytes5 _catId)
        external
        view
        returns (
            bool exists,
            bytes5 catId,
            address requester,
            uint256 price
        );

    function adoptionOffers(bytes5 _catId)
        external
        view
        returns (
            bool exists,
            bytes5 catId,
            address seller,
            uint256 price,
            address offerOnlyTo
        );

    function giveCat(bytes5 catId, address to) external;

    function catOwners(bytes5) external view returns (address);

    function makeAdoptionOfferToAddress(bytes5 catId, uint256 price, address to) external;

    function makeAdoptionOffer(bytes5 catId, uint256 price) external;

    function withdraw() external;
}

File 6 of 21 : IMoonCatsWrapped.sol
pragma solidity ^0.7.3;
interface MoonCatsWrapped {

    /**
     * @dev in the original contract, this is a public map property, so is
     * using the default getter action, which does NOT check for "exists";
     * if this returns a zero, it might be referencing token ID #0, or it might
     * be meaning "that MoonCat ID is not wrapped in this contract".
     */
    function _catIDToTokenID(bytes5 catId) external pure
        returns (uint256);

    /**
     * @dev in the original contract, this is a public map property, so is
     * using the default getter action, which does NOT check for "exists".
     * However, no MoonCat has an ID of `0x0000000000`, so if this returns
     * all zeroes, it means "that token ID does not exist in this contract".
     */
    function _tokenIDToCatID(uint256 _tokenID) external pure
        returns (bytes5 catId);

    function safeTransferFrom(address from, address to, uint256 tokenId) external;
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) external;
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
    function wrap(bytes5 catId) external;
    function unwrap(uint256 tokenID) external;
    function ownerOf(uint256 tokenID) external view returns(address);
    function setApprovalForAll(address operator, bool _approved) external;
    function isApprovedForAll(address owner, address operator) external view returns (bool);
    function approve(address to, uint256 tokenId) external;
}

File 7 of 21 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 8 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 9 of 21 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

File 10 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 21 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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 21 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

pragma solidity >=0.6.0 <0.8.0;

import "./IERC721Receiver.sol";

  /**
   * @dev Implementation of the {IERC721Receiver} interface.
   *
   * Accepts all token transfers. 
   * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
   */
contract ERC721Holder is IERC721Receiver {

    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

File 15 of 21 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

pragma solidity >=0.6.0 <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 17 of 21 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

File 18 of 21 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 19 of 21 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 20 of 21 : EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"MoonCatAcclimated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"MoonCatDeacclimated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_childContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"ReceivedChild","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"address","name":"_childContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"TransferChild","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"uint256[]","name":"_rescueOrders","type":"uint256[]"},{"internalType":"uint256[]","name":"_oldTokenIds","type":"uint256[]"}],"name":"batchReWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_rescueOrders","type":"uint256[]"}],"name":"batchUnwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_rescueOrders","type":"uint256[]"}],"name":"batchWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rescueOrder","type":"uint256"}],"name":"buyAndWrap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"childContractByIndex","outputs":[{"internalType":"address","name":"childContract","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"childTokenByIndex","outputs":[{"internalType":"uint256","name":"childTokenId","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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"getChild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_oldTokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"ownerOfChild","outputs":[{"internalType":"bytes32","name":"parentTokenOwner","type":"bytes32"},{"internalType":"uint256","name":"parentTokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueOrderLookup","outputs":[{"internalType":"contract MoonCatOrderLookup","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"rootOwnerOf","outputs":[{"internalType":"bytes32","name":"rootOwner","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"rootOwnerOfChild","outputs":[{"internalType":"bytes32","name":"rootOwner","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"safeTransferChild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferChild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensIdsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"totalChildContracts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_childContract","type":"address"}],"name":"totalChildTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"}],"name":"transferChild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"internalType":"address","name":"_toContract","type":"address"},{"internalType":"uint256","name":"_toTokenId","type":"uint256"},{"internalType":"address","name":"_childContract","type":"address"},{"internalType":"uint256","name":"_childTokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferChildToParent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unwrap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rescueOrder","type":"uint256"}],"name":"wrap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]

6080604052600c80546001600160a01b03199081167360cd862c9c687a9de49aecdc3a99b74a4fc54ab617909155600d8054909116737c40c393dc0f283f318791d746d894ddd36935721790553480156200005957600080fd5b5060405162006c4638038062006c46833981810160405260208110156200007f57600080fd5b8101908080516040519392919084640100000000821115620000a057600080fd5b908301906020820185811115620000b657600080fd5b8251640100000000811182820188101715620000d157600080fd5b82525081516020918201929091019080838360005b8381101562000100578181015183820152602001620000e6565b50505050905090810190601f1680156200012e5780820380516001836020036101000a031916815260200191505b5060408181018152601582527f4163636c696d61746564e2808b4d6f6f6e43617473000000000000000000000060208084019190915281518083019092526004825263784fcc5d60e11b9082015290935091506200019590506301ffc9a760e01b620002db565b8151620001aa906006906020850190620004ce565b508051620001c0906007906020840190620004ce565b50620001d36380ac58cd60e01b620002db565b620001e5635b5e139f60e01b620002db565b620001f763780e9d6360e01b620002db565b50600090506200020662000360565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a805460ff60a01b1916905562000273630f7ef9b560e11b620002db565b604051620002819062000553565b604051809103906000f0801580156200029e573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055620002ca8162000364565b620002d4620003eb565b5062000578565b6001600160e01b031980821614156200033b576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b6200036e62000360565b6001600160a01b03166200038162000496565b6001600160a01b031614620003dd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b620003e881620004a5565b50565b620003f5620004be565b156200043b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200047962000360565b604080516001600160a01b039092168252519081900360200190a1565b600a546001600160a01b031690565b8051620004ba906009906020840190620004ce565b5050565b600a54600160a01b900460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200051157805160ff191683800117855562000541565b8280016001018555821562000541579182015b828111156200054157825182559160200191906001019062000524565b506200054f92915062000561565b5090565b6109df806200626783390190565b5b808211156200054f576000815560010162000562565b615cdf80620005886000396000f3fe6080604052600436106102715760003560e01c80635c975abb1161014f578063a22cb465116100c1578063de0e9a3e1161007a578063de0e9a3e14610ec4578063e985e9c514610eee578063ea598cb014610f29578063eadb80b814610f53578063ed81cdda14610fa5578063f2fde38b14610fde57610271565b8063a22cb46514610c7b578063b88d4fde14610cb6578063ba6b5f9614610d87578063bef44f1814610dce578063c87b56dd14610e17578063cd218d3214610e4157610271565b8063715018a611610113578063715018a614610b5d5780638456cb5914610b725780638d81f51e14610b875780638da5cb5b14610c275780638da7d0b514610c3c57806395d89b4114610c6657610271565b80635c975abb146109a65780636352211e146109bb578063697b91e0146109e55780636c0360eb14610b1557806370a0823114610b2a57610271565b80631d98f3c5116101e85780633f4ba83a116101ac5780633f4ba83a1461079b57806342842e0e146107b057806343a61a8e146107f3578063440230d41461081d5780634f6ccce7146108cb57806355f804b3146108f557610271565b80631d98f3c51461068857806323b872dd146106d15780632de092e6146107145780632f745c591461072957806335b21ceb1461076257610271565b8063095ea7b31161023a578063095ea7b3146104e45780630d5a621b1461051d578063150b7a021461054d578063160b01a11461060557806318160ddd1461065657806318785d0e1461066b57610271565b80622e87c81461027657806301ffc9a71461032657806306fdde031461036e578063081812fc146103f857806308937f621461043e575b600080fd5b34801561028257600080fd5b506103246004803603602081101561029957600080fd5b810190602081018135600160201b8111156102b357600080fd5b8201836020820111156102c557600080fd5b803590602001918460208302840111600160201b831117156102e657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611011945050505050565b005b34801561033257600080fd5b5061035a6004803603602081101561034957600080fd5b50356001600160e01b03191661104e565b604080519115158252519081900360200190f35b34801561037a57600080fd5b50610383611071565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103bd5781810151838201526020016103a5565b50505050905090810190601f1680156103ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040457600080fd5b506104226004803603602081101561041b57600080fd5b5035611107565b604080516001600160a01b039092168252519081900360200190f35b34801561044a57600080fd5b50610324600480360360c081101561046157600080fd5b8135916001600160a01b03602082013581169260408301359260608101359092169160808101359181019060c0810160a0820135600160201b8111156104a657600080fd5b8201836020820111156104b857600080fd5b803590602001918460018302840111600160201b831117156104d957600080fd5b509092509050611169565b3480156104f057600080fd5b506103246004803603604081101561050757600080fd5b506001600160a01b038135169060200135611291565b34801561052957600080fd5b506104226004803603604081101561054057600080fd5b508035906020013561136c565b34801561055957600080fd5b506105e86004803603608081101561057057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105aa57600080fd5b8201836020820111156105bc57600080fd5b803590602001918460018302840111600160201b831117156105dd57600080fd5b50909250905061138d565b604080516001600160e01b03199092168252519081900360200190f35b34801561061157600080fd5b506106446004803603606081101561062857600080fd5b508035906001600160a01b0360208201351690604001356116dc565b60408051918252519081900360200190f35b34801561066257600080fd5b50610644611712565b6106446004803603602081101561068157600080fd5b5035611723565b34801561069457600080fd5b50610324600480360360808110156106ab57600080fd5b508035906001600160a01b03602082013581169160408101359091169060600135611918565b3480156106dd57600080fd5b50610324600480360360608110156106f457600080fd5b506001600160a01b038135811691602081013590911690604001356119f1565b34801561072057600080fd5b50610422611a48565b34801561073557600080fd5b506106446004803603604081101561074c57600080fd5b506001600160a01b038135169060200135611a57565b34801561076e57600080fd5b506106446004803603604081101561078557600080fd5b50803590602001356001600160a01b0316611ce1565b3480156107a757600080fd5b50610324611d0c565b3480156107bc57600080fd5b50610324600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135611dc8565b3480156107ff57600080fd5b506106446004803603602081101561081657600080fd5b5035611de3565b34801561082957600080fd5b506103246004803603602081101561084057600080fd5b810190602081018135600160201b81111561085a57600080fd5b82018360208201111561086c57600080fd5b803590602001918460208302840111600160201b8311171561088d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611df0945050505050565b3480156108d757600080fd5b50610644600480360360208110156108ee57600080fd5b5035611e29565b34801561090157600080fd5b506103246004803603602081101561091857600080fd5b810190602081018135600160201b81111561093257600080fd5b82018360208201111561094457600080fd5b803590602001918460018302840111600160201b8311171561096557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e3f945050505050565b3480156109b257600080fd5b5061035a611ead565b3480156109c757600080fd5b50610422600480360360208110156109de57600080fd5b5035611ebd565b3480156109f157600080fd5b5061032460048036036040811015610a0857600080fd5b810190602081018135600160201b811115610a2257600080fd5b820183602082011115610a3457600080fd5b803590602001918460208302840111600160201b83111715610a5557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610aa457600080fd5b820183602082011115610ab657600080fd5b803590602001918460208302840111600160201b83111715610ad757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506121ba945050505050565b348015610b2157600080fd5b5061038361244a565b348015610b3657600080fd5b5061064460048036036020811015610b4d57600080fd5b50356001600160a01b03166124ab565b348015610b6957600080fd5b50610324612538565b348015610b7e57600080fd5b506103246125e4565b348015610b9357600080fd5b50610324600480360360a0811015610baa57600080fd5b8135916001600160a01b03602082013581169260408301359091169160608101359181019060a081016080820135600160201b811115610be957600080fd5b820183602082011115610bfb57600080fd5b803590602001918460018302840111600160201b83111715610c1c57600080fd5b50909250905061269b565b348015610c3357600080fd5b506104226127ba565b348015610c4857600080fd5b5061064460048036036020811015610c5f57600080fd5b50356127c9565b348015610c7257600080fd5b506103836127e0565b348015610c8757600080fd5b5061032460048036036040811015610c9e57600080fd5b506001600160a01b0381351690602001351515612841565b348015610cc257600080fd5b5061032460048036036080811015610cd957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d1357600080fd5b820183602082011115610d2557600080fd5b803590602001918460018302840111600160201b83111715610d4657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612946945050505050565b348015610d9357600080fd5b5061032460048036036080811015610daa57600080fd5b506001600160a01b03813581169160208101359160408201351690606001356129a4565b348015610dda57600080fd5b5061032460048036036080811015610df157600080fd5b508035906001600160a01b03602082013581169160408101359091169060600135612a26565b348015610e2357600080fd5b5061038360048036036020811015610e3a57600080fd5b5035612bea565b348015610e4d57600080fd5b50610e7460048036036020811015610e6457600080fd5b50356001600160a01b0316612e6d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610eb0578181015183820152602001610e98565b505050509050019250505060405180910390f35b348015610ed057600080fd5b5061064460048036036020811015610ee757600080fd5b5035612f49565b348015610efa57600080fd5b5061035a60048036036040811015610f1157600080fd5b506001600160a01b038135811691602001351661314e565b348015610f3557600080fd5b5061064460048036036020811015610f4c57600080fd5b5035613270565b348015610f5f57600080fd5b50610f8c60048036036040811015610f7657600080fd5b506001600160a01b0381351690602001356133f7565b6040805192835260208301919091528051918290030190f35b348015610fb157600080fd5b5061064460048036036040811015610fc857600080fd5b506001600160a01b038135169060200135613485565b348015610fea57600080fd5b506103246004803603602081101561100157600080fd5b50356001600160a01b031661361a565b60005b81518161ffff16101561104a57611041828261ffff168151811061103457fe5b6020026020010151612f49565b50600101611014565b5050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b820191906000526020600020905b8154815290600101906020018083116110e057829003601f168201915b5050505050905090565b60006111128261371d565b61114d5760405162461bcd60e51b815260040180806020018281038252602c815260200180615aed602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b611175878786866138da565b611180878585613adf565b836001600160a01b031663f50acfa03088888787876040518763ffffffff1660e01b815260040180876001600160a01b03168152602001866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050975050505050505050600060405180830381600087803b15801561122457600080fd5b505af1158015611238573d6000803e3d6000fd5b50505050836001600160a01b0316866001600160a01b0316887f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6866040518082815260200191505060405180910390a450505050505050565b600061129c82611ebd565b9050806001600160a01b0316836001600160a01b031614156112ef5760405162461bcd60e51b8152600401808060200182810382526021815260200180615b916021913960400191505060405180910390fd5b806001600160a01b0316611301613be5565b6001600160a01b0316148061132257506113228161131d613be5565b61314e565b61135d5760405162461bcd60e51b8152600401808060200182810382526038815260200180615a406038913960400191505060405180910390fd5b6113678383613be9565b505050565b6000828152600e602052604081206113849083613c57565b90505b92915050565b600033737c40c393dc0f283f318791d746d894ddd3693572141561156057600060348310801590611412575060006001600160a01b031661140685858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060209250613c63915050565b6001600160a01b031614155b61141c578561145e565b61145e84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060209250613c63915050565b90506001600160a01b0381161580159061148157506001600160a01b0381163014155b6114bc5760405162461bcd60e51b8152600401808060200182810382526023815260200180615c176023913960400191505060405180910390fd5b611515818660208610156114d1576000611510565b61151087878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250613c6b915050565b613d14565b5061155887878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061410092505050565b9150506116d3565b8161159c5760405162461bcd60e51b81526004018080602001828103825260458152602001806157f26045913960600191505060405180910390fd5b60a43560208310156115b25760088302610100031c5b6115be86823388614110565b60006001600160a01b0316336001600160a01b0316636352211e876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561160d57600080fd5b505afa158015611621573d6000803e3d6000fd5b505050506040513d602081101561163757600080fd5b50516001600160a01b0316141561168d576040805162461bcd60e51b815260206004820152601560248201527410da1a5b19081d1bdad95b881b9bdd081bdddb9959605a1b604482015290519081900360640190fd5b6116cf87878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061410092505050565b9150505b95945050505050565b6000838152600f602090815260408083206001600160a01b038616845290915281206117089083613c57565b90505b9392505050565b600061171e60026142c5565b905090565b600c5460408051630869624160e31b815260048101849052905160009283926001600160a01b039091169163434b120891602480820192602092909190829003018186803b15801561177457600080fd5b505afa158015611788573d6000803e3d6000fd5b505050506040513d602081101561179e57600080fd5b5051600c5460408051638edc707b60e01b81526001600160d81b031984166004820152905192935060009283926001600160a01b031691638edc707b9160248083019260a0929190829003018186803b1580156117fa57600080fd5b505afa15801561180e573d6000803e3d6000fd5b505050506040513d60a081101561182457600080fd5b50805160809091015190925090506001600160a01b0381161580156118465750815b611897576040805162461bcd60e51b815260206004820152601c60248201527f54686174204d6f6f6e436174206973206e6f7420666f722073616c6500000000604482015290519081900360640190fd5b600c54604080516301be705160e41b81526001600160d81b03198616600482015290516001600160a01b0390921691631be70510913491602480830192600092919082900301818588803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b50505050506116d3611912613be5565b866142d0565b611924848484846138da565b61192f848383613adf565b60408051632142170760e11b81523060048201526001600160a01b038581166024830152604482018490529151918416916342842e0e9160648082019260009290919082900301818387803b15801561198757600080fd5b505af115801561199b573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b0316857f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6846040518082815260200191505060405180910390a450505050565b611a026119fc613be5565b82614384565b611a3d5760405162461bcd60e51b8152600401808060200182810382526031815260200180615be66031913960400191505060405180910390fd5b611367838383614420565b600b546001600160a01b031681565b600080611a6384614790565b905080831015611a7f57611a7784846147f8565b915050611387565b6000805b600d54604080516370a0823160e01b81526001600160a01b038981166004830152915191909216916370a08231916024808301926020929190829003018186803b158015611ad057600080fd5b505afa158015611ae4573d6000803e3d6000fd5b505050506040513d6020811015611afa57600080fd5b5051811015611ca957600d5460408051632f745c5960e01b81526001600160a01b0389811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015611b5b57600080fd5b505afa158015611b6f573d6000803e3d6000fd5b505050506040513d6020811015611b8557600080fd5b5051600b546040805163fc810d7d60e01b81526004810184905290519293506001600160a01b039091169163fc810d7d91602480820192602092909190829003018186803b158015611bd657600080fd5b505afa158015611bea573d6000803e3d6000fd5b505050506040513d6020811015611c0057600080fd5b505115611ca0576001928301928487030161ffff84161415611ca057600b546040805163eda84ca160e01b81526004810184905290516001600160a01b039092169163eda84ca191602480820192602092909190829003018186803b158015611c6857600080fd5b505afa158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b505194506113879350505050565b50600101611a83565b5060405162461bcd60e51b81526004018080602001828103825260238152602001806159ea6023913960400191505060405180910390fd5b6000828152600f602090815260408083206001600160a01b03851684529091528120611384906142c5565b611d14611ead565b611d5c576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b611d64613be5565b6001600160a01b0316611d756127ba565b6001600160a01b031614611dbe576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611dc661481a565b565b61136783838360405180602001604052806000815250612946565b6000611387600083613485565b60005b81518161ffff16101561104a57611e20828261ffff1681518110611e1357fe5b6020026020010151613270565b50600101611df3565b600080611e376002846148bd565b509392505050565b611e47613be5565b6001600160a01b0316611e586127ba565b6001600160a01b031614611ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611eaa816148d9565b50565b600a54600160a01b900460ff1690565b6000611ec8826148ec565b15611edd57611ed6826148f9565b905061106c565b600c5460408051630869624160e31b81526004810185905290516000926001600160a01b03169163434b1208916024808301926020929190829003018186803b158015611f2957600080fd5b505afa158015611f3d573d6000803e3d6000fd5b505050506040513d6020811015611f5357600080fd5b5051600d5460408051633f8a519160e21b81526000600482015290519293506001600160a01b039091169163fe29464491602480820192602092909190829003018186803b158015611fa457600080fd5b505afa158015611fb8573d6000803e3d6000fd5b505050506040513d6020811015611fce57600080fd5b50516001600160d81b03198281169116141561206557600d54604080516331a9108f60e11b81526000600482015290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b15801561203057600080fd5b505afa158015612044573d6000803e3d6000fd5b505050506040513d602081101561205a57600080fd5b5051915061106c9050565b600d5460408051630b9d0f3560e31b81526001600160d81b03198416600482015290516000926001600160a01b031691635ce879a8916024808301926020929190829003018186803b1580156120ba57600080fd5b505afa1580156120ce573d6000803e3d6000fd5b505050506040513d60208110156120e457600080fd5b505190508061213a576040805162461bcd60e51b815260206004820152601b60248201527f54686174204d6f6f6e436174206973206e6f7420777261707065640000000000604482015290519081900360640190fd5b600d54604080516331a9108f60e11b81526004810184905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b15801561218657600080fd5b505afa15801561219a573d6000803e3d6000fd5b505050506040513d60208110156121b057600080fd5b5051949350505050565b60005b82518161ffff16101561136757600d5482516000916001600160a01b031690636352211e90859061ffff86169081106121f257fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561222e57600080fd5b505afa158015612242573d6000803e3d6000fd5b505050506040513d602081101561225857600080fd5b5051600d5484519192506001600160a01b03169063b88d4fde9083903090879061ffff881690811061228657fe5b60200260200101516122ae898861ffff16815181106122a157fe5b6020026020010151614921565b6122b78761494b565b6040516020018083805190602001908083835b602083106122e95780518252601f1990920191602091820191016122ca565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106123315780518252601f199092019160209182019101612312565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156123d65781810151838201526020016123be565b50505050905090810190601f1680156124035780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561242557600080fd5b505af1158015612439573d6000803e3d6000fd5b5050600190930192506121bd915050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b600b5460408051637365392960e01b81526001600160a01b03848116600483015291516000939290921691637365392991602480820192602092909190829003018186803b1580156124fc57600080fd5b505afa158015612510573d6000803e3d6000fd5b505050506040513d602081101561252657600080fd5b505161253183614790565b0192915050565b612540613be5565b6001600160a01b03166125516127ba565b6001600160a01b03161461259a576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6125ec611ead565b15612631576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612639613be5565b6001600160a01b031661264a6127ba565b6001600160a01b031614612693576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611dc661497d565b6126a7868686866138da565b6126b2868585613adf565b836001600160a01b031663b88d4fde30878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561274e57600080fd5b505af1158015612762573d6000803e3d6000fd5b50505050836001600160a01b0316856001600160a01b0316877f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6866040518082815260200191505060405180910390a4505050505050565b600a546001600160a01b031690565b6000818152600e60205260408120611387906142c5565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b612849613be5565b6001600160a01b0316826001600160a01b031614156128af576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006128bc613be5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155612900613be5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612957612951613be5565b83614384565b6129925760405162461bcd60e51b8152600401808060200182810382526031815260200180615be66031913960400191505060405180910390fd5b61299e84848484614a06565b50505050565b6129b084848484614110565b604080516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018490529151918416916323b872dd9160648082019260009290919082900301818387803b158015612a0857600080fd5b505af1158015612a1c573d6000803e3d6000fd5b5050505050505050565b612a32848484846138da565b612a3d848383613adf565b60408051306024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663095ea7b360e01b178152915181516000936060936001600160a01b038816939092909182918083835b60208310612ab85780518252601f199092019160209182019101612a99565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612b1a576040519150601f19603f3d011682016040523d82523d6000602084013e612b1f565b606091505b5091509150818015612b4d575080511580612b4d5750808060200190516020811015612b4a57600080fd5b50515b612b92576040805162461bcd60e51b81526020600482015260116024820152704661696c656420746f20417070726f766560781b604482015290519081900360640190fd5b604080516323b872dd60e01b81523060048201526001600160a01b038781166024830152604482018690529151918616916323b872dd9160648082019260009290919082900301818387803b15801561274e57600080fd5b6060612bf58261371d565b612c305760405162461bcd60e51b815260040180806020018281038252602f815260200180615b62602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015612cc55780601f10612c9a57610100808354040283529160200191612cc5565b820191906000526020600020905b815481529060010190602001808311612ca857829003601f168201915b505050505090506060612cd661244a565b9050805160001415612cea5750905061106c565b815115612dab5780826040516020018083805190602001908083835b60208310612d255780518252601f199092019160209182019101612d06565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310612d6d5780518252601f199092019160209182019101612d4e565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061106c565b80612db585614a58565b6040516020018083805190602001908083835b60208310612de75780518252601f199092019160209182019101612dc8565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310612e2f5780518252601f199092019160209182019101612e10565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6001600160a01b03811660009081526001602052604090206060908190612e93906142c5565b67ffffffffffffffff81118015612ea957600080fd5b50604051908082528060200260200182016040528015612ed3578160200160208202803683370190505b50905060005b6001600160a01b0384166000908152600160205260409020612efa906142c5565b811015612f42576001600160a01b0384166000908152600160205260409020612f239082613c57565b828281518110612f2f57fe5b6020908102919091010152600101612ed9565b5092915050565b6000612f53613be5565b6001600160a01b0316612f6583611ebd565b6001600160a01b031614612fb4576040805162461bcd60e51b81526020600482015260116024820152704e6f7420796f7572204d6f6f6e4361742160781b604482015290519081900360640190fd5b612fbd826148ec565b612ff85760405162461bcd60e51b815260040180806020018281038252602c81526020018061585b602c913960400191505060405180910390fd5b600c5460408051630869624160e31b81526004810185905290516000926001600160a01b03169163434b1208916024808301926020929190829003018186803b15801561304457600080fd5b505afa158015613058573d6000803e3d6000fd5b505050506040513d602081101561306e57600080fd5b5051600c549091506001600160a01b031663f884e54a8261308e86611ebd565b6040518363ffffffff1660e01b815260040180836001600160d81b0319168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156130de57600080fd5b505af11580156130f2573d6000803e3d6000fd5b505050506130ff83614b33565b613107613be5565b6001600160a01b03167f4b4049773a7d189d0bf28d9bb55a7af4d94a6c02c074922614bfae9dae388886846040518082815260200191505060405180910390a25090919050565b600b5460408051637365392960e01b81526001600160a01b03858116600483015291516000939290921691637365392991602480820192602092909190829003018186803b15801561319f57600080fd5b505afa1580156131b3573d6000803e3d6000fd5b505050506040513d60208110156131c957600080fd5b505115613266576131da8383614c00565b80156132615750600d546040805163e985e9c560e01b81526001600160a01b0386811660048301523060248301529151919092169163e985e9c5916044808301926020929190829003018186803b15801561323457600080fd5b505afa158015613248573d6000803e3d6000fd5b505050506040513d602081101561325e57600080fd5b50515b611384565b6113848383614c00565b600c5460408051630869624160e31b815260048101849052905160009283926001600160a01b039091169163434b120891602480820192602092909190829003018186803b1580156132c157600080fd5b505afa1580156132d5573d6000803e3d6000fd5b505050506040513d60208110156132eb57600080fd5b5051600c5460408051633894ca5760e01b81526001600160d81b03198416600482015290519293506000926001600160a01b0390921691633894ca5791602480820192602092909190829003018186803b15801561334857600080fd5b505afa15801561335c573d6000803e3d6000fd5b505050506040513d602081101561337257600080fd5b5051600c54604080516301be705160e41b81526001600160d81b03198616600482015290519293506001600160a01b0390911691631be705109160248082019260009290919082900301818387803b1580156133cd57600080fd5b505af11580156133e1573d6000803e3d6000fd5b505050506133ef81856142d0565b949350505050565b6001600160a01b0382166000908152601060209081526040808320848452909152812054806134575760405162461bcd60e51b8152600401808060200182810382526033815260200180615a0d6033913960400191505060405180910390fd5b6134646009198201611ebd565b6001600160a01b031663cd740db560e01b1794600919919091019350915050565b6000806001600160a01b038416156134aa576134a18484614c2e565b935090506134b6565b6134b383611ebd565b90505b6001600160a01b0381163014156134d1576134a18184614c2e565b60408051306024820152604480820186905282518083039091018152606490910182526020810180516001600160e01b03166376c0e6ed60e11b178152915181516000936060936001600160a01b038716939092909182918083835b6020831061354c5780518252601f19909201916020918201910161352d565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d80600081146135ac576040519150601f19603f3d011682016040523d82523d6000602084013e6135b1565b606091505b509150915080516000146135d9578080602001905160208110156135d457600080fd5b505193505b60018215151480156135f2575060e084901c63cd740db5145b156135ff57505050611387565b50506001600160a01b031663cd740db560e01b179050611387565b613622613be5565b6001600160a01b03166136336127ba565b6001600160a01b03161461367c576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b6001600160a01b0381166136c15760405162461bcd60e51b815260040180806020018281038252602681526020018061594e6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000613728826148ec565b156137355750600161106c565b600d5460408051633f8a519160e21b8152600060048201819052915191926001600160a01b03169163fe29464491602480820192602092909190829003018186803b15801561378357600080fd5b505afa158015613797573d6000803e3d6000fd5b505050506040513d60208110156137ad57600080fd5b5051600c5460408051630869624160e31b81526004810187905290519293506000926001600160a01b039092169163434b120891602480820192602092909190829003018186803b15801561380157600080fd5b505afa158015613815573d6000803e3d6000fd5b505050506040513d602081101561382b57600080fd5b505190506001600160d81b0319808216908316141561384f5760019250505061106c565b600d5460408051630b9d0f3560e31b81526001600160d81b03198416600482015290516001600160a01b0390921691635ce879a891602480820192602092909190829003018186803b1580156138a457600080fd5b505afa1580156138b8573d6000803e3d6000fd5b505050506040513d60208110156138ce57600080fd5b50511515949350505050565b6138e2611ead565b15613934576040805162461bcd60e51b815260206004820152601b60248201527f4368696c64207472616e73666572207768696c65207061757365640000000000604482015290519081900360640190fd5b6001600160a01b0382166000908152601060209081526040808320848452909152902054806139945760405162461bcd60e51b8152600401808060200182810382526034815260200180615bb26034913960400191505060405180910390fd5b600919018481146139d65760405162461bcd60e51b81526004018080602001828103825260248152602001806158376024913960400191505060405180910390fd5b6001600160a01b038416613a31576040805162461bcd60e51b815260206004820152601860248201527f5472616e7366657220746f207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b6000613a3c86611de3565b90506001600160a01b038116613a50613be5565b6001600160a01b03161480613a855750613a68613be5565b6001600160a01b0316613a7a87611107565b6001600160a01b0316145b80613a9c5750613a9c81613a97613be5565b614c00565b613ad75760405162461bcd60e51b81526004018080602001828103825260348152602001806158e86034913960400191505060405180910390fd5b505050505050565b6000838152600f602090815260408083206001600160a01b03861684529091529020613b0b9082614ca8565b613b5c576040805162461bcd60e51b815260206004820152601e60248201527f4368696c6420746f6b656e206e6f74206f776e656420627920746f6b656e0000604482015290519081900360640190fd5b6000838152600f602090815260408083206001600160a01b03861684529091529020613b889082614cb4565b506001600160a01b03821660008181526010602090815260408083208584528252808320839055868352600f825280832093835292905220613bc9906142c5565b611367576000838152600e6020526040902061299e9083614cc0565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613c1e82611ebd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113848383614cd5565b016014015190565b600081826020011015613cba576040805162461bcd60e51b8152602060048201526012602482015271746f55696e743235365f6f766572666c6f7760701b604482015290519081900360640190fd5b8160200183511015613d0b576040805162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015290519081900360640190fd5b50016020015190565b600d5460408051633f8a519160e21b81526004810185905290516000926001600160a01b03169163fe294644916024808301926020929190829003018186803b158015613d6057600080fd5b505afa158015613d74573d6000803e3d6000fd5b505050506040513d6020811015613d8a57600080fd5b5051600c5460408051630869624160e31b81526004810186905290516001600160d81b0319909316926001600160a01b039092169163434b120891602480820192602092909190829003018186803b158015613de557600080fd5b505afa158015613df9573d6000803e3d6000fd5b505050506040513d6020811015613e0f57600080fd5b50516001600160d81b0319161461409157600b546040805163fc810d7d60e01b81526004810186905290516001600160a01b039092169163fc810d7d91602480820192602092909190829003018186803b158015613e6c57600080fd5b505afa158015613e80573d6000803e3d6000fd5b505050506040513d6020811015613e9657600080fd5b5051613ed35760405162461bcd60e51b815260040180806020018281038252603c815260200180615c6e603c913960400191505060405180910390fd5b600b546040805163eda84ca160e01b81526004810186905290516001600160a01b039092169163eda84ca191602480820192602092909190829003018186803b158015613f1f57600080fd5b505afa158015613f33573d6000803e3d6000fd5b505050506040513d6020811015613f4957600080fd5b5051600d5460408051633f8a519160e21b81526004810187905290519294506001600160a01b039091169163fe29464491602480820192602092909190829003018186803b158015613f9a57600080fd5b505afa158015613fae573d6000803e3d6000fd5b505050506040513d6020811015613fc457600080fd5b5051600c5460408051630869624160e31b81526004810186905290516001600160d81b0319909316926001600160a01b039092169163434b120891602480820192602092909190829003018186803b15801561401f57600080fd5b505afa158015614033573d6000803e3d6000fd5b505050506040513d602081101561404957600080fd5b50516001600160d81b031916146140915760405162461bcd60e51b8152600401808060200182810382526034815260200180615c3a6034913960400191505060405180910390fd5b600d5460408051636f074d1f60e11b81526004810186905290516001600160a01b039092169163de0e9a3e9160248082019260009290919082900301818387803b1580156140de57600080fd5b505af11580156140f2573d6000803e3d6000fd5b5050505061170884836142d0565b630a85bd0160e11b949350505050565b614118611ead565b1561416a576040805162461bcd60e51b815260206004820152601b60248201527f4368696c64207265636569766564207768696c65207061757365640000000000604482015290519081900360640190fd5b614173836148ec565b6141ae5760405162461bcd60e51b815260040180806020018281038252602c81526020018061585b602c913960400191505060405180910390fd5b6000838152600f602090815260408083206001600160a01b038616845290915290206141da9082614ca8565b156142165760405162461bcd60e51b815260040180806020018281038252603f8152602001806158a9603f913960400191505060405180910390fd5b6000838152600e6020526040902061422e9083614d39565b506000838152600f602090815260408083206001600160a01b0386168452909152902061425b9082614d4e565b506001600160a01b038083166000818152601060209081526040808320868452825291829020600a880190558151858152915192938793908916927f0371ddf2288ad1ba92626a7e31c86a9d006e592cfe57d7d946ef08b13457c08b92908290030190a450505050565b600061138782614d5a565b60006142da611ead565b1561432c576040805162461bcd60e51b815260206004820152601b60248201527f417474656d707465642077726170207768696c65207061757365640000000000604482015290519081900360640190fd5b6143368383614d5e565b61433e613be5565b6001600160a01b03167f166a86c03a6732f4f3ef16e479711bbe434ae08a4d9adcfd0beb04d8ea4762f7836040518082815260200191505060405180910390a250919050565b600061438f8261371d565b6143ca5760405162461bcd60e51b815260040180806020018281038252602c8152602001806159be602c913960400191505060405180910390fd5b60006143d583611ebd565b9050806001600160a01b0316846001600160a01b031614806144105750836001600160a01b031661440584611107565b6001600160a01b0316145b806133ef57506133ef8185614c00565b614429816148ec565b1561443e57614439838383614e8c565b611367565b6001600160a01b0382166144835760405162461bcd60e51b81526004018080602001828103825260248152602001806159746024913960400191505060405180910390fd5b6001600160a01b038216301415614498578291505b600d54600c5460408051630869624160e31b81526004810185905290516000936001600160a01b0390811693635ce879a89391169163434b120891602480820192602092909190829003018186803b1580156144f357600080fd5b505afa158015614507573d6000803e3d6000fd5b505050506040513d602081101561451d57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160d81b03199092166004830152516024808301926020929190829003018186803b15801561456557600080fd5b505afa158015614579573d6000803e3d6000fd5b505050506040513d602081101561458f57600080fd5b5051600d549091506001600160a01b031663b88d4fde8530846145b187614921565b6145ba8961494b565b6040516020018083805190602001908083835b602083106145ec5780518252601f1990920191602091820191016145cd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106146345780518252601f199092019160209182019101614615565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156146d95781810151838201526020016146c1565b50505050905090810190601f1680156147065780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561472857600080fd5b505af115801561473c573d6000803e3d6000fd5b5050600b54604080516001622546f760e01b031981526004810186905290516001600160a01b03909216935063ffdab909925060248082019260009290919082900301818387803b158015612a0857600080fd5b60006001600160a01b0382166147d75760405162461bcd60e51b815260040180806020018281038252602a815260200180615a78602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020611387906142c5565b6001600160a01b03821660009081526001602052604081206113849083613c57565b614822611ead565b61486a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6148a0613be5565b604080516001600160a01b039092168252519081900360200190a1565b60008080806148cc8686614fd8565b9097909650945050505050565b805161104a90600990602084019061571e565b6000611387600283614ca8565b600061138782604051806060016040528060298152602001615aa26029913960029190615053565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6040805160609290921b6bffffffffffffffffffffffff19166020830152805160148184030181526034909201905290565b614985611ead565b156149ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586148a0613be5565b614a11848484614420565b614a1d84848484615060565b61299e5760405162461bcd60e51b815260040180806020018281038252603281526020018061591c6032913960400191505060405180910390fd5b606081614a7d57506040805180820190915260018152600360fc1b602082015261106c565b8160005b8115614a9557600101600a82049150614a81565b60608167ffffffffffffffff81118015614aae57600080fd5b506040519080825280601f01601f191660200182016040528015614ad9576020820181803683370190505b50859350905060001982015b8315614b2a57600a840660300160f81b82828060019003935081518110614b0857fe5b60200101906001600160f81b031916908160001a905350600a84049350614ae5565b50949350505050565b6000614b3e826148f9565b9050614b4c81600084611367565b614b57600083613be9565b6000828152600860205260409020546002600019610100600184161502019091160415614b95576000828152600860205260408120614b959161579c565b6001600160a01b0381166000908152600160205260409020614bb79083614cb4565b50614bc36002836151c8565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160a01b038216600090815260106020908152604080832084845290915281205480614c8e5760405162461bcd60e51b8152600401808060200182810382526033815260200180615a0d6033913960400191505060405180910390fd5b614c9b6009198201611ebd565b9150600919019250929050565b600061138483836151d4565b600061138483836151ec565b6000611384836001600160a01b0384166151ec565b81546000908210614d175760405162461bcd60e51b81526004018080602001828103825260228152602001806158876022913960400191505060405180910390fd5b826000018281548110614d2657fe5b9060005260206000200154905092915050565b6000611384836001600160a01b0384166152b2565b600061138483836152b2565b5490565b6001600160a01b038216614db9576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b614dc2816148ec565b15614e14576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b614e2060008383611367565b6001600160a01b0382166000908152600160205260409020614e429082614d4e565b50614e4f600282846152fc565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316614e9f826148f9565b6001600160a01b031614614ee45760405162461bcd60e51b8152600401808060200182810382526029815260200180615b396029913960400191505060405180910390fd5b6001600160a01b038216614f295760405162461bcd60e51b81526004018080602001828103825260248152602001806159746024913960400191505060405180910390fd5b614f34838383611367565b614f3f600082613be9565b6001600160a01b0383166000908152600160205260409020614f619082614cb4565b506001600160a01b0382166000908152600160205260409020614f849082614d4e565b50614f91600282846152fc565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b81546000908190831061501c5760405162461bcd60e51b8152600401808060200182810382526022815260200180615acb6022913960400191505060405180910390fd5b600084600001848154811061502d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000611708848484615312565b6000615074846001600160a01b03166153dc565b615080575060016133ef565b606061518e630a85bd0160e11b615095613be5565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156150fc5781810151838201526020016150e4565b50505050905090810190601f1680156151295780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161591c603291396001600160a01b03881691906153e2565b905060008180602001905160208110156151a757600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b600061138483836153f1565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156152a8578354600019808301919081019060009087908390811061521f57fe5b906000526020600020015490508087600001848154811061523c57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061526c57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611387565b6000915050611387565b60006152be83836151d4565b6152f457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611387565b506000611387565b600061170884846001600160a01b0385166154c5565b600082815260018401602052604081205482816153ad5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561537257818101518382015260200161535a565b50505050905090810190601f16801561539f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106153c057fe5b9060005260206000209060020201600101549150509392505050565b3b151590565b6060611708848460008561555c565b600081815260018301602052604081205480156152a8578354600019808301919081019060009087908390811061542457fe5b906000526020600020906002020190508087600001848154811061544457fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061548357fe5b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506113879350505050565b60008281526001840160205260408120548061552a57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561170b565b8285600001600183038154811061553d57fe5b906000526020600020906002020160010181905550600091505061170b565b60608247101561559d5760405162461bcd60e51b81526004018080602001828103825260268152602001806159986026913960400191505060405180910390fd5b6155a6856153dc565b6155f7576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106156365780518252601f199092019160209182019101615617565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615698576040519150601f19603f3d011682016040523d82523d6000602084013e61569d565b606091505b50915091506156ad8282866156b8565b979650505050505050565b606083156156c757508161170b565b8251156156d75782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561537257818101518382015260200161535a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061575f57805160ff191683800117855561578c565b8280016001018555821561578c579182015b8281111561578c578251825591602001919060010190615771565b506157989291506157dc565b5090565b50805460018160011615610100020316600290046000825580601f106157c25750611eaa565b601f016020900490600052602060002090810190611eaa91905b5b8082111561579857600081556001016157dd56fe5f64617461206d75737420636f6e7461696e207468652075696e7432353620746f6b656e496420746f207472616e7366657220746865206368696c6420746f6b656e20746f54686174204d6f6f6e43617420646f6573206e6f74206f776e207468617420617373657454686174204d6f6f6e436174206973206e6f74207772617070656420696e207468697320636f6e7472616374456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647343616e6e6f742072656365697665206368696c6420746f6b656e20626563617573652069742068617320616c7265616479206265656e2072656365697665644e6f7420616c6c6f77656420746f207472616e73666572206368696c6420617373657473206f662074686174204d6f6f6e4361744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e6e6f742066696e6420746f6b656e20494420666f72207468617420696e64657854686174206368696c64206973206e6f74206f776e6564206279206120746f6b656e20696e207468697320636f6e74726163744552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724368696c64206173736574206973206e6f74206f776e6564206279206120746f6b656e20696e207468697320636f6e74726163744552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e76616c69642064657374696e6174696f6e206f776e6572207370656369666965645f6f6c64546f6b656e494420616e64205f7265736375654f7264657220646f206e6f74206d617463682073616d65206361744944556e61626c6520746f2064657465726d696e652070726f706572207265736375654f7264657220666f722074686973206f6c6420746f6b656e204944a2646970667358221220251ac846f30c3f8670931a84363405e0e669c76fc7152e3f66811a9a43c9e00864736f6c634300070300336080604052600180546001600160a01b03199081167360cd862c9c687a9de49aecdc3a99b74a4fc54ab61790915560028054909116737c40c393dc0f283f318791d746d894ddd369357217905534801561005857600080fd5b5060006100636100b2565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506100b6565b3390565b61091a806100c56000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063eda84ca11161005b578063eda84ca11461021a578063f2fde38b14610237578063fc810d7d1461025d578063ffdab9091461028e57610088565b8063715018a61461008d57806373653929146100975780638da5cb5b146100cf578063dd3ae5f1146100f3575b600080fd5b6100956102ab565b005b6100bd600480360360208110156100ad57600080fd5b50356001600160a01b0316610369565b60408051918252519081900360200190f35b6100d7610499565b604080516001600160a01b039092168252519081900360200190f35b6100956004803603604081101561010957600080fd5b81019060208101813564010000000081111561012457600080fd5b82018360208201111561013657600080fd5b8035906020019184602083028401116401000000008311171561015857600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156101a857600080fd5b8201836020820111156101ba57600080fd5b803590602001918460208302840111640100000000831117156101dc57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506104a8945050505050565b6100bd6004803603602081101561023057600080fd5b503561067c565b6100956004803603602081101561024d57600080fd5b50356001600160a01b03166106f1565b61027a6004803603602081101561027357600080fd5b5035610805565b604080519115158252519081900360200190f35b610095600480360360208110156102a457600080fd5b5035610816565b6102b36108a0565b6001600160a01b03166102c4610499565b6001600160a01b03161461031f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600080805b600254604080516370a0823160e01b81526001600160a01b038781166004830152915191909216916370a08231916024808301926020929190829003018186803b1580156103bb57600080fd5b505afa1580156103cf573d6000803e3d6000fd5b505050506040513d60208110156103e557600080fd5b50518110156104925760025460408051632f745c5960e01b81526001600160a01b0387811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b15801561044657600080fd5b505afa15801561045a573d6000803e3d6000fd5b505050506040513d602081101561047057600080fd5b5051905061047d816108a4565b15610489576001909201915b5060010161036e565b5092915050565b6000546001600160a01b031690565b60005b82518110156106775760025483516001600160a01b039091169063fe294644908590849081106104d757fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561051357600080fd5b505afa158015610527573d6000803e3d6000fd5b505050506040513d602081101561053d57600080fd5b505160015483516001600160d81b0319909216916001600160a01b039091169063434b12089085908590811061056f57fe5b60200260200101516040518263ffffffff1660e01b8152600401808261ffff16815260200191505060206040518083038186803b1580156105af57600080fd5b505afa1580156105c3573d6000803e3d6000fd5b505050506040513d60208110156105d957600080fd5b50516001600160d81b0319161461062e576040805162461bcd60e51b81526020600482015260146024820152735061697220646f6573206e6f74206d617463682160601b604482015290519081900360640190fd5b600a60ff1682828151811061063f57fe5b60200260200101510161ffff16600384838151811061065a57fe5b6020026020010151616400811061066d57fe5b01556001016104ab565b505050565b6000610687826108a4565b6106d8576040805162461bcd60e51b815260206004820152601f60248201527f5468617420746f6b656e204944206973206e6f74206d61707065642079657400604482015290519081900360640190fd5b600a60038361640081106106e857fe5b01540392915050565b6106f96108a0565b6001600160a01b031661070a610499565b6001600160a01b031614610765576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166107aa5760405162461bcd60e51b81526004018080602001828103825260268152602001806108bf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610810826108a4565b92915050565b61081e6108a0565b6001600160a01b031661082f610499565b6001600160a01b03161461088a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600381616400811061089857fe5b016000905550565b3390565b600060038261640081106108b457fe5b015415159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a2646970667358221220967d8a62f01db6229c1e4a60a677bd1f9686db8d0dceaf3e976bd7b2dac9a00964736f6c634300070300330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6d6f6f6e6361742e636f6d6d756e6974792f7472616974732f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80635c975abb1161014f578063a22cb465116100c1578063de0e9a3e1161007a578063de0e9a3e14610ec4578063e985e9c514610eee578063ea598cb014610f29578063eadb80b814610f53578063ed81cdda14610fa5578063f2fde38b14610fde57610271565b8063a22cb46514610c7b578063b88d4fde14610cb6578063ba6b5f9614610d87578063bef44f1814610dce578063c87b56dd14610e17578063cd218d3214610e4157610271565b8063715018a611610113578063715018a614610b5d5780638456cb5914610b725780638d81f51e14610b875780638da5cb5b14610c275780638da7d0b514610c3c57806395d89b4114610c6657610271565b80635c975abb146109a65780636352211e146109bb578063697b91e0146109e55780636c0360eb14610b1557806370a0823114610b2a57610271565b80631d98f3c5116101e85780633f4ba83a116101ac5780633f4ba83a1461079b57806342842e0e146107b057806343a61a8e146107f3578063440230d41461081d5780634f6ccce7146108cb57806355f804b3146108f557610271565b80631d98f3c51461068857806323b872dd146106d15780632de092e6146107145780632f745c591461072957806335b21ceb1461076257610271565b8063095ea7b31161023a578063095ea7b3146104e45780630d5a621b1461051d578063150b7a021461054d578063160b01a11461060557806318160ddd1461065657806318785d0e1461066b57610271565b80622e87c81461027657806301ffc9a71461032657806306fdde031461036e578063081812fc146103f857806308937f621461043e575b600080fd5b34801561028257600080fd5b506103246004803603602081101561029957600080fd5b810190602081018135600160201b8111156102b357600080fd5b8201836020820111156102c557600080fd5b803590602001918460208302840111600160201b831117156102e657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611011945050505050565b005b34801561033257600080fd5b5061035a6004803603602081101561034957600080fd5b50356001600160e01b03191661104e565b604080519115158252519081900360200190f35b34801561037a57600080fd5b50610383611071565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103bd5781810151838201526020016103a5565b50505050905090810190601f1680156103ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040457600080fd5b506104226004803603602081101561041b57600080fd5b5035611107565b604080516001600160a01b039092168252519081900360200190f35b34801561044a57600080fd5b50610324600480360360c081101561046157600080fd5b8135916001600160a01b03602082013581169260408301359260608101359092169160808101359181019060c0810160a0820135600160201b8111156104a657600080fd5b8201836020820111156104b857600080fd5b803590602001918460018302840111600160201b831117156104d957600080fd5b509092509050611169565b3480156104f057600080fd5b506103246004803603604081101561050757600080fd5b506001600160a01b038135169060200135611291565b34801561052957600080fd5b506104226004803603604081101561054057600080fd5b508035906020013561136c565b34801561055957600080fd5b506105e86004803603608081101561057057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105aa57600080fd5b8201836020820111156105bc57600080fd5b803590602001918460018302840111600160201b831117156105dd57600080fd5b50909250905061138d565b604080516001600160e01b03199092168252519081900360200190f35b34801561061157600080fd5b506106446004803603606081101561062857600080fd5b508035906001600160a01b0360208201351690604001356116dc565b60408051918252519081900360200190f35b34801561066257600080fd5b50610644611712565b6106446004803603602081101561068157600080fd5b5035611723565b34801561069457600080fd5b50610324600480360360808110156106ab57600080fd5b508035906001600160a01b03602082013581169160408101359091169060600135611918565b3480156106dd57600080fd5b50610324600480360360608110156106f457600080fd5b506001600160a01b038135811691602081013590911690604001356119f1565b34801561072057600080fd5b50610422611a48565b34801561073557600080fd5b506106446004803603604081101561074c57600080fd5b506001600160a01b038135169060200135611a57565b34801561076e57600080fd5b506106446004803603604081101561078557600080fd5b50803590602001356001600160a01b0316611ce1565b3480156107a757600080fd5b50610324611d0c565b3480156107bc57600080fd5b50610324600480360360608110156107d357600080fd5b506001600160a01b03813581169160208101359091169060400135611dc8565b3480156107ff57600080fd5b506106446004803603602081101561081657600080fd5b5035611de3565b34801561082957600080fd5b506103246004803603602081101561084057600080fd5b810190602081018135600160201b81111561085a57600080fd5b82018360208201111561086c57600080fd5b803590602001918460208302840111600160201b8311171561088d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611df0945050505050565b3480156108d757600080fd5b50610644600480360360208110156108ee57600080fd5b5035611e29565b34801561090157600080fd5b506103246004803603602081101561091857600080fd5b810190602081018135600160201b81111561093257600080fd5b82018360208201111561094457600080fd5b803590602001918460018302840111600160201b8311171561096557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611e3f945050505050565b3480156109b257600080fd5b5061035a611ead565b3480156109c757600080fd5b50610422600480360360208110156109de57600080fd5b5035611ebd565b3480156109f157600080fd5b5061032460048036036040811015610a0857600080fd5b810190602081018135600160201b811115610a2257600080fd5b820183602082011115610a3457600080fd5b803590602001918460208302840111600160201b83111715610a5557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610aa457600080fd5b820183602082011115610ab657600080fd5b803590602001918460208302840111600160201b83111715610ad757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506121ba945050505050565b348015610b2157600080fd5b5061038361244a565b348015610b3657600080fd5b5061064460048036036020811015610b4d57600080fd5b50356001600160a01b03166124ab565b348015610b6957600080fd5b50610324612538565b348015610b7e57600080fd5b506103246125e4565b348015610b9357600080fd5b50610324600480360360a0811015610baa57600080fd5b8135916001600160a01b03602082013581169260408301359091169160608101359181019060a081016080820135600160201b811115610be957600080fd5b820183602082011115610bfb57600080fd5b803590602001918460018302840111600160201b83111715610c1c57600080fd5b50909250905061269b565b348015610c3357600080fd5b506104226127ba565b348015610c4857600080fd5b5061064460048036036020811015610c5f57600080fd5b50356127c9565b348015610c7257600080fd5b506103836127e0565b348015610c8757600080fd5b5061032460048036036040811015610c9e57600080fd5b506001600160a01b0381351690602001351515612841565b348015610cc257600080fd5b5061032460048036036080811015610cd957600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610d1357600080fd5b820183602082011115610d2557600080fd5b803590602001918460018302840111600160201b83111715610d4657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612946945050505050565b348015610d9357600080fd5b5061032460048036036080811015610daa57600080fd5b506001600160a01b03813581169160208101359160408201351690606001356129a4565b348015610dda57600080fd5b5061032460048036036080811015610df157600080fd5b508035906001600160a01b03602082013581169160408101359091169060600135612a26565b348015610e2357600080fd5b5061038360048036036020811015610e3a57600080fd5b5035612bea565b348015610e4d57600080fd5b50610e7460048036036020811015610e6457600080fd5b50356001600160a01b0316612e6d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610eb0578181015183820152602001610e98565b505050509050019250505060405180910390f35b348015610ed057600080fd5b5061064460048036036020811015610ee757600080fd5b5035612f49565b348015610efa57600080fd5b5061035a60048036036040811015610f1157600080fd5b506001600160a01b038135811691602001351661314e565b348015610f3557600080fd5b5061064460048036036020811015610f4c57600080fd5b5035613270565b348015610f5f57600080fd5b50610f8c60048036036040811015610f7657600080fd5b506001600160a01b0381351690602001356133f7565b6040805192835260208301919091528051918290030190f35b348015610fb157600080fd5b5061064460048036036040811015610fc857600080fd5b506001600160a01b038135169060200135613485565b348015610fea57600080fd5b506103246004803603602081101561100157600080fd5b50356001600160a01b031661361a565b60005b81518161ffff16101561104a57611041828261ffff168151811061103457fe5b6020026020010151612f49565b50600101611014565b5050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b820191906000526020600020905b8154815290600101906020018083116110e057829003601f168201915b5050505050905090565b60006111128261371d565b61114d5760405162461bcd60e51b815260040180806020018281038252602c815260200180615aed602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b611175878786866138da565b611180878585613adf565b836001600160a01b031663f50acfa03088888787876040518763ffffffff1660e01b815260040180876001600160a01b03168152602001866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050975050505050505050600060405180830381600087803b15801561122457600080fd5b505af1158015611238573d6000803e3d6000fd5b50505050836001600160a01b0316866001600160a01b0316887f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6866040518082815260200191505060405180910390a450505050505050565b600061129c82611ebd565b9050806001600160a01b0316836001600160a01b031614156112ef5760405162461bcd60e51b8152600401808060200182810382526021815260200180615b916021913960400191505060405180910390fd5b806001600160a01b0316611301613be5565b6001600160a01b0316148061132257506113228161131d613be5565b61314e565b61135d5760405162461bcd60e51b8152600401808060200182810382526038815260200180615a406038913960400191505060405180910390fd5b6113678383613be9565b505050565b6000828152600e602052604081206113849083613c57565b90505b92915050565b600033737c40c393dc0f283f318791d746d894ddd3693572141561156057600060348310801590611412575060006001600160a01b031661140685858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060209250613c63915050565b6001600160a01b031614155b61141c578561145e565b61145e84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060209250613c63915050565b90506001600160a01b0381161580159061148157506001600160a01b0381163014155b6114bc5760405162461bcd60e51b8152600401808060200182810382526023815260200180615c176023913960400191505060405180910390fd5b611515818660208610156114d1576000611510565b61151087878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250613c6b915050565b613d14565b5061155887878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061410092505050565b9150506116d3565b8161159c5760405162461bcd60e51b81526004018080602001828103825260458152602001806157f26045913960600191505060405180910390fd5b60a43560208310156115b25760088302610100031c5b6115be86823388614110565b60006001600160a01b0316336001600160a01b0316636352211e876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561160d57600080fd5b505afa158015611621573d6000803e3d6000fd5b505050506040513d602081101561163757600080fd5b50516001600160a01b0316141561168d576040805162461bcd60e51b815260206004820152601560248201527410da1a5b19081d1bdad95b881b9bdd081bdddb9959605a1b604482015290519081900360640190fd5b6116cf87878787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061410092505050565b9150505b95945050505050565b6000838152600f602090815260408083206001600160a01b038616845290915281206117089083613c57565b90505b9392505050565b600061171e60026142c5565b905090565b600c5460408051630869624160e31b815260048101849052905160009283926001600160a01b039091169163434b120891602480820192602092909190829003018186803b15801561177457600080fd5b505afa158015611788573d6000803e3d6000fd5b505050506040513d602081101561179e57600080fd5b5051600c5460408051638edc707b60e01b81526001600160d81b031984166004820152905192935060009283926001600160a01b031691638edc707b9160248083019260a0929190829003018186803b1580156117fa57600080fd5b505afa15801561180e573d6000803e3d6000fd5b505050506040513d60a081101561182457600080fd5b50805160809091015190925090506001600160a01b0381161580156118465750815b611897576040805162461bcd60e51b815260206004820152601c60248201527f54686174204d6f6f6e436174206973206e6f7420666f722073616c6500000000604482015290519081900360640190fd5b600c54604080516301be705160e41b81526001600160d81b03198616600482015290516001600160a01b0390921691631be70510913491602480830192600092919082900301818588803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b50505050506116d3611912613be5565b866142d0565b611924848484846138da565b61192f848383613adf565b60408051632142170760e11b81523060048201526001600160a01b038581166024830152604482018490529151918416916342842e0e9160648082019260009290919082900301818387803b15801561198757600080fd5b505af115801561199b573d6000803e3d6000fd5b50505050816001600160a01b0316836001600160a01b0316857f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6846040518082815260200191505060405180910390a450505050565b611a026119fc613be5565b82614384565b611a3d5760405162461bcd60e51b8152600401808060200182810382526031815260200180615be66031913960400191505060405180910390fd5b611367838383614420565b600b546001600160a01b031681565b600080611a6384614790565b905080831015611a7f57611a7784846147f8565b915050611387565b6000805b600d54604080516370a0823160e01b81526001600160a01b038981166004830152915191909216916370a08231916024808301926020929190829003018186803b158015611ad057600080fd5b505afa158015611ae4573d6000803e3d6000fd5b505050506040513d6020811015611afa57600080fd5b5051811015611ca957600d5460408051632f745c5960e01b81526001600160a01b0389811660048301526024820185905291516000939290921691632f745c5991604480820192602092909190829003018186803b158015611b5b57600080fd5b505afa158015611b6f573d6000803e3d6000fd5b505050506040513d6020811015611b8557600080fd5b5051600b546040805163fc810d7d60e01b81526004810184905290519293506001600160a01b039091169163fc810d7d91602480820192602092909190829003018186803b158015611bd657600080fd5b505afa158015611bea573d6000803e3d6000fd5b505050506040513d6020811015611c0057600080fd5b505115611ca0576001928301928487030161ffff84161415611ca057600b546040805163eda84ca160e01b81526004810184905290516001600160a01b039092169163eda84ca191602480820192602092909190829003018186803b158015611c6857600080fd5b505afa158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b505194506113879350505050565b50600101611a83565b5060405162461bcd60e51b81526004018080602001828103825260238152602001806159ea6023913960400191505060405180910390fd5b6000828152600f602090815260408083206001600160a01b03851684529091528120611384906142c5565b611d14611ead565b611d5c576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b611d64613be5565b6001600160a01b0316611d756127ba565b6001600160a01b031614611dbe576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611dc661481a565b565b61136783838360405180602001604052806000815250612946565b6000611387600083613485565b60005b81518161ffff16101561104a57611e20828261ffff1681518110611e1357fe5b6020026020010151613270565b50600101611df3565b600080611e376002846148bd565b509392505050565b611e47613be5565b6001600160a01b0316611e586127ba565b6001600160a01b031614611ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611eaa816148d9565b50565b600a54600160a01b900460ff1690565b6000611ec8826148ec565b15611edd57611ed6826148f9565b905061106c565b600c5460408051630869624160e31b81526004810185905290516000926001600160a01b03169163434b1208916024808301926020929190829003018186803b158015611f2957600080fd5b505afa158015611f3d573d6000803e3d6000fd5b505050506040513d6020811015611f5357600080fd5b5051600d5460408051633f8a519160e21b81526000600482015290519293506001600160a01b039091169163fe29464491602480820192602092909190829003018186803b158015611fa457600080fd5b505afa158015611fb8573d6000803e3d6000fd5b505050506040513d6020811015611fce57600080fd5b50516001600160d81b03198281169116141561206557600d54604080516331a9108f60e11b81526000600482015290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b15801561203057600080fd5b505afa158015612044573d6000803e3d6000fd5b505050506040513d602081101561205a57600080fd5b5051915061106c9050565b600d5460408051630b9d0f3560e31b81526001600160d81b03198416600482015290516000926001600160a01b031691635ce879a8916024808301926020929190829003018186803b1580156120ba57600080fd5b505afa1580156120ce573d6000803e3d6000fd5b505050506040513d60208110156120e457600080fd5b505190508061213a576040805162461bcd60e51b815260206004820152601b60248201527f54686174204d6f6f6e436174206973206e6f7420777261707065640000000000604482015290519081900360640190fd5b600d54604080516331a9108f60e11b81526004810184905290516001600160a01b0390921691636352211e91602480820192602092909190829003018186803b15801561218657600080fd5b505afa15801561219a573d6000803e3d6000fd5b505050506040513d60208110156121b057600080fd5b5051949350505050565b60005b82518161ffff16101561136757600d5482516000916001600160a01b031690636352211e90859061ffff86169081106121f257fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561222e57600080fd5b505afa158015612242573d6000803e3d6000fd5b505050506040513d602081101561225857600080fd5b5051600d5484519192506001600160a01b03169063b88d4fde9083903090879061ffff881690811061228657fe5b60200260200101516122ae898861ffff16815181106122a157fe5b6020026020010151614921565b6122b78761494b565b6040516020018083805190602001908083835b602083106122e95780518252601f1990920191602091820191016122ca565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106123315780518252601f199092019160209182019101612312565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156123d65781810151838201526020016123be565b50505050905090810190601f1680156124035780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561242557600080fd5b505af1158015612439573d6000803e3d6000fd5b5050600190930192506121bd915050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b600b5460408051637365392960e01b81526001600160a01b03848116600483015291516000939290921691637365392991602480820192602092909190829003018186803b1580156124fc57600080fd5b505afa158015612510573d6000803e3d6000fd5b505050506040513d602081101561252657600080fd5b505161253183614790565b0192915050565b612540613be5565b6001600160a01b03166125516127ba565b6001600160a01b03161461259a576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6125ec611ead565b15612631576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612639613be5565b6001600160a01b031661264a6127ba565b6001600160a01b031614612693576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b611dc661497d565b6126a7868686866138da565b6126b2868585613adf565b836001600160a01b031663b88d4fde30878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561274e57600080fd5b505af1158015612762573d6000803e3d6000fd5b50505050836001600160a01b0316856001600160a01b0316877f0ef52e516fb5aec15a5d3587e5480481b702b26db93c8430eca78b61990fd3f6866040518082815260200191505060405180910390a4505050505050565b600a546001600160a01b031690565b6000818152600e60205260408120611387906142c5565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156110fd5780601f106110d2576101008083540402835291602001916110fd565b612849613be5565b6001600160a01b0316826001600160a01b031614156128af576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006128bc613be5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155612900613be5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612957612951613be5565b83614384565b6129925760405162461bcd60e51b8152600401808060200182810382526031815260200180615be66031913960400191505060405180910390fd5b61299e84848484614a06565b50505050565b6129b084848484614110565b604080516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018490529151918416916323b872dd9160648082019260009290919082900301818387803b158015612a0857600080fd5b505af1158015612a1c573d6000803e3d6000fd5b5050505050505050565b612a32848484846138da565b612a3d848383613adf565b60408051306024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663095ea7b360e01b178152915181516000936060936001600160a01b038816939092909182918083835b60208310612ab85780518252601f199092019160209182019101612a99565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612b1a576040519150601f19603f3d011682016040523d82523d6000602084013e612b1f565b606091505b5091509150818015612b4d575080511580612b4d5750808060200190516020811015612b4a57600080fd5b50515b612b92576040805162461bcd60e51b81526020600482015260116024820152704661696c656420746f20417070726f766560781b604482015290519081900360640190fd5b604080516323b872dd60e01b81523060048201526001600160a01b038781166024830152604482018690529151918616916323b872dd9160648082019260009290919082900301818387803b15801561274e57600080fd5b6060612bf58261371d565b612c305760405162461bcd60e51b815260040180806020018281038252602f815260200180615b62602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015612cc55780601f10612c9a57610100808354040283529160200191612cc5565b820191906000526020600020905b815481529060010190602001808311612ca857829003601f168201915b505050505090506060612cd661244a565b9050805160001415612cea5750905061106c565b815115612dab5780826040516020018083805190602001908083835b60208310612d255780518252601f199092019160209182019101612d06565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310612d6d5780518252601f199092019160209182019101612d4e565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061106c565b80612db585614a58565b6040516020018083805190602001908083835b60208310612de75780518252601f199092019160209182019101612dc8565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310612e2f5780518252601f199092019160209182019101612e10565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b6001600160a01b03811660009081526001602052604090206060908190612e93906142c5565b67ffffffffffffffff81118015612ea957600080fd5b50604051908082528060200260200182016040528015612ed3578160200160208202803683370190505b50905060005b6001600160a01b0384166000908152600160205260409020612efa906142c5565b811015612f42576001600160a01b0384166000908152600160205260409020612f239082613c57565b828281518110612f2f57fe5b6020908102919091010152600101612ed9565b5092915050565b6000612f53613be5565b6001600160a01b0316612f6583611ebd565b6001600160a01b031614612fb4576040805162461bcd60e51b81526020600482015260116024820152704e6f7420796f7572204d6f6f6e4361742160781b604482015290519081900360640190fd5b612fbd826148ec565b612ff85760405162461bcd60e51b815260040180806020018281038252602c81526020018061585b602c913960400191505060405180910390fd5b600c5460408051630869624160e31b81526004810185905290516000926001600160a01b03169163434b1208916024808301926020929190829003018186803b15801561304457600080fd5b505afa158015613058573d6000803e3d6000fd5b505050506040513d602081101561306e57600080fd5b5051600c549091506001600160a01b031663f884e54a8261308e86611ebd565b6040518363ffffffff1660e01b815260040180836001600160d81b0319168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156130de57600080fd5b505af11580156130f2573d6000803e3d6000fd5b505050506130ff83614b33565b613107613be5565b6001600160a01b03167f4b4049773a7d189d0bf28d9bb55a7af4d94a6c02c074922614bfae9dae388886846040518082815260200191505060405180910390a25090919050565b600b5460408051637365392960e01b81526001600160a01b03858116600483015291516000939290921691637365392991602480820192602092909190829003018186803b15801561319f57600080fd5b505afa1580156131b3573d6000803e3d6000fd5b505050506040513d60208110156131c957600080fd5b505115613266576131da8383614c00565b80156132615750600d546040805163e985e9c560e01b81526001600160a01b0386811660048301523060248301529151919092169163e985e9c5916044808301926020929190829003018186803b15801561323457600080fd5b505afa158015613248573d6000803e3d6000fd5b505050506040513d602081101561325e57600080fd5b50515b611384565b6113848383614c00565b600c5460408051630869624160e31b815260048101849052905160009283926001600160a01b039091169163434b120891602480820192602092909190829003018186803b1580156132c157600080fd5b505afa1580156132d5573d6000803e3d6000fd5b505050506040513d60208110156132eb57600080fd5b5051600c5460408051633894ca5760e01b81526001600160d81b03198416600482015290519293506000926001600160a01b0390921691633894ca5791602480820192602092909190829003018186803b15801561334857600080fd5b505afa15801561335c573d6000803e3d6000fd5b505050506040513d602081101561337257600080fd5b5051600c54604080516301be705160e41b81526001600160d81b03198616600482015290519293506001600160a01b0390911691631be705109160248082019260009290919082900301818387803b1580156133cd57600080fd5b505af11580156133e1573d6000803e3d6000fd5b505050506133ef81856142d0565b949350505050565b6001600160a01b0382166000908152601060209081526040808320848452909152812054806134575760405162461bcd60e51b8152600401808060200182810382526033815260200180615a0d6033913960400191505060405180910390fd5b6134646009198201611ebd565b6001600160a01b031663cd740db560e01b1794600919919091019350915050565b6000806001600160a01b038416156134aa576134a18484614c2e565b935090506134b6565b6134b383611ebd565b90505b6001600160a01b0381163014156134d1576134a18184614c2e565b60408051306024820152604480820186905282518083039091018152606490910182526020810180516001600160e01b03166376c0e6ed60e11b178152915181516000936060936001600160a01b038716939092909182918083835b6020831061354c5780518252601f19909201916020918201910161352d565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d80600081146135ac576040519150601f19603f3d011682016040523d82523d6000602084013e6135b1565b606091505b509150915080516000146135d9578080602001905160208110156135d457600080fd5b505193505b60018215151480156135f2575060e084901c63cd740db5145b156135ff57505050611387565b50506001600160a01b031663cd740db560e01b179050611387565b613622613be5565b6001600160a01b03166136336127ba565b6001600160a01b03161461367c576040805162461bcd60e51b81526020600482018190526024820152600080516020615b19833981519152604482015290519081900360640190fd5b6001600160a01b0381166136c15760405162461bcd60e51b815260040180806020018281038252602681526020018061594e6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000613728826148ec565b156137355750600161106c565b600d5460408051633f8a519160e21b8152600060048201819052915191926001600160a01b03169163fe29464491602480820192602092909190829003018186803b15801561378357600080fd5b505afa158015613797573d6000803e3d6000fd5b505050506040513d60208110156137ad57600080fd5b5051600c5460408051630869624160e31b81526004810187905290519293506000926001600160a01b039092169163434b120891602480820192602092909190829003018186803b15801561380157600080fd5b505afa158015613815573d6000803e3d6000fd5b505050506040513d602081101561382b57600080fd5b505190506001600160d81b0319808216908316141561384f5760019250505061106c565b600d5460408051630b9d0f3560e31b81526001600160d81b03198416600482015290516001600160a01b0390921691635ce879a891602480820192602092909190829003018186803b1580156138a457600080fd5b505afa1580156138b8573d6000803e3d6000fd5b505050506040513d60208110156138ce57600080fd5b50511515949350505050565b6138e2611ead565b15613934576040805162461bcd60e51b815260206004820152601b60248201527f4368696c64207472616e73666572207768696c65207061757365640000000000604482015290519081900360640190fd5b6001600160a01b0382166000908152601060209081526040808320848452909152902054806139945760405162461bcd60e51b8152600401808060200182810382526034815260200180615bb26034913960400191505060405180910390fd5b600919018481146139d65760405162461bcd60e51b81526004018080602001828103825260248152602001806158376024913960400191505060405180910390fd5b6001600160a01b038416613a31576040805162461bcd60e51b815260206004820152601860248201527f5472616e7366657220746f207a65726f20616464726573730000000000000000604482015290519081900360640190fd5b6000613a3c86611de3565b90506001600160a01b038116613a50613be5565b6001600160a01b03161480613a855750613a68613be5565b6001600160a01b0316613a7a87611107565b6001600160a01b0316145b80613a9c5750613a9c81613a97613be5565b614c00565b613ad75760405162461bcd60e51b81526004018080602001828103825260348152602001806158e86034913960400191505060405180910390fd5b505050505050565b6000838152600f602090815260408083206001600160a01b03861684529091529020613b0b9082614ca8565b613b5c576040805162461bcd60e51b815260206004820152601e60248201527f4368696c6420746f6b656e206e6f74206f776e656420627920746f6b656e0000604482015290519081900360640190fd5b6000838152600f602090815260408083206001600160a01b03861684529091529020613b889082614cb4565b506001600160a01b03821660008181526010602090815260408083208584528252808320839055868352600f825280832093835292905220613bc9906142c5565b611367576000838152600e6020526040902061299e9083614cc0565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613c1e82611ebd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113848383614cd5565b016014015190565b600081826020011015613cba576040805162461bcd60e51b8152602060048201526012602482015271746f55696e743235365f6f766572666c6f7760701b604482015290519081900360640190fd5b8160200183511015613d0b576040805162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015290519081900360640190fd5b50016020015190565b600d5460408051633f8a519160e21b81526004810185905290516000926001600160a01b03169163fe294644916024808301926020929190829003018186803b158015613d6057600080fd5b505afa158015613d74573d6000803e3d6000fd5b505050506040513d6020811015613d8a57600080fd5b5051600c5460408051630869624160e31b81526004810186905290516001600160d81b0319909316926001600160a01b039092169163434b120891602480820192602092909190829003018186803b158015613de557600080fd5b505afa158015613df9573d6000803e3d6000fd5b505050506040513d6020811015613e0f57600080fd5b50516001600160d81b0319161461409157600b546040805163fc810d7d60e01b81526004810186905290516001600160a01b039092169163fc810d7d91602480820192602092909190829003018186803b158015613e6c57600080fd5b505afa158015613e80573d6000803e3d6000fd5b505050506040513d6020811015613e9657600080fd5b5051613ed35760405162461bcd60e51b815260040180806020018281038252603c815260200180615c6e603c913960400191505060405180910390fd5b600b546040805163eda84ca160e01b81526004810186905290516001600160a01b039092169163eda84ca191602480820192602092909190829003018186803b158015613f1f57600080fd5b505afa158015613f33573d6000803e3d6000fd5b505050506040513d6020811015613f4957600080fd5b5051600d5460408051633f8a519160e21b81526004810187905290519294506001600160a01b039091169163fe29464491602480820192602092909190829003018186803b158015613f9a57600080fd5b505afa158015613fae573d6000803e3d6000fd5b505050506040513d6020811015613fc457600080fd5b5051600c5460408051630869624160e31b81526004810186905290516001600160d81b0319909316926001600160a01b039092169163434b120891602480820192602092909190829003018186803b15801561401f57600080fd5b505afa158015614033573d6000803e3d6000fd5b505050506040513d602081101561404957600080fd5b50516001600160d81b031916146140915760405162461bcd60e51b8152600401808060200182810382526034815260200180615c3a6034913960400191505060405180910390fd5b600d5460408051636f074d1f60e11b81526004810186905290516001600160a01b039092169163de0e9a3e9160248082019260009290919082900301818387803b1580156140de57600080fd5b505af11580156140f2573d6000803e3d6000fd5b5050505061170884836142d0565b630a85bd0160e11b949350505050565b614118611ead565b1561416a576040805162461bcd60e51b815260206004820152601b60248201527f4368696c64207265636569766564207768696c65207061757365640000000000604482015290519081900360640190fd5b614173836148ec565b6141ae5760405162461bcd60e51b815260040180806020018281038252602c81526020018061585b602c913960400191505060405180910390fd5b6000838152600f602090815260408083206001600160a01b038616845290915290206141da9082614ca8565b156142165760405162461bcd60e51b815260040180806020018281038252603f8152602001806158a9603f913960400191505060405180910390fd5b6000838152600e6020526040902061422e9083614d39565b506000838152600f602090815260408083206001600160a01b0386168452909152902061425b9082614d4e565b506001600160a01b038083166000818152601060209081526040808320868452825291829020600a880190558151858152915192938793908916927f0371ddf2288ad1ba92626a7e31c86a9d006e592cfe57d7d946ef08b13457c08b92908290030190a450505050565b600061138782614d5a565b60006142da611ead565b1561432c576040805162461bcd60e51b815260206004820152601b60248201527f417474656d707465642077726170207768696c65207061757365640000000000604482015290519081900360640190fd5b6143368383614d5e565b61433e613be5565b6001600160a01b03167f166a86c03a6732f4f3ef16e479711bbe434ae08a4d9adcfd0beb04d8ea4762f7836040518082815260200191505060405180910390a250919050565b600061438f8261371d565b6143ca5760405162461bcd60e51b815260040180806020018281038252602c8152602001806159be602c913960400191505060405180910390fd5b60006143d583611ebd565b9050806001600160a01b0316846001600160a01b031614806144105750836001600160a01b031661440584611107565b6001600160a01b0316145b806133ef57506133ef8185614c00565b614429816148ec565b1561443e57614439838383614e8c565b611367565b6001600160a01b0382166144835760405162461bcd60e51b81526004018080602001828103825260248152602001806159746024913960400191505060405180910390fd5b6001600160a01b038216301415614498578291505b600d54600c5460408051630869624160e31b81526004810185905290516000936001600160a01b0390811693635ce879a89391169163434b120891602480820192602092909190829003018186803b1580156144f357600080fd5b505afa158015614507573d6000803e3d6000fd5b505050506040513d602081101561451d57600080fd5b5051604080516001600160e01b031960e085901b1681526001600160d81b03199092166004830152516024808301926020929190829003018186803b15801561456557600080fd5b505afa158015614579573d6000803e3d6000fd5b505050506040513d602081101561458f57600080fd5b5051600d549091506001600160a01b031663b88d4fde8530846145b187614921565b6145ba8961494b565b6040516020018083805190602001908083835b602083106145ec5780518252601f1990920191602091820191016145cd565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106146345780518252601f199092019160209182019101614615565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156146d95781810151838201526020016146c1565b50505050905090810190601f1680156147065780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561472857600080fd5b505af115801561473c573d6000803e3d6000fd5b5050600b54604080516001622546f760e01b031981526004810186905290516001600160a01b03909216935063ffdab909925060248082019260009290919082900301818387803b158015612a0857600080fd5b60006001600160a01b0382166147d75760405162461bcd60e51b815260040180806020018281038252602a815260200180615a78602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020611387906142c5565b6001600160a01b03821660009081526001602052604081206113849083613c57565b614822611ead565b61486a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6148a0613be5565b604080516001600160a01b039092168252519081900360200190a1565b60008080806148cc8686614fd8565b9097909650945050505050565b805161104a90600990602084019061571e565b6000611387600283614ca8565b600061138782604051806060016040528060298152602001615aa26029913960029190615053565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6040805160609290921b6bffffffffffffffffffffffff19166020830152805160148184030181526034909201905290565b614985611ead565b156149ca576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586148a0613be5565b614a11848484614420565b614a1d84848484615060565b61299e5760405162461bcd60e51b815260040180806020018281038252603281526020018061591c6032913960400191505060405180910390fd5b606081614a7d57506040805180820190915260018152600360fc1b602082015261106c565b8160005b8115614a9557600101600a82049150614a81565b60608167ffffffffffffffff81118015614aae57600080fd5b506040519080825280601f01601f191660200182016040528015614ad9576020820181803683370190505b50859350905060001982015b8315614b2a57600a840660300160f81b82828060019003935081518110614b0857fe5b60200101906001600160f81b031916908160001a905350600a84049350614ae5565b50949350505050565b6000614b3e826148f9565b9050614b4c81600084611367565b614b57600083613be9565b6000828152600860205260409020546002600019610100600184161502019091160415614b95576000828152600860205260408120614b959161579c565b6001600160a01b0381166000908152600160205260409020614bb79083614cb4565b50614bc36002836151c8565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160a01b038216600090815260106020908152604080832084845290915281205480614c8e5760405162461bcd60e51b8152600401808060200182810382526033815260200180615a0d6033913960400191505060405180910390fd5b614c9b6009198201611ebd565b9150600919019250929050565b600061138483836151d4565b600061138483836151ec565b6000611384836001600160a01b0384166151ec565b81546000908210614d175760405162461bcd60e51b81526004018080602001828103825260228152602001806158876022913960400191505060405180910390fd5b826000018281548110614d2657fe5b9060005260206000200154905092915050565b6000611384836001600160a01b0384166152b2565b600061138483836152b2565b5490565b6001600160a01b038216614db9576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b614dc2816148ec565b15614e14576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b614e2060008383611367565b6001600160a01b0382166000908152600160205260409020614e429082614d4e565b50614e4f600282846152fc565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316614e9f826148f9565b6001600160a01b031614614ee45760405162461bcd60e51b8152600401808060200182810382526029815260200180615b396029913960400191505060405180910390fd5b6001600160a01b038216614f295760405162461bcd60e51b81526004018080602001828103825260248152602001806159746024913960400191505060405180910390fd5b614f34838383611367565b614f3f600082613be9565b6001600160a01b0383166000908152600160205260409020614f619082614cb4565b506001600160a01b0382166000908152600160205260409020614f849082614d4e565b50614f91600282846152fc565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b81546000908190831061501c5760405162461bcd60e51b8152600401808060200182810382526022815260200180615acb6022913960400191505060405180910390fd5b600084600001848154811061502d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000611708848484615312565b6000615074846001600160a01b03166153dc565b615080575060016133ef565b606061518e630a85bd0160e11b615095613be5565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156150fc5781810151838201526020016150e4565b50505050905090810190601f1680156151295780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161591c603291396001600160a01b03881691906153e2565b905060008180602001905160208110156151a757600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b600061138483836153f1565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156152a8578354600019808301919081019060009087908390811061521f57fe5b906000526020600020015490508087600001848154811061523c57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061526c57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611387565b6000915050611387565b60006152be83836151d4565b6152f457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611387565b506000611387565b600061170884846001600160a01b0385166154c5565b600082815260018401602052604081205482816153ad5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561537257818101518382015260200161535a565b50505050905090810190601f16801561539f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106153c057fe5b9060005260206000209060020201600101549150509392505050565b3b151590565b6060611708848460008561555c565b600081815260018301602052604081205480156152a8578354600019808301919081019060009087908390811061542457fe5b906000526020600020906002020190508087600001848154811061544457fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061548357fe5b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506113879350505050565b60008281526001840160205260408120548061552a57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561170b565b8285600001600183038154811061553d57fe5b906000526020600020906002020160010181905550600091505061170b565b60608247101561559d5760405162461bcd60e51b81526004018080602001828103825260268152602001806159986026913960400191505060405180910390fd5b6155a6856153dc565b6155f7576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106156365780518252601f199092019160209182019101615617565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615698576040519150601f19603f3d011682016040523d82523d6000602084013e61569d565b606091505b50915091506156ad8282866156b8565b979650505050505050565b606083156156c757508161170b565b8251156156d75782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561537257818101518382015260200161535a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061575f57805160ff191683800117855561578c565b8280016001018555821561578c579182015b8281111561578c578251825591602001919060010190615771565b506157989291506157dc565b5090565b50805460018160011615610100020316600290046000825580601f106157c25750611eaa565b601f016020900490600052602060002090810190611eaa91905b5b8082111561579857600081556001016157dd56fe5f64617461206d75737420636f6e7461696e207468652075696e7432353620746f6b656e496420746f207472616e7366657220746865206368696c6420746f6b656e20746f54686174204d6f6f6e43617420646f6573206e6f74206f776e207468617420617373657454686174204d6f6f6e436174206973206e6f74207772617070656420696e207468697320636f6e7472616374456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647343616e6e6f742072656365697665206368696c6420746f6b656e20626563617573652069742068617320616c7265616479206265656e2072656365697665644e6f7420616c6c6f77656420746f207472616e73666572206368696c6420617373657473206f662074686174204d6f6f6e4361744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e6e6f742066696e6420746f6b656e20494420666f72207468617420696e64657854686174206368696c64206973206e6f74206f776e6564206279206120746f6b656e20696e207468697320636f6e74726163744552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724368696c64206173736574206973206e6f74206f776e6564206279206120746f6b656e20696e207468697320636f6e74726163744552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e76616c69642064657374696e6174696f6e206f776e6572207370656369666965645f6f6c64546f6b656e494420616e64205f7265736375654f7264657220646f206e6f74206d617463682073616d65206361744944556e61626c6520746f2064657465726d696e652070726f706572207265736375654f7264657220666f722074686973206f6c6420746f6b656e204944a2646970667358221220251ac846f30c3f8670931a84363405e0e669c76fc7152e3f66811a9a43c9e00864736f6c63430007030033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f6170692e6d6f6f6e6361742e636f6d6d756e6974792f7472616974732f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.mooncat.community/traits/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f6170692e6d6f6f6e6361742e636f6d6d756e6974792f7472
Arg [3] : 616974732f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1126:29939:18:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16857:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16857:179:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16857:179:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16857:179:18;;-1:-1:-1;16857:179:18;;-1:-1:-1;;;;;16857:179:18:i;:::-;;999:150:1;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;999:150:1;-1:-1:-1;;;;;;999:150:1;;:::i;:::-;;;;;;;;;;;;;;;;;;4903:100:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8139:221;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8139:221:20;;:::i;:::-;;;;-1:-1:-1;;;;;8139:221:20;;;;;;;;;;;;;;29226:618:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29226:618:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29226:618:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29226:618:18;;;;;;;;;;-1:-1:-1;29226:618:18;;-1:-1:-1;29226:618:18;-1:-1:-1;29226:618:18;:::i;14821:531::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14821:531:18;;;;;;;;:::i;30258:221::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30258:221:18;;;;;;;:::i;8892:1939::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8892:1939:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8892:1939:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8892:1939:18;;;;;;;;;;-1:-1:-1;8892:1939:18;;-1:-1:-1;8892:1939:18;-1:-1:-1;8892:1939:18;:::i;:::-;;;;-1:-1:-1;;;;;;8892:1939:18;;;;;;;;;;;;;;30849:213;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30849:213:18;;;-1:-1:-1;;;;;30849:213:18;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7147:211:20;;;;;;;;;;;;;:::i;4099:451:18:-;;;;;;;;;;;;;;;;-1:-1:-1;4099:451:18;;:::i;26891:488::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26891:488:18;;;-1:-1:-1;;;;;26891:488:18;;;;;;;;;;;;;;;;;;;:::i;9029:305:20:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9029:305:20;;;;;;;;;;;;;;;;;:::i;1486:43:18:-;;;;;;;;;;;;;:::i;11720:1047::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11720:1047:18;;;;;;;;:::i;30573:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30573:181:18;;;;;;-1:-1:-1;;;;;30573:181:18;;:::i;2131:76::-;;;;;;;;;;;;;:::i;9405:151:20:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9405:151:20;;;;;;;;;;;;;;;;;:::i;22979:193:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22979:193:18;;:::i;16488:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16488:175:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;16488:175:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16488:175:18;;-1:-1:-1;16488:175:18;;-1:-1:-1;;;;;16488:175:18:i;7435:172:20:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7435:172:20;;:::i;10957:107:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10957:107:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10957:107:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10957:107:18;;-1:-1:-1;10957:107:18;;-1:-1:-1;;;;;10957:107:18:i;1090:86:13:-;;;;;;;;;;;;;:::i;12827:780:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12827:780:18;;:::i;15740:558::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15740:558:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15740:558:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15740:558:18;;;;;;;;-1:-1:-1;15740:558:18;;-1:-1:-1;;;;;15740:558:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;15740:558:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15740:558:18;;-1:-1:-1;15740:558:18;;-1:-1:-1;;;;;15740:558:18:i;6278:97:20:-;;;;;;;;;;;;;:::i;11284:195:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11284:195:18;-1:-1:-1;;;;;11284:195:18;;:::i;1770:148:0:-;;;;;;;;;;;;;:::i;2050:75:18:-;;;;;;;;;;;;;:::i;27464:526::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27464:526:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27464:526:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27464:526:18;;;;;;;;;;-1:-1:-1;27464:526:18;;-1:-1:-1;27464:526:18;-1:-1:-1;27464:526:18;:::i;1119:87:0:-;;;;;;;;;;;;;:::i;29972:188:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29972:188:18;;:::i;5072:104:20:-;;;;;;;;;;;;;:::i;8432:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8432:295:20;;;;;;;;;;:::i;9627:285::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9627:285:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9627:285:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9627:285:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9627:285:20;;-1:-1:-1;9627:285:20;;-1:-1:-1;;;;;9627:285:20:i;21107:321:18:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21107:321:18;;;;;;;;;;;;;;;;;;;;:::i;28071:1066::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28071:1066:18;;;-1:-1:-1;;;;;28071:1066:18;;;;;;;;;;;;;;;;;;;:::i;5247:792:20:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5247:792:20;;:::i;6746:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6746:325:20;-1:-1:-1;;;;;6746:325:20;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4893:479:18;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4893:479:18;;:::i;13678:437::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13678:437:18;;;;;;;;;;:::i;3127:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3127:258:18;;:::i;22393:507::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22393:507:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23256:1310;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23256:1310:18;;;;;;;;:::i;2073:244:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2073:244:0;-1:-1:-1;;;;;2073:244:0;;:::i;16857:179:18:-;16933:8;16928:101;16951:13;:20;16947:1;:24;;;16928:101;;;16993:24;17000:13;17014:1;17000:16;;;;;;;;;;;;;;;;16993:6;:24::i;:::-;-1:-1:-1;16973:3:18;;16928:101;;;;16857:179;:::o;999:150:1:-;-1:-1:-1;;;;;;1108:33:1;;1084:4;1108:33;;;;;;;;;;;;;999:150;;;;:::o;4903:100:20:-;4990:5;4983:12;;;;;;;;-1:-1:-1;;4983:12:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4957:13;;4983:12;;4990:5;;4983:12;;4990:5;4983:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4903:100;:::o;8139:221::-;8215:7;8243:16;8251:7;8243;:16::i;:::-;8235:73;;;;-1:-1:-1;;;8235:73:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8328:24:20;;;;:15;:24;;;;;;-1:-1:-1;;;;;8328:24:20;;8139:221::o;29226:618:18:-;29477:77;29497:12;29511:11;29524:14;29540:13;29477:19;:77::i;:::-;29565:57;29578:12;29592:14;29608:13;29565:12;:57::i;:::-;29655:14;-1:-1:-1;;;;;29633:54:18;;29696:4;29703:11;29716:10;29728:13;29743:5;;29633:116;;;;;;;;;;;;;-1:-1:-1;;;;;29633:116:18;;;;;;-1:-1:-1;;;;;29633:116:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29806:14;-1:-1:-1;;;;;29765:71:18;29793:11;-1:-1:-1;;;;;29765:71:18;29779:12;29765:71;29822:13;29765:71;;;;;;;;;;;;;;;;;;29226:618;;;;;;;:::o;14821:531::-;14896:14;14913:17;14921:8;14913:7;:17::i;:::-;14896:34;;14956:6;-1:-1:-1;;;;;14949:13:18;:3;-1:-1:-1;;;;;14949:13:18;;;14941:59;;;;-1:-1:-1;;;14941:59:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15176:6;-1:-1:-1;;;;;15160:22:18;:12;:10;:12::i;:::-;-1:-1:-1;;;;;15160:22:18;;:64;;;;15186:38;15203:6;15211:12;:10;:12::i;:::-;15186:16;:38::i;:::-;15138:170;;;;-1:-1:-1;;;15138:170:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15321:23;15330:3;15335:8;15321;:23::i;:::-;14821:531;;;:::o;30258:221::-;30390:21;30436:24;;;:14;:24;;;;;:35;;30464:6;30436:27;:35::i;:::-;30429:42;;30258:221;;;;;:::o;8892:1939::-;9099:6;9276:10;9298:42;9276:65;9272:863;;;9525:11;9573:7;9557:23;;;;;:66;;;9621:1;-1:-1:-1;;;;;9584:39:18;:25;9599:5;;9584:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9606:2:18;;-1:-1:-1;9584:14:18;;-1:-1:-1;;9584:25:18:i;:::-;-1:-1:-1;;;;;9584:39:18;;;9557:66;9556:146;;9697:5;9556:146;;;9648:25;9663:5;;9648:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9670:2:18;;-1:-1:-1;9648:14:18;;-1:-1:-1;;9648:25:18:i;:::-;9525:177;-1:-1:-1;;;;;;9743:17:18;;;;;;:41;;-1:-1:-1;;;;;;9764:20:18;;9779:4;9764:20;;9743:41;9717:138;;;;-1:-1:-1;;;9717:138:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9872:162;9921:3;9943:11;9990:2;9974:18;;;9973:46;;10018:1;9973:46;;;9996:19;10006:5;;9996:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9996:19:18;-1:-1:-1;9996:9:18;;-1:-1:-1;;9996:19:18:i;:::-;9872:30;:162::i;:::-;;10056:67;10086:9;10097:5;10104:11;10117:5;;10056:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10056:29:18;;-1:-1:-1;;;10056:67:18:i;:::-;10049:74;;;;;9272:863;10210:16;10202:98;;;;-1:-1:-1;;;10202:98:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10468:3;10455:17;10502:2;10487:17;;10483:93;;;10563:1;10548:16;;10542:3;:22;10531:33;10483:93;10586:54;10600:5;10607:7;10616:10;10628:11;10586:13;:54::i;:::-;10710:1;-1:-1:-1;;;;;10659:53:18;10666:10;-1:-1:-1;;;;;10659:26:18;;10686:11;10659:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10659:39:18;-1:-1:-1;;;;;10659:53:18;;;10651:87;;;;;-1:-1:-1;;;10651:87:18;;;;;;;;;;;;-1:-1:-1;;;10651:87:18;;;;;;;;;;;;;;;10756:67;10786:9;10797:5;10804:11;10817:5;;10756:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10756:29:18;;-1:-1:-1;;;10756:67:18:i;:::-;10749:74;;;8892:1939;;;;;;;;:::o;30849:213::-;30966:20;31006:21;;;:11;:21;;;;;;;;-1:-1:-1;;;;;31006:37:18;;;;;;;;;:48;;31047:6;31006:40;:48::i;:::-;30999:55;;30849:213;;;;;;:::o;7147:211:20:-;7208:7;7329:21;:12;:19;:21::i;:::-;7322:28;;7147:211;:::o;4099:451:18:-;4200:3;;:29;;;-1:-1:-1;;;4200:29:18;;;;;;;;;;4165:7;;;;-1:-1:-1;;;;;4200:3:18;;;;:15;;:29;;;;;;;;;;;;;;;:3;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4200:29:18;4283:3;;:25;;;-1:-1:-1;;;4283:25:18;;-1:-1:-1;;;;;;4283:25:18;;;;;;;;4200:29;;-1:-1:-1;4241:11:18;;;;-1:-1:-1;;;;;4283:3:18;;:18;;:25;;;;;;;;;;;;;;:3;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4283:25:18;;;;;;;;;-1:-1:-1;4283:25:18;-1:-1:-1;;;;;;4341:25:18;;;:35;;;;;4370:6;4341:35;4319:113;;;;;-1:-1:-1;;;4319:113:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;4443:3;;:48;;;-1:-1:-1;;;4443:48:18;;-1:-1:-1;;;;;;4443:48:18;;;;;;;;-1:-1:-1;;;;;4443:3:18;;;;:23;;4474:9;;4443:48;;;;;:3;;:48;;;;;;;4474:9;4443:3;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4509:33;4515:12;:10;:12::i;:::-;4529;4509:5;:33::i;26891:488::-;27070:69;27090:12;27104:3;27109:14;27125:13;27070:19;:69::i;:::-;27150:57;27163:12;27177:14;27193:13;27150:12;:57::i;:::-;27218:74;;;-1:-1:-1;;;27218:74:18;;27266:4;27218:74;;;;-1:-1:-1;;;;;27218:74:18;;;;;;;;;;;;;;;:39;;;;;;:74;;;;;-1:-1:-1;;27218:74:18;;;;;;;;-1:-1:-1;27218:39:18;:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27341:14;-1:-1:-1;;;;;27308:63:18;27336:3;-1:-1:-1;;;;;27308:63:18;27322:12;27308:63;27357:13;27308:63;;;;;;;;;;;;;;;;;;26891:488;;;;:::o;9029:305:20:-;9190:41;9209:12;:10;:12::i;:::-;9223:7;9190:18;:41::i;:::-;9182:103;;;;-1:-1:-1;;;9182:103:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9298:28;9308:4;9314:2;9318:7;9298:9;:28::i;1486:43:18:-;;;-1:-1:-1;;;;;1486:43:18;;:::o;11720:1047::-;11847:7;11872:20;11895:23;11911:6;11895:15;:23::i;:::-;11872:46;;11942:12;11933:6;:21;11929:199;;;12075:41;12101:6;12109;12075:25;:41::i;:::-;12068:48;;;;;11929:199;12224:17;12261:9;12256:448;12280:8;;:26;;;-1:-1:-1;;;12280:26:18;;-1:-1:-1;;;;;12280:26:18;;;;;;;;;:8;;;;;:18;;:26;;;;;;;;;;;;;;:8;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12280:26:18;12276:30;;12256:448;;;12349:8;;:39;;;-1:-1:-1;;;12349:39:18;;-1:-1:-1;;;;;12349:39:18;;;;;;;;;;;;;;;12328:18;;12349:8;;;;;:28;;:39;;;;;;;;;;;;;;;:8;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12349:39:18;12407:17;;:46;;;-1:-1:-1;;;12407:46:18;;;;;;;;;;12349:39;;-1:-1:-1;;;;;;12407:17:18;;;;:34;;:46;;;;;12349:39;;12407:46;;;;;;;;:17;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12407:46:18;12403:290;;;12474:12;;;;;12523:21;;;:25;12509:39;;;;12505:173;;;12605:17;;:53;;;-1:-1:-1;;;12605:53:18;;;;;;;;;;-1:-1:-1;;;;;12605:17:18;;;;:41;;:53;;;;;;;;;;;;;;;:17;:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:53:18;;-1:-1:-1;12573:85:18;;-1:-1:-1;;;;12573:85:18;12505:173;-1:-1:-1;12308:3:18;;12256:448;;;;12714:45;;-1:-1:-1;;;12714:45:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30573:181;30673:7;30700:21;;;:11;:21;;;;;;;;-1:-1:-1;;;;;30700:37:18;;;;;;;;;:46;;:44;:46::i;2131:76::-;1693:8:13;:6;:8::i;:::-;1685:41;;;;;-1:-1:-1;;;1685:41:13;;;;;;;;;;;;-1:-1:-1;;;1685:41:13;;;;;;;;;;;;;;;1350:12:0::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1339:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;1339:23:0::1;;1331:68;;;::::0;;-1:-1:-1;;;1331:68:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;1331:68:0;;;;;;;;;;;;;::::1;;2189:10:18::2;:8;:10::i;:::-;2131:76::o:0;9405:151:20:-;9509:39;9526:4;9532:2;9536:7;9509:39;;;;;;;;;;;;:16;:39::i;22979:193:18:-;23084:17;23126:38;23151:1;23155:8;23126:16;:38::i;16488:175::-;16562:8;16557:99;16580:13;:20;16576:1;:24;;;16557:99;;;16622:22;16627:13;16641:1;16627:16;;;;;;;;;;;;;;;;16622:4;:22::i;:::-;-1:-1:-1;16602:3:18;;16557:99;;7435:172:20;7510:7;;7552:22;:12;7568:5;7552:15;:22::i;:::-;-1:-1:-1;7530:44:20;7435:172;-1:-1:-1;;;7435:172:20:o;10957:107:18:-;1350:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1339:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1339:23:0;;1331:68;;;;;-1:-1:-1;;;1331:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1331:68:0;;;;;;;;;;;;;;;11032:24:18::1;11044:11;11032;:24::i;:::-;10957:107:::0;:::o;1090:86:13:-;1161:7;;-1:-1:-1;;;1161:7:13;;;;;1090:86::o;12827:780:18:-;12892:7;12916:23;12930:8;12916:13;:23::i;:::-;12912:86;;;12963:23;12977:8;12963:13;:23::i;:::-;12956:30;;;;12912:86;13176:3;;:25;;;-1:-1:-1;;;13176:25:18;;;;;;;;;;13153:20;;-1:-1:-1;;;;;13176:3:18;;:15;;:25;;;;;;;;;;;;;;:3;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13176:25:18;13233:8;;:27;;;-1:-1:-1;;;13233:27:18;;:8;:27;;;;;;13176:25;;-1:-1:-1;;;;;;13233:8:18;;;;:24;;:27;;;;;13176:25;;13233:27;;;;;;;;:8;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13233:27:18;-1:-1:-1;;;;;;13216:44:18;;;;;;13212:103;;;13284:8;;:19;;;-1:-1:-1;;;13284:19:18;;:8;:19;;;;;;-1:-1:-1;;;;;13284:8:18;;;;:16;;:19;;;;;;;;;;;;;;;:8;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13284:19:18;;-1:-1:-1;13277:26:18;;-1:-1:-1;13277:26:18;13212:103;13343:8;;:39;;;-1:-1:-1;;;13343:39:18;;-1:-1:-1;;;;;;13343:39:18;;;;;;;;13325:15;;-1:-1:-1;;;;;13343:8:18;;:24;;:39;;;;;;;;;;;;;;:8;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13343:39:18;;-1:-1:-1;13513:11:18;13505:51;;;;;-1:-1:-1;;;13505:51:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;13574:8;;:25;;;-1:-1:-1;;;13574:25:18;;;;;;;;;;-1:-1:-1;;;;;13574:8:18;;;;:16;;:25;;;;;;;;;;;;;;;:8;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13574:25:18;;12827:780;-1:-1:-1;;;;12827:780:18:o;15740:558::-;15872:8;15867:424;15890:13;:20;15886:1;:24;;;15867:424;;;15949:8;;15966:15;;15932:14;;-1:-1:-1;;;;;15949:8:18;;:16;;15966:12;;:15;;;;;;;;;;;;;;;;15949:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15949:33:18;15997:8;;16098:15;;15949:33;;-1:-1:-1;;;;;;15997:8:18;;:25;;15949:33;;16074:4;;16098:12;;:15;;;;;;;;;;;;;;;;16171:29;16183:13;16197:1;16183:16;;;;;;;;;;;;;;;;16171:11;:29::i;:::-;16223:22;16238:6;16223:14;:22::i;:::-;16132:132;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16132:132:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16132:132:18;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16132:132:18;;;;;;;;;;;;;-1:-1:-1;;16132:132:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15997:282;;;;;;;;;;;;;-1:-1:-1;;;;;15997:282:18;;;;;;-1:-1:-1;;;;;15997:282:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15912:3:18;;;;;-1:-1:-1;15867:424:18;;-1:-1:-1;;15867:424:18;6278:97:20;6359:8;6352:15;;;;;;;;-1:-1:-1;;6352:15:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6326:13;;6352:15;;6359:8;;6352:15;;6359:8;6352:15;;;;;;;;;;;;;;;;;;;;;;;;11284:195:18;11428:17;;:43;;;-1:-1:-1;;;11428:43:18;;-1:-1:-1;;;;;11428:43:18;;;;;;;;;11349:7;;11428:17;;;;;:35;;:43;;;;;;;;;;;;;;;:17;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11428:43:18;11389:23;11405:6;11389:15;:23::i;:::-;:82;;11284:195;-1:-1:-1;;11284:195:18:o;1770:148:0:-;1350:12;:10;:12::i;:::-;-1:-1:-1;;;;;1339:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1339:23:0;;1331:68;;;;;-1:-1:-1;;;1331:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1331:68:0;;;;;;;;;;;;;;;1861:6:::1;::::0;1840:40:::1;::::0;1877:1:::1;::::0;-1:-1:-1;;;;;1861:6:0::1;::::0;1840:40:::1;::::0;1877:1;;1840:40:::1;1891:6;:19:::0;;-1:-1:-1;;;;;;1891:19:0::1;::::0;;1770:148::o;2050:75:18:-;1416:8:13;:6;:8::i;:::-;1415:9;1407:38;;;;;-1:-1:-1;;;1407:38:13;;;;;;;;;;;;-1:-1:-1;;;1407:38:13;;;;;;;;;;;;;;;1350:12:0::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1339:23:0::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;1339:23:0::1;;1331:68;;;::::0;;-1:-1:-1;;;1331:68:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;1331:68:0;;;;;;;;;;;;;::::1;;2109:8:18::2;:6;:8::i;27464:526::-:0;27674:69;27694:12;27708:3;27713:14;27729:13;27674:19;:69::i;:::-;27754:57;27767:12;27781:14;27797:13;27754:12;:57::i;:::-;27829:14;-1:-1:-1;;;;;27822:39:18;;27870:4;27877:3;27882:13;27897:5;;27822:81;;;;;;;;;;;;;-1:-1:-1;;;;;27822:81:18;;;;;;-1:-1:-1;;;;;27822:81:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27952:14;-1:-1:-1;;;;;27919:63:18;27947:3;-1:-1:-1;;;;;27919:63:18;27933:12;27919:63;27968:13;27919:63;;;;;;;;;;;;;;;;;;27464:526;;;;;;:::o;1119:87:0:-;1192:6;;-1:-1:-1;;;;;1192:6:0;1119:87;:::o;29972:188:18:-;30087:7;30119:24;;;:14;:24;;;;;:33;;:31;:33::i;5072:104:20:-;5161:7;5154:14;;;;;;;;-1:-1:-1;;5154:14:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5128:13;;5154:14;;5161:7;;5154:14;;5161:7;5154:14;;;;;;;;;;;;;;;;;;;;;;;;8432:295;8547:12;:10;:12::i;:::-;-1:-1:-1;;;;;8535:24:20;:8;-1:-1:-1;;;;;8535:24:20;;;8527:62;;;;;-1:-1:-1;;;8527:62:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;8647:8;8602:18;:32;8621:12;:10;:12::i;:::-;-1:-1:-1;;;;;8602:32:20;;;;;;;;;;;;;;;;;-1:-1:-1;8602:32:20;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;8602:53:20;;;;;;;;;;;8686:12;:10;:12::i;:::-;-1:-1:-1;;;;;8671:48:20;;8710:8;8671:48;;;;;;;;;;;;;;;;;;;;8432:295;;:::o;9627:285::-;9759:41;9778:12;:10;:12::i;:::-;9792:7;9759:18;:41::i;:::-;9751:103;;;;-1:-1:-1;;;9751:103:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9865:39;9879:4;9885:2;9889:7;9898:5;9865:13;:39::i;:::-;9627:285;;;;:::o;21107:321:18:-;21275:61;21289:5;21296:8;21306:14;21322:13;21275;:61::i;:::-;21347:73;;;-1:-1:-1;;;21347:73:18;;-1:-1:-1;;;;;21347:73:18;;;;;;;21399:4;21347:73;;;;;;;;;;;;:36;;;;;;:73;;;;;-1:-1:-1;;21347:73:18;;;;;;;;-1:-1:-1;21347:36:18;:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21107:321;;;;:::o;28071:1066::-;28246:69;28266:12;28280:3;28285:14;28301:13;28246:19;:69::i;:::-;28326:57;28339:12;28353:14;28369:13;28326:12;:57::i;:::-;28778:55;;;28813:4;28778:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28778:55:18;-1:-1:-1;;;28778:55:18;;;28758:76;;;;28723:12;;28737:17;;-1:-1:-1;;;;;28758:19:18;;;28778:55;;28758:76;;;;;;28778:55;28758:76;;;;;;;;;;-1:-1:-1;;28758:76:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28722:112;;;;28867:7;:57;;;;-1:-1:-1;28879:11:18;;:16;;:44;;;28910:4;28899:24;;;;;;;;;;;;;;;-1:-1:-1;28899:24:18;28879:44;28845:124;;;;;-1:-1:-1;;;28845:124:18;;;;;;;;;;;;-1:-1:-1;;;28845:124:18;;;;;;;;;;;;;;;28980:70;;;-1:-1:-1;;;28980:70:18;;29024:4;28980:70;;;;-1:-1:-1;;;;;28980:70:18;;;;;;;;;;;;;;;:35;;;;;;:70;;;;;-1:-1:-1;;28980:70:18;;;;;;;;-1:-1:-1;28980:35:18;:70;;;;;;;;;;5247:792:20;5320:13;5354:16;5362:7;5354;:16::i;:::-;5346:76;;;;-1:-1:-1;;;5346:76:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5461:19;;;;:10;:19;;;;;;;;;5435:45;;;;;;-1:-1:-1;;5435:45:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;5461:19;5435:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5491:18;5512:9;:7;:9::i;:::-;5491:30;;5603:4;5597:18;5619:1;5597:23;5593:72;;;-1:-1:-1;5644:9:20;-1:-1:-1;5637:16:20;;5593:72;5769:23;;:27;5765:108;;5844:4;5850:9;5827:33;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5827:33:20;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5827:33:20;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5827:33:20;;;;;;;;;;;;;-1:-1:-1;;5827:33:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5813:48;;;;;;5765:108;6005:4;6011:18;:7;:16;:18::i;:::-;5988:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5988:42:20;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5988:42:20;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5988:42:20;;;;;;;;;;;;;-1:-1:-1;;5988:42:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5974:57;;;;5247:792;;;:::o;6746:325::-;-1:-1:-1;;;;;6877:20:20;;;;;;:13;:20;;;;;6808:16;;;;6877:29;;:27;:29::i;:::-;6863:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6863:44:20;;6837:70;;6923:6;6918:122;-1:-1:-1;;;;;6939:20:20;;;;;;:13;:20;;;;;:29;;:27;:29::i;:::-;6935:1;:33;6918:122;;;-1:-1:-1;;;;;7002:20:20;;;;;;:13;:20;;;;;:26;;7026:1;7002:23;:26::i;:::-;6990:6;6997:1;6990:9;;;;;;;;;;;;;;;;;:38;6970:3;;6918:122;;;-1:-1:-1;7057:6:20;6746:325;-1:-1:-1;;6746:325:20:o;4893:479:18:-;4943:7;4992:12;:10;:12::i;:::-;-1:-1:-1;;;;;4971:33:18;:17;4979:8;4971:7;:17::i;:::-;-1:-1:-1;;;;;4971:33:18;;4963:63;;;;;-1:-1:-1;;;4963:63:18;;;;;;;;;;;;-1:-1:-1;;;4963:63:18;;;;;;;;;;;;;;;5059:23;5073:8;5059:13;:23::i;:::-;5037:117;;;;-1:-1:-1;;;5037:117:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5180:3;;:25;;;-1:-1:-1;;;5180:25:18;;;;;;;;;;5165:12;;-1:-1:-1;;;;;5180:3:18;;:15;;:25;;;;;;;;;;;;;;:3;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5180:25:18;5216:3;;5180:25;;-1:-1:-1;;;;;;5216:3:18;:11;5180:25;5235:17;5243:8;5235:7;:17::i;:::-;5216:37;;;;;;;;;;;;;-1:-1:-1;;;;;5216:37:18;;;;;;;-1:-1:-1;;;;;5216:37:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5264:15;5270:8;5264:5;:15::i;:::-;5325:12;:10;:12::i;:::-;-1:-1:-1;;;;;5295:43:18;;5315:8;5295:43;;;;;;;;;;;;;;;;;;-1:-1:-1;5356:8:18;;4893:479;-1:-1:-1;4893:479:18:o;13678:437::-;13864:17;;:43;;;-1:-1:-1;;;13864:43:18;;-1:-1:-1;;;;;13864:43:18;;;;;;;;;13822:4;;13864:17;;;;;:35;;:43;;;;;;;;;;;;;;;:17;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13864:43:18;:48;:243;;13993:41;14016:6;14024:9;13993:22;:41::i;:::-;:114;;;;-1:-1:-1;14059:8:18;;:48;;;-1:-1:-1;;;14059:48:18;;-1:-1:-1;;;;;14059:48:18;;;;;;;14101:4;14059:48;;;;;;:8;;;;;:25;;:48;;;;;;;;;;;;;;:8;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14059:48:18;13993:114;13864:243;;;13932:41;13955:6;13963:9;13932:22;:41::i;3127:258::-;3214:3;;:29;;;-1:-1:-1;;;3214:29:18;;;;;;;;;;3179:7;;;;-1:-1:-1;;;;;3214:3:18;;;;:15;;:29;;;;;;;;;;;;;;;:3;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3214:29:18;3271:3;;:20;;;-1:-1:-1;;;3271:20:18;;-1:-1:-1;;;;;;3271:20:18;;;;;;;;3214:29;;-1:-1:-1;3254:14:18;;-1:-1:-1;;;;;3271:3:18;;;;:13;;:20;;;;;3214:29;;3271:20;;;;;;;;:3;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3271:20:18;3302:3;;:30;;;-1:-1:-1;;;3302:30:18;;-1:-1:-1;;;;;;3302:30:18;;;;;;;;3271:20;;-1:-1:-1;;;;;;3302:3:18;;;;:23;;:30;;;;;:3;;:30;;;;;;;;:3;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3350:27;3356:6;3364:12;3350:5;:27::i;:::-;3343:34;3127:258;-1:-1:-1;;;;3127:258:18:o;22393:507::-;-1:-1:-1;;;;;22609:31:18;;22528:24;22609:31;;;:15;:31;;;;;;;;:46;;;;;;;;;22674:17;22666:81;;;;-1:-1:-1;;;22666:81:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22810:43;-1:-1:-1;;22818:34:18;;22810:7;:43::i;:::-;-1:-1:-1;;;;;22802:52:18;-1:-1:-1;;;22766:89:18;;-1:-1:-1;;22857:34:18;;;;;-1:-1:-1;22393:507:18;-1:-1:-1;;22393:507:18:o;23256:1310::-;23395:17;;-1:-1:-1;;;;;23469:28:18;;;23465:215;;23550:44;23564:14;23580:13;23550;:44::i;:::-;23514:80;-1:-1:-1;23514:80:18;-1:-1:-1;23465:215:18;;;23646:22;23654:13;23646:7;:22::i;:::-;23627:41;;23465:215;-1:-1:-1;;;;;23757:33:18;;23785:4;23757:33;23750:151;;;23843:46;23857:16;23875:13;23843;:46::i;23750:151::-;23981:64;;;24024:4;23981:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23981:64:18;-1:-1:-1;;;23981:64:18;;;23953:93;;;;23914:16;;23932:17;;-1:-1:-1;;;;;23953:27:18;;;23981:64;;23953:93;;;;;;23981:64;23953:93;;;;;;;;;;-1:-1:-1;;23953:93:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23913:133;;;;24061:4;:11;24076:1;24061:16;24057:88;;24117:4;24106:27;;;;;;;;;;;;;;;-1:-1:-1;24106:27:18;;-1:-1:-1;24057:88:18;24175:4;24160:19;;;;:61;;;;-1:-1:-1;24196:3:18;24183:16;;;1334:66;24183:38;24160:61;24157:402;;;24303:16;;;;;24157:402;-1:-1:-1;;;;;;;24521:25:18;-1:-1:-1;;;24485:62:18;;-1:-1:-1;24478:69:18;;2073:244:0;1350:12;:10;:12::i;:::-;-1:-1:-1;;;;;1339:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1339:23:0;;1331:68;;;;;-1:-1:-1;;;1331:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1331:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;;-1:-1:-1::0;;;2154:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264:6;::::0;2243:38:::1;::::0;-1:-1:-1;;;;;2243:38:0;;::::1;::::0;2264:6:::1;::::0;2243:38:::1;::::0;2264:6:::1;::::0;2243:38:::1;2292:6;:17:::0;;-1:-1:-1;;;;;;2292:17:0::1;-1:-1:-1::0;;;;;2292:17:0;;;::::1;::::0;;;::::1;::::0;;2073:244::o;18505:485:18:-;18572:4;18593:23;18607:8;18593:13;:23::i;:::-;18589:67;;;-1:-1:-1;18640:4:18;18633:11;;18589:67;18746:8;;:27;;;-1:-1:-1;;;18746:27:18;;18721:22;18746:27;;;;;;;;18721:22;;-1:-1:-1;;;;;18746:8:18;;:24;;:27;;;;;;;;;;;;;;;:8;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18746:27:18;18807:3;;:25;;;-1:-1:-1;;;18807:25:18;;;;;;;;;;18746:27;;-1:-1:-1;18784:20:18;;-1:-1:-1;;;;;18807:3:18;;;;:15;;:25;;;;;18746:27;;18807:25;;;;;;;;:3;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18807:25:18;;-1:-1:-1;;;;;;;18847:32:18;;;;;;;18843:76;;;18903:4;18896:11;;;;;;18843:76;18938:8;;:39;;;-1:-1:-1;;;18938:39:18;;-1:-1:-1;;;;;;18938:39:18;;;;;;;;-1:-1:-1;;;;;18938:8:18;;;;:24;;:39;;;;;;;;;;;;;;;:8;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18938:39:18;:44;;;18505:485;-1:-1:-1;;;;18505:485:18:o;25903:903::-;26090:8;:6;:8::i;:::-;26089:9;26081:49;;;;;-1:-1:-1;;;26081:49:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26159:31:18;;26141:15;26159:31;;;:15;:31;;;;;;;;:46;;;;;;;;;26224:11;26216:76;;;;-1:-1:-1;;;26216:76:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26303:29:18;26351:23;;;26343:72;;;;-1:-1:-1;;;26343:72:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26434:17:18;;26426:54;;;;;-1:-1:-1;;;26426:54:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;26491:17;26535:25;26547:12;26535:11;:25::i;:::-;26527:34;-1:-1:-1;;;;;;26596:25:18;;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26596:25:18;;:70;;;;26654:12;:10;:12::i;:::-;-1:-1:-1;;;;;26625:41:18;:25;26637:12;26625:11;:25::i;:::-;-1:-1:-1;;;;;26625:41:18;;26596:70;:122;;;;26670:48;26694:9;26705:12;:10;:12::i;:::-;26670:23;:48::i;:::-;26574:224;;;;-1:-1:-1;;;26574:224:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25903:903;;;;;;:::o;24909:593::-;25037:21;;;;:11;:21;;;;;;;;-1:-1:-1;;;;;25037:37:18;;;;;;;;;:61;;25084:13;25037:46;:61::i;:::-;25015:141;;;;;-1:-1:-1;;;25015:141:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;25200:21;;;;:11;:21;;;;;;;;-1:-1:-1;;;;;25200:37:18;;;;;;;;;:59;;25245:13;25200:44;:59::i;:::-;-1:-1:-1;;;;;;25277:31:18;;;;;;:15;:31;;;;;;;;:46;;;;;;;;25270:53;;;25368:21;;;:11;:21;;;;;:37;;;;;;;:46;;:44;:46::i;:::-;25364:131;;25436:24;;;;:14;:24;;;;;:47;;25468:14;25436:31;:47::i;613:106:10:-;701:10;613:106;:::o;17510:273:20:-;17585:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;17585:29:20;-1:-1:-1;;;;;17585:29:20;;;;;;;;:24;;17745:16;17585:24;17745:7;:16::i;:::-;-1:-1:-1;;;;;17736:39:20;;;;;;;;;;;17510:273;;:::o;7915:158:12:-;7989:7;8040:22;8044:3;8056:5;8040:3;:22::i;31795:174:18:-;31933:25;31946:2;31933:25;31927:32;;31908:58::o;31164:342::-;31234:7;31273:6;31258;31267:2;31258:11;:21;;31250:52;;;;;-1:-1:-1;;;31250:52:18;;;;;;;;;;;;-1:-1:-1;;;31250:52:18;;;;;;;;;;;;;;;31334:6;31343:2;31334:11;31317:6;:13;:28;;31309:62;;;;;-1:-1:-1;;;31309:62:18;;;;;;;;;;;;-1:-1:-1;;;31309:62:18;;;;;;;;;;;;;;;-1:-1:-1;31441:30:18;31457:4;31441:30;31435:37;;31164:342::o;5983:957::-;6215:8;;:37;;;-1:-1:-1;;;6215:37:18;;;;;;;;;;6131:7;;-1:-1:-1;;;;;6215:8:18;;:24;;:37;;;;;;;;;;;;;;:8;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6215:37:18;6169:3;;:29;;;-1:-1:-1;;;6169:29:18;;;;;;;;;;-1:-1:-1;;;;;;6169:83:18;;;;-1:-1:-1;;;;;6169:3:18;;;;:15;;:29;;;;;6215:37;;6169:29;;;;;;;;:3;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6169:29:18;-1:-1:-1;;;;;;6169:83:18;;6151:701;;6361:17;;:47;;;-1:-1:-1;;;6361:47:18;;;;;;;;;;-1:-1:-1;;;;;6361:17:18;;;;:34;;:47;;;;;;;;;;;;;;;:17;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6361:47:18;6335:169;;;;-1:-1:-1;;;6335:169:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6534:17;;:86;;;-1:-1:-1;;;6534:86:18;;;;;;;;;;-1:-1:-1;;;;;6534:17:18;;;;:41;;:86;;;;;;;;;;;;;;;:17;:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6534:86:18;6715:8;;:37;;;-1:-1:-1;;;6715:37:18;;;;;;;;;;6534:86;;-1:-1:-1;;;;;;6715:8:18;;;;:24;;:37;;;;;6534:86;;6715:37;;;;;;;;:8;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6715:37:18;6661:3;;:29;;;-1:-1:-1;;;6661:29:18;;;;;;;;;;-1:-1:-1;;;;;;6661:91:18;;;;-1:-1:-1;;;;;6661:3:18;;;;:15;;:29;;;;;6715:37;;6661:29;;;;;;;;:3;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6661:29:18;-1:-1:-1;;;;;;6661:91:18;;6635:205;;;;-1:-1:-1;;;6635:205:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6862:8;;:28;;;-1:-1:-1;;;6862:28:18;;;;;;;;;;-1:-1:-1;;;;;6862:8:18;;;;:15;;:28;;;;;:8;;:28;;;;;;;;:8;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6908:24;6914:3;6919:12;6908:5;:24::i;557:164:4:-;-1:-1:-1;;;557:164:4;;;;;;:::o;20316:715:18:-;20447:8;:6;:8::i;:::-;20446:9;20438:49;;;;;-1:-1:-1;;;20438:49:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;20506:23;20520:8;20506:13;:23::i;:::-;20498:80;;;;-1:-1:-1;;;20498:80:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20597:21;;;;:11;:21;;;;;;;;-1:-1:-1;;;;;20597:37:18;;;;;;;;;:61;;20644:13;20597:46;:61::i;:::-;:70;20589:146;;;;-1:-1:-1;;;20589:146:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20746:24;;;;:14;:24;;;;;:44;;20775:14;20746:28;:44::i;:::-;-1:-1:-1;20801:21:18;;;;:11;:21;;;;;;;;-1:-1:-1;;;;;20801:37:18;;;;;;;;;:56;;20843:13;20801:41;:56::i;:::-;-1:-1:-1;;;;;;20868:31:18;;;;;;;:15;:31;;;;;;;;:46;;;;;;;;;19862:2;20917:29;;20868:78;;20962:61;;;;;;;20868:31;;20917:8;;20962:61;;;;;;;;;;;;;20316:715;;;;:::o;8036:123:11:-;8105:7;8132:19;8140:3;8132:7;:19::i;7319:284:18:-;7404:7;7438:8;:6;:8::i;:::-;7437:9;7429:49;;;;;-1:-1:-1;;;7429:49:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;7489:23;7495:6;7503:8;7489:5;:23::i;:::-;7556:12;:10;:12::i;:::-;-1:-1:-1;;;;;7528:41:18;;7546:8;7528:41;;;;;;;;;;;;;;;;;;-1:-1:-1;7587:8:18;7319:284;-1:-1:-1;7319:284:18:o;14187:573::-;14319:4;14363:17;14371:8;14363:7;:17::i;:::-;14341:111;;;;-1:-1:-1;;;14341:111:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14572:14;14589:17;14597:8;14589:7;:17::i;:::-;14572:34;;14637:6;-1:-1:-1;;;;;14625:18:18;:8;-1:-1:-1;;;;;14625:18:18;;:68;;;;14685:8;-1:-1:-1;;;;;14660:33:18;:21;14672:8;14660:11;:21::i;:::-;-1:-1:-1;;;;;14660:33:18;;14625:68;:126;;;;14710:41;14734:6;14742:8;14710:23;:41::i;17339:879::-;17471:23;17485:8;17471:13;:23::i;:::-;17467:100;;;17518:37;17534:5;17541:3;17546:8;17518:15;:37::i;:::-;17511:44;;17467:100;-1:-1:-1;;;;;17587:17:18;;17579:66;;;;-1:-1:-1;;;17579:66:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17662:20:18;;17677:4;17662:20;17658:210;;;17851:5;17845:11;;17658:210;17912:8;;17937:3;;:25;;;-1:-1:-1;;;17937:25:18;;;;;;;;;;17878:18;;-1:-1:-1;;;;;17912:8:18;;;;:24;;17937:3;;;:15;;:25;;;;;;;;;;;;;;;:3;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17937:25:18;17912:51;;;-1:-1:-1;;;;;;17912:51:18;;;;;;;-1:-1:-1;;;;;;17912:51:18;;;;;;;;;;;;;17937:25;;17912:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17912:51:18;17974:8;;17912:51;;-1:-1:-1;;;;;;17974:8:18;:25;18014:5;18042:4;17912:51;18104:21;18116:8;18104:11;:21::i;:::-;18127:19;18142:3;18127:14;:19::i;:::-;18087:60;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18087:60:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18087:60:18;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18087:60:18;;;;;;;;;;;;;-1:-1:-1;;18087:60:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17974:184;;;;;;;;;;;;;-1:-1:-1;;;;;17974:184:18;;;;;;-1:-1:-1;;;;;17974:184:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18169:17:18;;:41;;;-1:-1:-1;;;;;;18169:41:18;;;;;;;;;;-1:-1:-1;;;;;18169:17:18;;;;-1:-1:-1;18169:29:18;;-1:-1:-1;18169:41:18;;;;;:17;;:41;;;;;;;;:17;;:41;;;;;;;;;;4376:221:20;4448:7;-1:-1:-1;;;;;4476:19:20;;4468:74;;;;-1:-1:-1;;;4468:74:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4560:20:20;;;;;;:13;:20;;;;;:29;;:27;:29::i;6459:162::-;-1:-1:-1;;;;;6583:20:20;;6556:7;6583:20;;;:13;:20;;;;;:30;;6607:5;6583:23;:30::i;2149:120:13:-;1693:8;:6;:8::i;:::-;1685:41;;;;;-1:-1:-1;;;1685:41:13;;;;;;;;;;;;-1:-1:-1;;;1685:41:13;;;;;;;;;;;;;;;2208:7:::1;:15:::0;;-1:-1:-1;;;;2208:15:13::1;::::0;;2239:22:::1;2248:12;:10;:12::i;:::-;2239:22;::::0;;-1:-1:-1;;;;;2239:22:13;;::::1;::::0;;;;;;;::::1;::::0;;::::1;2149:120::o:0;8498:236:11:-;8578:7;;;;8638:22;8642:3;8654:5;8638:3;:22::i;:::-;8607:53;;;;-1:-1:-1;8498:236:11;-1:-1:-1;;;;;8498:236:11:o;16122:100:20:-;16195:19;;;;:8;;:19;;;;;:::i;11379:127::-;11444:4;11468:30;:12;11490:7;11468:21;:30::i;4659:177::-;4731:7;4758:70;4775:7;4758:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;31568:144:18:-;31641:13;;;31651:2;31641:13;;;;;;;;;31614:14;;31641:13;;;;;;;;-1:-1:-1;;;31695:2:18;31688:10;;31681:21;;;;-1:-1:-1;31688:10:18;31670:39::o;32031:100::-;32108:19;;;32080:12;32108:19;;;;-1:-1:-1;;32108:19:18;;;;;;;;;;;;;;;;;;;;;32031:100::o;1890:118:13:-;1416:8;:6;:8::i;:::-;1415:9;1407:38;;;;;-1:-1:-1;;;1407:38:13;;;;;;;;;;;;-1:-1:-1;;;1407:38:13;;;;;;;;;;;;;;;1950:7:::1;:14:::0;;-1:-1:-1;;;;1950:14:13::1;-1:-1:-1::0;;;1950:14:13::1;::::0;;1980:20:::1;1987:12;:10;:12::i;10794:272:20:-:0;10908:28;10918:4;10924:2;10928:7;10908:9;:28::i;:::-;10955:48;10978:4;10984:2;10988:7;10997:5;10955:22;:48::i;:::-;10947:111;;;;-1:-1:-1;;;10947:111:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221:746:14;277:13;498:10;494:53;;-1:-1:-1;525:10:14;;;;;;;;;;;;-1:-1:-1;;;525:10:14;;;;;;494:53;572:5;557:12;613:78;620:9;;613:78;;646:8;;677:2;669:10;;;;613:78;;;701:19;733:6;723:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;723:17:14;-1:-1:-1;795:5:14;;-1:-1:-1;701:39:14;-1:-1:-1;;;767:10:14;;811:117;818:9;;811:117;;887:2;880:4;:9;875:2;:14;862:29;;844:6;851:7;;;;;;;844:15;;;;;;;;;;;:47;-1:-1:-1;;;;;844:47:14;;;;;;;;-1:-1:-1;914:2:14;906:10;;;;811:117;;;-1:-1:-1;952:6:14;221:746;-1:-1:-1;;;;221:746:14:o;14040:545:20:-;14100:13;14116:23;14131:7;14116:14;:23::i;:::-;14100:39;;14170:48;14191:5;14206:1;14210:7;14170:20;:48::i;:::-;14259:29;14276:1;14280:7;14259:8;:29::i;:::-;14347:19;;;;:10;:19;;;;;14341:33;;-1:-1:-1;;14341:33:20;;;;;;;;;;;:38;14337:97;;14403:19;;;;:10;:19;;;;;14396:26;;;:::i;:::-;-1:-1:-1;;;;;14446:20:20;;;;;;:13;:20;;;;;:36;;14474:7;14446:27;:36::i;:::-;-1:-1:-1;14495:28:20;:12;14515:7;14495:19;:28::i;:::-;-1:-1:-1;14541:36:20;;14569:7;;14565:1;;-1:-1:-1;;;;;14541:36:20;;;;;14565:1;;14541:36;14040:545;;:::o;8798:164::-;-1:-1:-1;;;;;8919:25:20;;;8895:4;8919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8798:164::o;21899:414:18:-;-1:-1:-1;;;;;22068:31:18;;21992:24;22068:31;;;:15;:31;;;;;;;;:46;;;;;;;;;22133:17;22125:81;;;;-1:-1:-1;;;22125:81:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22225:43;-1:-1:-1;;22233:34:18;;22225:7;:43::i;:::-;22217:88;-1:-1:-1;;;22270:34:18;21899:414;;;;;:::o;8853:146:12:-;8930:4;8954:37;8964:3;8984:5;8954:9;:37::i;8630:137::-;8700:4;8724:35;8732:3;8752:5;8724:7;:35::i;6957:158::-;7030:4;7054:53;7062:3;-1:-1:-1;;;;;7082:23:12;;7054:7;:53::i;4581:204::-;4676:18;;4648:7;;4676:26;-1:-1:-1;4668:73:12;;;;-1:-1:-1;;;4668:73:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4759:3;:11;;4771:5;4759:18;;;;;;;;;;;;;;;;4752:25;;4581:204;;;;:::o;6629:152::-;6699:4;6723:50;6728:3;-1:-1:-1;;;;;6748:23:12;;6723:4;:50::i;8323:131::-;8390:4;8414:32;8419:3;8439:5;8414:4;:32::i;4615:110:11:-;4698:19;;4615:110::o;13294:517:20:-;-1:-1:-1;;;;;13374:16:20;;13366:61;;;;;-1:-1:-1;;;13366:61:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13553:23;13568:7;13553:14;:23::i;:::-;13552:24;13544:65;;;;;-1:-1:-1;;;13544:65:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;13622:45;13651:1;13655:2;13659:7;13622:20;:45::i;:::-;-1:-1:-1;;;;;13680:17:20;;;;;;:13;:17;;;;;:30;;13702:7;13680:21;:30::i;:::-;-1:-1:-1;13723:29:20;:12;13740:7;13749:2;13723:16;:29::i;:::-;-1:-1:-1;13770:33:20;;13795:7;;-1:-1:-1;;;;;13770:33:20;;;13787:1;;13770:33;;13787:1;;13770:33;13294:517;;:::o;14922:599::-;15047:4;-1:-1:-1;;;;;15020:31:20;:23;15035:7;15020:14;:23::i;:::-;-1:-1:-1;;;;;15020:31:20;;15012:85;;;;-1:-1:-1;;;15012:85:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15134:16:20;;15126:65;;;;-1:-1:-1;;;15126:65:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15204:39;15225:4;15231:2;15235:7;15204:20;:39::i;:::-;15308:29;15325:1;15329:7;15308:8;:29::i;:::-;-1:-1:-1;;;;;15350:19:20;;;;;;:13;:19;;;;;:35;;15377:7;15350:26;:35::i;:::-;-1:-1:-1;;;;;;15396:17:20;;;;;;:13;:17;;;;;:30;;15418:7;15396:21;:30::i;:::-;-1:-1:-1;15439:29:20;:12;15456:7;15465:2;15439:16;:29::i;:::-;;15505:7;15501:2;-1:-1:-1;;;;;15486:27:20;15495:4;-1:-1:-1;;;;;15486:27:20;;;;;;;;;;;14922:599;;;:::o;5080:279:11:-;5184:19;;5147:7;;;;5184:27;-1:-1:-1;5176:74:11;;;;-1:-1:-1;;;5176:74:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5263:22;5288:3;:12;;5301:5;5288:19;;;;;;;;;;;;;;;;;;5263:44;;5326:5;:10;;;5338:5;:12;;;5318:33;;;;;5080:279;;;;;:::o;9784:213::-;9891:7;9942:44;9947:3;9967;9973:12;9942:4;:44::i;16787:604:20:-;16908:4;16935:15;:2;-1:-1:-1;;;;;16935:13:20;;:15::i;:::-;16930:60;;-1:-1:-1;16974:4:20;16967:11;;16930:60;17000:23;17026:252;-1:-1:-1;;;17139:12:20;:10;:12::i;:::-;17166:4;17185:7;17207:5;17042:181;;;;;;-1:-1:-1;;;;;17042:181:20;;;;;;-1:-1:-1;;;;;17042:181:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17042:181:20;;;;;;;-1:-1:-1;;;;;17042:181:20;;;;;;;;;;;17026:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17026:15:20;;;:252;:15;:252::i;:::-;17000:278;;17289:13;17316:10;17305:32;;;;;;;;;;;;;;;-1:-1:-1;17305:32:20;-1:-1:-1;;;;;;17356:26:20;-1:-1:-1;;;17356:26:20;;-1:-1:-1;;;16787:604:20;;;;;;:::o;7571:142:11:-;7648:4;7672:33;7680:3;7700;7672:7;:33::i;3913:129:12:-;3986:4;4010:19;;;:12;;;;;:19;;;;;;:24;;;3913:129::o;2283:1544::-;2349:4;2488:19;;;:12;;;:19;;;;;;2524:15;;2520:1300;;2959:18;;-1:-1:-1;;2910:14:12;;;;2959:22;;;;2886:21;;2959:3;;:22;;3246;;;;;;;;;;;;;;3226:42;;3392:9;3363:3;:11;;3375:13;3363:26;;;;;;;;;;;;;;;;;;;:38;;;;3469:23;;;3511:1;3469:12;;;:23;;;;;;3495:17;;;3469:43;;3621:17;;3469:3;;3621:17;;;;;;;;;;;;;;;;;;;;;;3716:3;:12;;:19;3729:5;3716:19;;;;;;;;;;;3709:26;;;3759:4;3752:11;;;;;;;;2520:1300;3803:5;3796:12;;;;;1693:414;1756:4;1778:21;1788:3;1793:5;1778:9;:21::i;:::-;1773:327;;-1:-1:-1;1816:23:12;;;;;;;;:11;:23;;;;;;;;;;;;;1999:18;;1977:19;;;:12;;;:19;;;;;;:40;;;;2032:11;;1773:327;-1:-1:-1;2083:5:12;2076:12;;7220:185:11;7309:4;7333:64;7338:3;7358;-1:-1:-1;;;;;7372:23:11;;7333:4;:64::i;6577:319::-;6671:7;6710:17;;;:12;;;:17;;;;;;6761:12;6746:13;6738:36;;;;-1:-1:-1;;;6738:36:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6828:3;:12;;6852:1;6841:8;:12;6828:26;;;;;;;;;;;;;;;;;;:33;;;6821:40;;;6577:319;;;;;:::o;751:422:9:-;1118:20;1157:8;;;751:422::o;3669:195::-;3772:12;3804:52;3826:6;3834:4;3840:1;3843:12;3804:21;:52::i;2762:1549:11:-;2826:4;2961:17;;;:12;;;:17;;;;;;2995:13;;2991:1313;;3427:19;;-1:-1:-1;;3380:12:11;;;;3427:23;;;;3356:21;;3427:3;;:23;;3724;;;;;;;;;;;;;;;;3695:52;;3872:9;3842:3;:12;;3855:13;3842:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;3962:14;;3949:28;;:12;;;:28;;;;;3980:17;;;3949:48;;4106:18;;3949:3;;4106:18;;;;;;;;;;;;;;-1:-1:-1;;4106:18:11;;;;;;;;;;;;;;;;;;;;;4202:17;;;:12;;;:17;;;;;;4195:24;;;;4106:18;-1:-1:-1;4236:11:11;;-1:-1:-1;;;;4236:11:11;1895:692;1971:4;2106:17;;;:12;;;:17;;;;;;2140:13;2136:444;;-1:-1:-1;;2225:38:11;;;;;;;;;;;;;;;;;;2207:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;2422:19;;2402:17;;;:12;;;:17;;;;;;;:39;2456:11;;2136:444;2536:5;2500:3;:12;;2524:1;2513:8;:12;2500:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2563:5;2556:12;;;;;4721:530:9;4848:12;4906:5;4881:21;:30;;4873:81;;;;-1:-1:-1;;;4873:81:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4973:18;4984:6;4973:10;:18::i;:::-;4965:60;;;;;-1:-1:-1;;;4965:60:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;5099:12;5113:23;5140:6;-1:-1:-1;;;;;5140:11:9;5160:5;5168:4;5140:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5140:33:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5098:75;;;;5191:52;5209:7;5218:10;5230:12;5191:17;:52::i;:::-;5184:59;4721:530;-1:-1:-1;;;;;;;4721:530:9:o;7261:742::-;7376:12;7405:7;7401:595;;;-1:-1:-1;7436:10:9;7429:17;;7401:595;7550:17;;:21;7546:439;;7813:10;7807:17;7874:15;7861:10;7857:2;7853:19;7846:44;7761:148;7949:20;;-1:-1:-1;;;7949:20:9;;;;;;;;;;;;;;;;;7956:12;;7949:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://967d8a62f01db6229c1e4a60a677bd1f9686db8d0dceaf3e976bd7b2dac9a009
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.