ETH Price: $3,465.47 (+2.10%)
Gas: 10 Gwei

Token

DemonicSkulls (DemonicSkulls)
 

Overview

Max Total Supply

300 DemonicSkulls

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
borovik.eth
Balance
1 DemonicSkulls
0x408630f7f8dd26f5e64b279b199e10dbafd6236b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The DemonicSkulls NFT Collection is a collection of Non-Fungible. Each Demonic Skull character is unique and has been summoned by the Dark Alchemist himself using the powers of the OG CryptoSkulls. Visit DemonicSkulls.com for more info.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DemonicSkulls

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : demonicSkulls.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;

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


abstract contract CryptoSkullsContract {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
    function balanceOf(address account) public view virtual returns (uint256);
}

abstract contract DemonsBloodContract {
    function balanceOf(address account, uint256 tokenId) public view virtual returns (uint256);
    function burnForAddress(uint256 typeId, address burnTokenAddress, uint256 amount) external virtual;
}

contract DemonicSkulls is ERC721Enumerable, Ownable, ReentrancyGuard {
    CryptoSkullsContract private cryptoSkullsContract;
    DemonsBloodContract private demonsBloodContract;

    uint256 public levelTwoMintedAmount;
    uint256 public levelThreeMintedAmount;

    uint256 public maxMintsPerTxn = 5;

    uint256 public levelTwoMintPrice = 0.7 ether;
    uint256 public levelThreeMintPrice = 1.5 ether;

    bool public saleIsActive = false;
    bool public claimIsActive = false;

    string public baseURI;

    uint256 public levelTwoIndex = 9999;
    uint256 public levelThreeIndex = 12499;

    address public withdrawalWallet;

    mapping (uint256 => bool) public claimedTokens;
    mapping (address => uint256) public levelTwoClaimers;
    mapping (address => uint256) public levelThreeClaimers;
    mapping (uint256 => bool) public lordsIds;

    uint256 private constant COMMON_BLOOD_TYPE = 0;
    uint256 private constant LORD_BLOOD_TYPE = 1;

    uint256 private constant LEVEL_ONE_BLOOD_AMOUNT = 1;
    uint256 private constant LEVEL_TWO_BLOOD_AMOUNT = 3;
    uint256 private constant LEVEL_THREE_BLOOD_AMOUNT = 5;
    uint256 private constant LORD_BLOOD_AMOUNT = 1;

    event PaymentReleased(address to, uint256 amount);

    constructor(string memory name,
        string memory symbol,
        string memory _baseUri,
        address skullsContract,
        address bloodsContract) ERC721(name, symbol) {
        baseURI = _baseUri;

        cryptoSkullsContract = CryptoSkullsContract(skullsContract);
        demonsBloodContract = DemonsBloodContract(bloodsContract);

        lordsIds[9] = true;
        lordsIds[19] = true;
        lordsIds[20] = true;
        lordsIds[24] = true;
        lordsIds[27] = true;
        lordsIds[36] = true;
        lordsIds[41] = true;
        lordsIds[42] = true;
        lordsIds[43] = true;
        lordsIds[70] = true;
    }

    function setWithdrawalWallet(address wallet) public onlyOwner {
        withdrawalWallet = wallet;
    }

    function setMaxMintsPerTxn(uint256 amount) public onlyOwner {
        maxMintsPerTxn = amount;
    }

    function setLevelTwoMintPrice(uint256 price) public onlyOwner {
        levelTwoMintPrice = price;
    }

    function setLevelThreeMintPrice(uint256 price) public onlyOwner {
        levelThreeMintPrice = price;
    }

    function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        require(payable(withdrawalWallet).send(amount));

        emit PaymentReleased(withdrawalWallet, amount);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipClaimState() public onlyOwner {
        claimIsActive = !claimIsActive;
    }

    function claimLords(uint256[] memory ids) public {
        require(claimIsActive, "Claiming must be active");
        require(demonsBloodContract.balanceOf(msg.sender, LORD_BLOOD_TYPE) >= ids.length, "You do not have enough Blood");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];

            require(lordsIds[id], "You can only claim Lord");
            require(!claimedTokens[id], "This Lord had already been claimed");
            require(cryptoSkullsContract.ownerOf(id) == msg.sender, "You must own original Lord");

            claimedTokens[id] = true;
            demonsBloodContract.burnForAddress(LORD_BLOOD_TYPE, msg.sender, LORD_BLOOD_AMOUNT);

            _safeMint(msg.sender, id);
        }
    }

    function claimSkulls(uint256[] memory ids, uint256 bloodAmount) public {
        require(claimIsActive, "Claiming must be active");
        require(bloodAmount == LEVEL_ONE_BLOOD_AMOUNT || bloodAmount == LEVEL_TWO_BLOOD_AMOUNT || bloodAmount == LEVEL_THREE_BLOOD_AMOUNT,
            "Blood amount is incorrect");
        require(demonsBloodContract.balanceOf(msg.sender, COMMON_BLOOD_TYPE) >= bloodAmount * ids.length, "You do not have enough Blood");

        if (bloodAmount == LEVEL_TWO_BLOOD_AMOUNT) {
            require((ids.length + levelTwoClaimers[msg.sender]) <= 50, "You can't mint more than 50 Level 2 Demonic Skulls per wallet");
        } else if (bloodAmount == LEVEL_THREE_BLOOD_AMOUNT) {
            require((ids.length + levelThreeClaimers[msg.sender]) <= 5, "You can't mint more than 5 Level 3 Demonic Skulls per wallet");
        }

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];

            require(!lordsIds[id], "You must use another method to claim Lord");
            require(!claimedTokens[id], "This Demonic Skull had already been claimed");
            require(cryptoSkullsContract.ownerOf(id) == msg.sender, "You must own original CryptoSkull");

            claimedTokens[id] = true;

            if (bloodAmount == LEVEL_ONE_BLOOD_AMOUNT) {
                demonsBloodContract.burnForAddress(COMMON_BLOOD_TYPE, msg.sender, LEVEL_ONE_BLOOD_AMOUNT);

                _safeMint(msg.sender, id);
            } else if (bloodAmount == LEVEL_TWO_BLOOD_AMOUNT) {
                levelTwoClaimers[msg.sender] += 1;
                levelTwoMintedAmount++;

                demonsBloodContract.burnForAddress(COMMON_BLOOD_TYPE, msg.sender, LEVEL_TWO_BLOOD_AMOUNT);

                _safeMint(msg.sender, ++levelTwoIndex);
            } else if (bloodAmount == LEVEL_THREE_BLOOD_AMOUNT) {
                levelThreeClaimers[msg.sender] += 1;
                levelThreeMintedAmount++;

                demonsBloodContract.burnForAddress(COMMON_BLOOD_TYPE, msg.sender, LEVEL_THREE_BLOOD_AMOUNT);

                _safeMint(msg.sender, ++levelThreeIndex);
            }
        }
    }

    function mint(uint256 numberOfTokens, uint256 bloodAmount) public payable {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxMintsPerTxn, "You can not mint that many at a time");
        require(bloodAmount == LEVEL_TWO_BLOOD_AMOUNT || bloodAmount == LEVEL_THREE_BLOOD_AMOUNT,
            "You can only mint Level 2 or Level 3 Demonic Skulls");

        uint256 baseMintPrice;

        if (bloodAmount == LEVEL_TWO_BLOOD_AMOUNT) {
            require(levelTwoMintedAmount + numberOfTokens <= 2500, "Purchase would exceed max limit");
            require((numberOfTokens + levelTwoClaimers[msg.sender]) <= 50, "You can't mint more than 50 Level 2 Demonic Skulls per wallet");

            baseMintPrice = levelTwoMintPrice;
        } else if (bloodAmount == LEVEL_THREE_BLOOD_AMOUNT) {
            require(levelThreeMintedAmount + numberOfTokens <= 150, "Purchase would exceed max limit");
            require((numberOfTokens + levelThreeClaimers[msg.sender]) <= 5, "You can't mint more than 5 Level 3 Demonic Skulls per wallet");

            baseMintPrice = levelThreeMintPrice;
        }

        bool hasOriginalSkulls = cryptoSkullsContract.balanceOf(msg.sender) > 0;
        uint256 totalPrice = hasOriginalSkulls ? (baseMintPrice * numberOfTokens) * 80 / 100 : baseMintPrice * numberOfTokens;

        require(totalPrice <= msg.value, "ETH value sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex;

            if (bloodAmount == LEVEL_TWO_BLOOD_AMOUNT) {
                mintIndex = ++levelTwoIndex;

                levelTwoClaimers[msg.sender] += 1;
                levelTwoMintedAmount++;
            } else if (bloodAmount == LEVEL_THREE_BLOOD_AMOUNT) {
                mintIndex = ++levelThreeIndex;

                levelThreeClaimers[msg.sender] += 1;
                levelThreeMintedAmount++;
            }

            _safeMint(msg.sender, mintIndex);
        }
    }


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

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

File 2 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

    /**
     * @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 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"skullsContract","type":"address"},{"internalType":"address","name":"bloodsContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"claimLords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256","name":"bloodAmount","type":"uint256"}],"name":"claimSkulls","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"levelThreeClaimers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelThreeIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelThreeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelThreeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"levelTwoClaimers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelTwoIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelTwoMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelTwoMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lordsIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"bloodAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setLevelThreeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setLevelTwoMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxMintsPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setWithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260056010556709b6e64a8ec600006011556714d1120d7b1600006012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff02191690831515021790555061270f6015556130d36016553480156200007057600080fd5b5060405162006798380380620067988339818101604052810190620000969190620006dc565b84848160009080519060200190620000b09291906200042a565b508060019080519060200190620000c99291906200042a565b505050620000ec620000e06200035c60201b60201c565b6200036460201b60201c565b6001600b8190555082601490805190602001906200010c9291906200042a565b5081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601b60006009815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006013815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006014815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006018815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b6000601b815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006024815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006029815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b6000602a815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b6000602b815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601b60006046815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505062000826565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200043890620007f0565b90600052602060002090601f0160209004810192826200045c5760008555620004a8565b82601f106200047757805160ff1916838001178555620004a8565b82800160010185558215620004a8579182015b82811115620004a75782518255916020019190600101906200048a565b5b509050620004b79190620004bb565b5090565b5b80821115620004d6576000816000905550600101620004bc565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200054382620004f8565b810181811067ffffffffffffffff8211171562000565576200056462000509565b5b80604052505050565b60006200057a620004da565b905062000588828262000538565b919050565b600067ffffffffffffffff821115620005ab57620005aa62000509565b5b620005b682620004f8565b9050602081019050919050565b60005b83811015620005e3578082015181840152602081019050620005c6565b83811115620005f3576000848401525b50505050565b6000620006106200060a846200058d565b6200056e565b9050828152602081018484840111156200062f576200062e620004f3565b5b6200063c848285620005c3565b509392505050565b600082601f8301126200065c576200065b620004ee565b5b81516200066e848260208601620005f9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006a48262000677565b9050919050565b620006b68162000697565b8114620006c257600080fd5b50565b600081519050620006d681620006ab565b92915050565b600080600080600060a08688031215620006fb57620006fa620004e4565b5b600086015167ffffffffffffffff8111156200071c576200071b620004e9565b5b6200072a8882890162000644565b955050602086015167ffffffffffffffff8111156200074e576200074d620004e9565b5b6200075c8882890162000644565b945050604086015167ffffffffffffffff81111562000780576200077f620004e9565b5b6200078e8882890162000644565b9350506060620007a188828901620006c5565b9250506080620007b488828901620006c5565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080957607f821691505b6020821081141562000820576200081f620007c1565b5b50919050565b615f6280620008366000396000f3fe6080604052600436106102725760003560e01c806367007af61161014f578063af54001e116100c1578063e5a342a31161007a578063e5a342a314610955578063e985e9c514610992578063eb8d2444146109cf578063f0c6aed8146109fa578063f2fde38b14610a25578063f7c64f9e14610a4e57610272565b8063af54001e14610845578063b817877114610870578063b88d4fde14610899578063bbda56a1146108c2578063c3efa64c146108ed578063c87b56dd1461091857610272565b806375796f761161011357806375796f76146107495780637ba9466b146107725780638da5cb5b1461079b57806395d89b41146107c6578063a22cb465146107f1578063a67104801461081a57610272565b806367007af6146106885780636c0360eb146106b35780636d60e6c1146106de57806370a08231146106f5578063715018a61461073257610272565b80632e1a7d4d116101e85780634569f0af116101ac5780634569f0af146105525780634a7d80b31461058f5780634f6ccce7146105ba5780635303f68c146105f757806355f804b3146106225780636352211e1461064b57610272565b80632e1a7d4d146104815780632f745c59146104aa57806334918dfd146104e75780633a35ccc8146104fe57806342842e0e1461052957610272565b806318160ddd1161023a57806318160ddd146103825780631b2ef1ca146103ad5780631cac10c6146103c957806320d10169146103f257806323b872dd1461041b57806328bb55ba1461044457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630e78795e14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190614063565b610a77565b6040516102ab91906140ab565b60405180910390f35b3480156102c057600080fd5b506102c9610af1565b6040516102d6919061415f565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906141b7565b610b83565b6040516103139190614225565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061426c565b610c08565b005b34801561035157600080fd5b5061036c600480360381019061036791906142ac565b610d20565b60405161037991906142e8565b60405180910390f35b34801561038e57600080fd5b50610397610d38565b6040516103a491906142e8565b60405180910390f35b6103c760048036038101906103c29190614303565b610d45565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061448b565b611296565b005b3480156103fe57600080fd5b50610419600480360381019061041491906144d4565b6116ba565b005b34801561042757600080fd5b50610442600480360381019061043d9190614530565b611ee3565b005b34801561045057600080fd5b5061046b600480360381019061046691906142ac565b611f43565b60405161047891906142e8565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906141b7565b611f5b565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061426c565b6120d8565b6040516104de91906142e8565b60405180910390f35b3480156104f357600080fd5b506104fc61217d565b005b34801561050a57600080fd5b50610513612225565b60405161052091906142e8565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190614530565b61222b565b005b34801561055e57600080fd5b50610579600480360381019061057491906141b7565b61224b565b60405161058691906140ab565b60405180910390f35b34801561059b57600080fd5b506105a461226b565b6040516105b19190614225565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906141b7565b612291565b6040516105ee91906142e8565b60405180910390f35b34801561060357600080fd5b5061060c612302565b60405161061991906140ab565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190614638565b612315565b005b34801561065757600080fd5b50610672600480360381019061066d91906141b7565b6123ab565b60405161067f9190614225565b60405180910390f35b34801561069457600080fd5b5061069d61245d565b6040516106aa91906142e8565b60405180910390f35b3480156106bf57600080fd5b506106c8612463565b6040516106d5919061415f565b60405180910390f35b3480156106ea57600080fd5b506106f36124f1565b005b34801561070157600080fd5b5061071c600480360381019061071791906142ac565b612599565b60405161072991906142e8565b60405180910390f35b34801561073e57600080fd5b50610747612651565b005b34801561075557600080fd5b50610770600480360381019061076b91906142ac565b6126d9565b005b34801561077e57600080fd5b50610799600480360381019061079491906141b7565b612799565b005b3480156107a757600080fd5b506107b061281f565b6040516107bd9190614225565b60405180910390f35b3480156107d257600080fd5b506107db612849565b6040516107e8919061415f565b60405180910390f35b3480156107fd57600080fd5b50610818600480360381019061081391906146ad565b6128db565b005b34801561082657600080fd5b5061082f6128f1565b60405161083c91906142e8565b60405180910390f35b34801561085157600080fd5b5061085a6128f7565b60405161086791906142e8565b60405180910390f35b34801561087c57600080fd5b50610897600480360381019061089291906141b7565b6128fd565b005b3480156108a557600080fd5b506108c060048036038101906108bb919061478e565b612983565b005b3480156108ce57600080fd5b506108d76129e5565b6040516108e491906142e8565b60405180910390f35b3480156108f957600080fd5b506109026129eb565b60405161090f91906142e8565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a91906141b7565b6129f1565b60405161094c919061415f565b60405180910390f35b34801561096157600080fd5b5061097c600480360381019061097791906141b7565b612a98565b60405161098991906140ab565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190614811565b612ab8565b6040516109c691906140ab565b60405180910390f35b3480156109db57600080fd5b506109e4612b4c565b6040516109f191906140ab565b60405180910390f35b348015610a0657600080fd5b50610a0f612b5f565b604051610a1c91906142e8565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906142ac565b612b65565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906141b7565b612c5d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea5750610ae982612ce3565b5b9050919050565b606060008054610b0090614880565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90614880565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b8e82612dc5565b610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490614924565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c13826123ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906149b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca3612e31565b73ffffffffffffffffffffffffffffffffffffffff161480610cd25750610cd181610ccc612e31565b612ab8565b5b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614a48565b60405180910390fd5b610d1b8383612e39565b505050565b60196020528060005260406000206000915090505481565b6000600880549050905090565b601360009054906101000a900460ff16610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90614ab4565b60405180910390fd5b601054821115610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090614b46565b60405180910390fd5b6003811480610de85750600581145b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614bd8565b60405180910390fd5b60006003821415610f1c576109c483600e54610e439190614c27565b1115610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614cc9565b60405180910390fd5b6032601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610ed19190614c27565b1115610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990614d5b565b60405180910390fd5b601154905061100b565b600582141561100a57609683600f54610f359190614c27565b1115610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614cc9565b60405180910390fd5b6005601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610fc39190614c27565b1115611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614ded565b60405180910390fd5b60125490505b5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110699190614225565b60206040518083038186803b15801561108157600080fd5b505afa158015611095573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b99190614e22565b1190506000816110d45784836110cf9190614e4f565b6110f9565b6064605086856110e49190614e4f565b6110ee9190614e4f565b6110f89190614ed8565b5b90503481111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590614f55565b60405180910390fd5b60005b8581101561128e57600060038614156111df5760156000815461116390614f75565b91905081905590506001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bb9190614c27565b92505081905550600e60008154809291906111d590614f75565b9190505550611270565b600586141561126f576016600081546111f790614f75565b91905081905590506001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124f9190614c27565b92505081905550600f600081548092919061126990614f75565b91905055505b5b61127a3382612ef2565b50808061128690614f75565b915050611141565b505050505050565b601360019054906101000a900460ff166112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061500a565b60405180910390fd5b8051600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360016040518363ffffffff1660e01b815260040161134492919061502a565b60206040518083038186803b15801561135c57600080fd5b505afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190614e22565b10156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061509f565b60405180910390fd5b60005b81518110156116b65760008282815181106113f6576113f56150bf565b5b60200260200101519050601b600082815260200190815260200160002060009054906101000a900460ff16611460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114579061513a565b60405180910390fd5b6018600082815260200190815260200160002060009054906101000a900460ff16156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906151cc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161153391906142e8565b60206040518083038186803b15801561154b57600080fd5b505afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190615201565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061527a565b60405180910390fd5b60016018600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560013360016040518463ffffffff1660e01b81526004016116669392919061529a565b600060405180830381600087803b15801561168057600080fd5b505af1158015611694573d6000803e3d6000fd5b505050506116a23382612ef2565b5080806116ae90614f75565b9150506113d8565b5050565b601360019054906101000a900460ff16611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061500a565b60405180910390fd5b60018114806117185750600381145b806117235750600581145b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117599061531d565b60405180910390fd5b81518161176f9190614e4f565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b81526004016117cc92919061502a565b60206040518083038186803b1580156117e457600080fd5b505afa1580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c9190614e22565b101561185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061509f565b60405180910390fd5b60038114156118fa576032601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483516118b49190614c27565b11156118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614d5b565b60405180910390fd5b611994565b6005811415611993576005601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483516119519190614c27565b1115611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614ded565b60405180910390fd5b5b5b60005b8251811015611ede5760008382815181106119b5576119b46150bf565b5b60200260200101519050601b600082815260200190815260200160002060009054906101000a900460ff1615611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906153af565b60405180910390fd5b6018600082815260200190815260200160002060009054906101000a900460ff1615611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890615441565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611af391906142e8565b60206040518083038186803b158015611b0b57600080fd5b505afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190615201565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906154d3565b60405180910390fd5b60016018600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001831415611c7057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360016040518463ffffffff1660e01b8152600401611c2f9392919061529a565b600060405180830381600087803b158015611c4957600080fd5b505af1158015611c5d573d6000803e3d6000fd5b50505050611c6b3382612ef2565b611eca565b6003831415611d9e576001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc99190614c27565b92505081905550600e6000815480929190611ce390614f75565b9190505550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360036040518463ffffffff1660e01b8152600401611d499392919061529a565b600060405180830381600087803b158015611d6357600080fd5b505af1158015611d77573d6000803e3d6000fd5b50505050611d9933601560008154611d8e90614f75565b919050819055612ef2565b611ec9565b6005831415611ec8576001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df79190614c27565b92505081905550600f6000815480929190611e1190614f75565b9190505550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360056040518463ffffffff1660e01b8152600401611e779392919061529a565b600060405180830381600087803b158015611e9157600080fd5b505af1158015611ea5573d6000803e3d6000fd5b50505050611ec733601660008154611ebc90614f75565b919050819055612ef2565b5b5b5b508080611ed690614f75565b915050611997565b505050565b611ef4611eee612e31565b82612f10565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90615565565b60405180910390fd5b611f3e838383612fee565b505050565b601a6020528060005260406000206000915090505481565b611f63612e31565b73ffffffffffffffffffffffffffffffffffffffff16611f8161281f565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906155d1565b60405180910390fd5b8047101561201a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120119061563d565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061207a57600080fd5b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516120cd92919061502a565b60405180910390a150565b60006120e383612599565b8210612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b906156cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b612185612e31565b73ffffffffffffffffffffffffffffffffffffffff166121a361281f565b73ffffffffffffffffffffffffffffffffffffffff16146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906155d1565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b60155481565b61224683838360405180602001604052806000815250612983565b505050565b601b6020528060005260406000206000915054906101000a900460ff1681565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061229b610d38565b82106122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390615761565b60405180910390fd5b600882815481106122f0576122ef6150bf565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61231d612e31565b73ffffffffffffffffffffffffffffffffffffffff1661233b61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612388906155d1565b60405180910390fd5b80601490805190602001906123a7929190613f54565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906157f3565b60405180910390fd5b80915050919050565b600f5481565b6014805461247090614880565b80601f016020809104026020016040519081016040528092919081815260200182805461249c90614880565b80156124e95780601f106124be576101008083540402835291602001916124e9565b820191906000526020600020905b8154815290600101906020018083116124cc57829003601f168201915b505050505081565b6124f9612e31565b73ffffffffffffffffffffffffffffffffffffffff1661251761281f565b73ffffffffffffffffffffffffffffffffffffffff161461256d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612564906155d1565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190615885565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612659612e31565b73ffffffffffffffffffffffffffffffffffffffff1661267761281f565b73ffffffffffffffffffffffffffffffffffffffff16146126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c4906155d1565b60405180910390fd5b6126d76000613255565b565b6126e1612e31565b73ffffffffffffffffffffffffffffffffffffffff166126ff61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906155d1565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127a1612e31565b73ffffffffffffffffffffffffffffffffffffffff166127bf61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280c906155d1565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461285890614880565b80601f016020809104026020016040519081016040528092919081815260200182805461288490614880565b80156128d15780601f106128a6576101008083540402835291602001916128d1565b820191906000526020600020905b8154815290600101906020018083116128b457829003601f168201915b5050505050905090565b6128ed6128e6612e31565b838361331b565b5050565b60115481565b60105481565b612905612e31565b73ffffffffffffffffffffffffffffffffffffffff1661292361281f565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612970906155d1565b60405180910390fd5b8060128190555050565b61299461298e612e31565b83612f10565b6129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615565565b60405180910390fd5b6129df84848484613488565b50505050565b60125481565b600e5481565b60606129fc82612dc5565b612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615917565b60405180910390fd5b6000612a456134e4565b90506000815111612a655760405180602001604052806000815250612a90565b80612a6f84613576565b604051602001612a80929190615973565b6040516020818303038152906040525b915050919050565b60186020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b60165481565b612b6d612e31565b73ffffffffffffffffffffffffffffffffffffffff16612b8b61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd8906155d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890615a09565b60405180910390fd5b612c5a81613255565b50565b612c65612e31565b73ffffffffffffffffffffffffffffffffffffffff16612c8361281f565b73ffffffffffffffffffffffffffffffffffffffff1614612cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd0906155d1565b60405180910390fd5b8060108190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dbe5750612dbd826136d7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612eac836123ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612f0c828260405180602001604052806000815250613741565b5050565b6000612f1b82612dc5565b612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5190615a9b565b60405180910390fd5b6000612f65836123ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fd457508373ffffffffffffffffffffffffffffffffffffffff16612fbc84610b83565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fe55750612fe48185612ab8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300e826123ab565b73ffffffffffffffffffffffffffffffffffffffff1614613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b90615b2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90615bbf565b60405180910390fd5b6130df83838361379c565b6130ea600082612e39565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461313a9190615bdf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131919190614c27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132508383836138b0565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561338a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338190615c5f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161347b91906140ab565b60405180910390a3505050565b613493848484612fee565b61349f848484846138b5565b6134de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d590615cf1565b60405180910390fd5b50505050565b6060601480546134f390614880565b80601f016020809104026020016040519081016040528092919081815260200182805461351f90614880565b801561356c5780601f106135415761010080835404028352916020019161356c565b820191906000526020600020905b81548152906001019060200180831161354f57829003601f168201915b5050505050905090565b606060008214156135be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136d2565b600082905060005b600082146135f05780806135d990614f75565b915050600a826135e99190614ed8565b91506135c6565b60008167ffffffffffffffff81111561360c5761360b614348565b5b6040519080825280601f01601f19166020018201604052801561363e5781602001600182028036833780820191505090505b5090505b600085146136cb576001826136579190615bdf565b9150600a856136669190615d11565b60306136729190614c27565b60f81b818381518110613688576136876150bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136c49190614ed8565b9450613642565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61374b8383613a4c565b61375860008484846138b5565b613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e90615cf1565b60405180910390fd5b505050565b6137a7838383613c26565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137ea576137e581613c2b565b613829565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613828576138278382613c74565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c5761386781613de1565b6138ab565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138aa576138a98282613eb2565b5b5b505050565b505050565b60006138d68473ffffffffffffffffffffffffffffffffffffffff16613f31565b15613a3f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ff612e31565b8786866040518563ffffffff1660e01b81526004016139219493929190615d97565b602060405180830381600087803b15801561393b57600080fd5b505af192505050801561396c57506040513d601f19601f820116820180604052508101906139699190615df8565b60015b6139ef573d806000811461399c576040519150601f19603f3d011682016040523d82523d6000602084013e6139a1565b606091505b506000815114156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615cf1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a44565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab390615e71565b60405180910390fd5b613ac581612dc5565b15613b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613afc90615edd565b60405180910390fd5b613b116000838361379c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b619190614c27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c22600083836138b0565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c8184612599565b613c8b9190615bdf565b9050600060076000848152602001908152602001600020549050818114613d70576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613df59190615bdf565b9050600060096000848152602001908152602001600020549050600060088381548110613e2557613e246150bf565b5b906000526020600020015490508060088381548110613e4757613e466150bf565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e9657613e95615efd565b5b6001900381819060005260206000200160009055905550505050565b6000613ebd83612599565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613f6090614880565b90600052602060002090601f016020900481019282613f825760008555613fc9565b82601f10613f9b57805160ff1916838001178555613fc9565b82800160010185558215613fc9579182015b82811115613fc8578251825591602001919060010190613fad565b5b509050613fd69190613fda565b5090565b5b80821115613ff3576000816000905550600101613fdb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6140408161400b565b811461404b57600080fd5b50565b60008135905061405d81614037565b92915050565b60006020828403121561407957614078614001565b5b60006140878482850161404e565b91505092915050565b60008115159050919050565b6140a581614090565b82525050565b60006020820190506140c0600083018461409c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141005780820151818401526020810190506140e5565b8381111561410f576000848401525b50505050565b6000601f19601f8301169050919050565b6000614131826140c6565b61413b81856140d1565b935061414b8185602086016140e2565b61415481614115565b840191505092915050565b600060208201905081810360008301526141798184614126565b905092915050565b6000819050919050565b61419481614181565b811461419f57600080fd5b50565b6000813590506141b18161418b565b92915050565b6000602082840312156141cd576141cc614001565b5b60006141db848285016141a2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061420f826141e4565b9050919050565b61421f81614204565b82525050565b600060208201905061423a6000830184614216565b92915050565b61424981614204565b811461425457600080fd5b50565b60008135905061426681614240565b92915050565b6000806040838503121561428357614282614001565b5b600061429185828601614257565b92505060206142a2858286016141a2565b9150509250929050565b6000602082840312156142c2576142c1614001565b5b60006142d084828501614257565b91505092915050565b6142e281614181565b82525050565b60006020820190506142fd60008301846142d9565b92915050565b6000806040838503121561431a57614319614001565b5b6000614328858286016141a2565b9250506020614339858286016141a2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61438082614115565b810181811067ffffffffffffffff8211171561439f5761439e614348565b5b80604052505050565b60006143b2613ff7565b90506143be8282614377565b919050565b600067ffffffffffffffff8211156143de576143dd614348565b5b602082029050602081019050919050565b600080fd5b6000614407614402846143c3565b6143a8565b9050808382526020820190506020840283018581111561442a576144296143ef565b5b835b81811015614453578061443f88826141a2565b84526020840193505060208101905061442c565b5050509392505050565b600082601f83011261447257614471614343565b5b81356144828482602086016143f4565b91505092915050565b6000602082840312156144a1576144a0614001565b5b600082013567ffffffffffffffff8111156144bf576144be614006565b5b6144cb8482850161445d565b91505092915050565b600080604083850312156144eb576144ea614001565b5b600083013567ffffffffffffffff81111561450957614508614006565b5b6145158582860161445d565b9250506020614526858286016141a2565b9150509250929050565b60008060006060848603121561454957614548614001565b5b600061455786828701614257565b935050602061456886828701614257565b9250506040614579868287016141a2565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156145a3576145a2614348565b5b6145ac82614115565b9050602081019050919050565b82818337600083830152505050565b60006145db6145d684614588565b6143a8565b9050828152602081018484840111156145f7576145f6614583565b5b6146028482856145b9565b509392505050565b600082601f83011261461f5761461e614343565b5b813561462f8482602086016145c8565b91505092915050565b60006020828403121561464e5761464d614001565b5b600082013567ffffffffffffffff81111561466c5761466b614006565b5b6146788482850161460a565b91505092915050565b61468a81614090565b811461469557600080fd5b50565b6000813590506146a781614681565b92915050565b600080604083850312156146c4576146c3614001565b5b60006146d285828601614257565b92505060206146e385828601614698565b9150509250929050565b600067ffffffffffffffff82111561470857614707614348565b5b61471182614115565b9050602081019050919050565b600061473161472c846146ed565b6143a8565b90508281526020810184848401111561474d5761474c614583565b5b6147588482856145b9565b509392505050565b600082601f83011261477557614774614343565b5b813561478584826020860161471e565b91505092915050565b600080600080608085870312156147a8576147a7614001565b5b60006147b687828801614257565b94505060206147c787828801614257565b93505060406147d8878288016141a2565b925050606085013567ffffffffffffffff8111156147f9576147f8614006565b5b61480587828801614760565b91505092959194509250565b6000806040838503121561482857614827614001565b5b600061483685828601614257565b925050602061484785828601614257565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489857607f821691505b602082108114156148ac576148ab614851565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061490e602c836140d1565b9150614919826148b2565b604082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149a06021836140d1565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a326038836140d1565b9150614a3d826149d6565b604082019050919050565b60006020820190508181036000830152614a6181614a25565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b6000614a9e6013836140d1565b9150614aa982614a68565b602082019050919050565b60006020820190508181036000830152614acd81614a91565b9050919050565b7f596f752063616e206e6f74206d696e742074686174206d616e7920617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b6000614b306024836140d1565b9150614b3b82614ad4565b604082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f596f752063616e206f6e6c79206d696e74204c6576656c2032206f72204c657660008201527f656c20332044656d6f6e696320536b756c6c7300000000000000000000000000602082015250565b6000614bc26033836140d1565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c3282614181565b9150614c3d83614181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7257614c71614bf8565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d6178206c696d697400600082015250565b6000614cb3601f836140d1565b9150614cbe82614c7d565b602082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e203530204c65766560008201527f6c20322044656d6f6e696320536b756c6c73207065722077616c6c6574000000602082015250565b6000614d45603d836140d1565b9150614d5082614ce9565b604082019050919050565b60006020820190508181036000830152614d7481614d38565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e2035204c6576656c60008201527f20332044656d6f6e696320536b756c6c73207065722077616c6c657400000000602082015250565b6000614dd7603c836140d1565b9150614de282614d7b565b604082019050919050565b60006020820190508181036000830152614e0681614dca565b9050919050565b600081519050614e1c8161418b565b92915050565b600060208284031215614e3857614e37614001565b5b6000614e4684828501614e0d565b91505092915050565b6000614e5a82614181565b9150614e6583614181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9e57614e9d614bf8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee382614181565b9150614eee83614181565b925082614efe57614efd614ea9565b5b828204905092915050565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b6000614f3f601d836140d1565b9150614f4a82614f09565b602082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b6000614f8082614181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb357614fb2614bf8565b5b600182019050919050565b7f436c61696d696e67206d75737420626520616374697665000000000000000000600082015250565b6000614ff46017836140d1565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600060408201905061503f6000830185614216565b61504c60208301846142d9565b9392505050565b7f596f7520646f206e6f74206861766520656e6f75676820426c6f6f6400000000600082015250565b6000615089601c836140d1565b915061509482615053565b602082019050919050565b600060208201905081810360008301526150b88161507c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e206f6e6c7920636c61696d204c6f7264000000000000000000600082015250565b60006151246017836140d1565b915061512f826150ee565b602082019050919050565b6000602082019050818103600083015261515381615117565b9050919050565b7f54686973204c6f72642068616420616c7265616479206265656e20636c61696d60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b66022836140d1565b91506151c18261515a565b604082019050919050565b600060208201905081810360008301526151e5816151a9565b9050919050565b6000815190506151fb81614240565b92915050565b60006020828403121561521757615216614001565b5b6000615225848285016151ec565b91505092915050565b7f596f75206d757374206f776e206f726967696e616c204c6f7264000000000000600082015250565b6000615264601a836140d1565b915061526f8261522e565b602082019050919050565b6000602082019050818103600083015261529381615257565b9050919050565b60006060820190506152af60008301866142d9565b6152bc6020830185614216565b6152c960408301846142d9565b949350505050565b7f426c6f6f6420616d6f756e7420697320696e636f727265637400000000000000600082015250565b60006153076019836140d1565b9150615312826152d1565b602082019050919050565b60006020820190508181036000830152615336816152fa565b9050919050565b7f596f75206d7573742075736520616e6f74686572206d6574686f6420746f206360008201527f6c61696d204c6f72640000000000000000000000000000000000000000000000602082015250565b60006153996029836140d1565b91506153a48261533d565b604082019050919050565b600060208201905081810360008301526153c88161538c565b9050919050565b7f546869732044656d6f6e696320536b756c6c2068616420616c7265616479206260008201527f65656e20636c61696d6564000000000000000000000000000000000000000000602082015250565b600061542b602b836140d1565b9150615436826153cf565b604082019050919050565b6000602082019050818103600083015261545a8161541e565b9050919050565b7f596f75206d757374206f776e206f726967696e616c2043727970746f536b756c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b60006154bd6021836140d1565b91506154c882615461565b604082019050919050565b600060208201905081810360008301526154ec816154b0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061554f6031836140d1565b915061555a826154f3565b604082019050919050565b6000602082019050818103600083015261557e81615542565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155bb6020836140d1565b91506155c682615585565b602082019050919050565b600060208201905081810360008301526155ea816155ae565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006156276014836140d1565b9150615632826155f1565b602082019050919050565b600060208201905081810360008301526156568161561a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006156b9602b836140d1565b91506156c48261565d565b604082019050919050565b600060208201905081810360008301526156e8816156ac565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061574b602c836140d1565b9150615756826156ef565b604082019050919050565b6000602082019050818103600083015261577a8161573e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006157dd6029836140d1565b91506157e882615781565b604082019050919050565b6000602082019050818103600083015261580c816157d0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061586f602a836140d1565b915061587a82615813565b604082019050919050565b6000602082019050818103600083015261589e81615862565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615901602f836140d1565b915061590c826158a5565b604082019050919050565b60006020820190508181036000830152615930816158f4565b9050919050565b600081905092915050565b600061594d826140c6565b6159578185615937565b93506159678185602086016140e2565b80840191505092915050565b600061597f8285615942565b915061598b8284615942565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006159f36026836140d1565b91506159fe82615997565b604082019050919050565b60006020820190508181036000830152615a22816159e6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615a85602c836140d1565b9150615a9082615a29565b604082019050919050565b60006020820190508181036000830152615ab481615a78565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615b176025836140d1565b9150615b2282615abb565b604082019050919050565b60006020820190508181036000830152615b4681615b0a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ba96024836140d1565b9150615bb482615b4d565b604082019050919050565b60006020820190508181036000830152615bd881615b9c565b9050919050565b6000615bea82614181565b9150615bf583614181565b925082821015615c0857615c07614bf8565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615c496019836140d1565b9150615c5482615c13565b602082019050919050565b60006020820190508181036000830152615c7881615c3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cdb6032836140d1565b9150615ce682615c7f565b604082019050919050565b60006020820190508181036000830152615d0a81615cce565b9050919050565b6000615d1c82614181565b9150615d2783614181565b925082615d3757615d36614ea9565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d6982615d42565b615d738185615d4d565b9350615d838185602086016140e2565b615d8c81614115565b840191505092915050565b6000608082019050615dac6000830187614216565b615db96020830186614216565b615dc660408301856142d9565b8181036060830152615dd88184615d5e565b905095945050505050565b600081519050615df281614037565b92915050565b600060208284031215615e0e57615e0d614001565b5b6000615e1c84828501615de3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e5b6020836140d1565b9150615e6682615e25565b602082019050919050565b60006020820190508181036000830152615e8a81615e4e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ec7601c836140d1565b9150615ed282615e91565b602082019050919050565b60006020820190508181036000830152615ef681615eba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f28278f8ab34ec7203846de79093b582036d26714f3d55ceb338515cce9b008564736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c1caf0c19a8ac28c41fe59ba6c754e4b9bd54de9000000000000000000000000f6e12a3b482c8d51a0f66e6d80c496c310833389000000000000000000000000000000000000000000000000000000000000000d44656d6f6e6963536b756c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44656d6f6e6963536b756c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6170692e64656d6f6e6963736b756c6c732e636f6d2f0000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806367007af61161014f578063af54001e116100c1578063e5a342a31161007a578063e5a342a314610955578063e985e9c514610992578063eb8d2444146109cf578063f0c6aed8146109fa578063f2fde38b14610a25578063f7c64f9e14610a4e57610272565b8063af54001e14610845578063b817877114610870578063b88d4fde14610899578063bbda56a1146108c2578063c3efa64c146108ed578063c87b56dd1461091857610272565b806375796f761161011357806375796f76146107495780637ba9466b146107725780638da5cb5b1461079b57806395d89b41146107c6578063a22cb465146107f1578063a67104801461081a57610272565b806367007af6146106885780636c0360eb146106b35780636d60e6c1146106de57806370a08231146106f5578063715018a61461073257610272565b80632e1a7d4d116101e85780634569f0af116101ac5780634569f0af146105525780634a7d80b31461058f5780634f6ccce7146105ba5780635303f68c146105f757806355f804b3146106225780636352211e1461064b57610272565b80632e1a7d4d146104815780632f745c59146104aa57806334918dfd146104e75780633a35ccc8146104fe57806342842e0e1461052957610272565b806318160ddd1161023a57806318160ddd146103825780631b2ef1ca146103ad5780631cac10c6146103c957806320d10169146103f257806323b872dd1461041b57806328bb55ba1461044457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630e78795e14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190614063565b610a77565b6040516102ab91906140ab565b60405180910390f35b3480156102c057600080fd5b506102c9610af1565b6040516102d6919061415f565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906141b7565b610b83565b6040516103139190614225565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e919061426c565b610c08565b005b34801561035157600080fd5b5061036c600480360381019061036791906142ac565b610d20565b60405161037991906142e8565b60405180910390f35b34801561038e57600080fd5b50610397610d38565b6040516103a491906142e8565b60405180910390f35b6103c760048036038101906103c29190614303565b610d45565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061448b565b611296565b005b3480156103fe57600080fd5b50610419600480360381019061041491906144d4565b6116ba565b005b34801561042757600080fd5b50610442600480360381019061043d9190614530565b611ee3565b005b34801561045057600080fd5b5061046b600480360381019061046691906142ac565b611f43565b60405161047891906142e8565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906141b7565b611f5b565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061426c565b6120d8565b6040516104de91906142e8565b60405180910390f35b3480156104f357600080fd5b506104fc61217d565b005b34801561050a57600080fd5b50610513612225565b60405161052091906142e8565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190614530565b61222b565b005b34801561055e57600080fd5b50610579600480360381019061057491906141b7565b61224b565b60405161058691906140ab565b60405180910390f35b34801561059b57600080fd5b506105a461226b565b6040516105b19190614225565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906141b7565b612291565b6040516105ee91906142e8565b60405180910390f35b34801561060357600080fd5b5061060c612302565b60405161061991906140ab565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190614638565b612315565b005b34801561065757600080fd5b50610672600480360381019061066d91906141b7565b6123ab565b60405161067f9190614225565b60405180910390f35b34801561069457600080fd5b5061069d61245d565b6040516106aa91906142e8565b60405180910390f35b3480156106bf57600080fd5b506106c8612463565b6040516106d5919061415f565b60405180910390f35b3480156106ea57600080fd5b506106f36124f1565b005b34801561070157600080fd5b5061071c600480360381019061071791906142ac565b612599565b60405161072991906142e8565b60405180910390f35b34801561073e57600080fd5b50610747612651565b005b34801561075557600080fd5b50610770600480360381019061076b91906142ac565b6126d9565b005b34801561077e57600080fd5b50610799600480360381019061079491906141b7565b612799565b005b3480156107a757600080fd5b506107b061281f565b6040516107bd9190614225565b60405180910390f35b3480156107d257600080fd5b506107db612849565b6040516107e8919061415f565b60405180910390f35b3480156107fd57600080fd5b50610818600480360381019061081391906146ad565b6128db565b005b34801561082657600080fd5b5061082f6128f1565b60405161083c91906142e8565b60405180910390f35b34801561085157600080fd5b5061085a6128f7565b60405161086791906142e8565b60405180910390f35b34801561087c57600080fd5b50610897600480360381019061089291906141b7565b6128fd565b005b3480156108a557600080fd5b506108c060048036038101906108bb919061478e565b612983565b005b3480156108ce57600080fd5b506108d76129e5565b6040516108e491906142e8565b60405180910390f35b3480156108f957600080fd5b506109026129eb565b60405161090f91906142e8565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a91906141b7565b6129f1565b60405161094c919061415f565b60405180910390f35b34801561096157600080fd5b5061097c600480360381019061097791906141b7565b612a98565b60405161098991906140ab565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190614811565b612ab8565b6040516109c691906140ab565b60405180910390f35b3480156109db57600080fd5b506109e4612b4c565b6040516109f191906140ab565b60405180910390f35b348015610a0657600080fd5b50610a0f612b5f565b604051610a1c91906142e8565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906142ac565b612b65565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906141b7565b612c5d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea5750610ae982612ce3565b5b9050919050565b606060008054610b0090614880565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90614880565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b8e82612dc5565b610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc490614924565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c13826123ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906149b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca3612e31565b73ffffffffffffffffffffffffffffffffffffffff161480610cd25750610cd181610ccc612e31565b612ab8565b5b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890614a48565b60405180910390fd5b610d1b8383612e39565b505050565b60196020528060005260406000206000915090505481565b6000600880549050905090565b601360009054906101000a900460ff16610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b90614ab4565b60405180910390fd5b601054821115610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090614b46565b60405180910390fd5b6003811480610de85750600581145b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614bd8565b60405180910390fd5b60006003821415610f1c576109c483600e54610e439190614c27565b1115610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90614cc9565b60405180910390fd5b6032601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610ed19190614c27565b1115610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990614d5b565b60405180910390fd5b601154905061100b565b600582141561100a57609683600f54610f359190614c27565b1115610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90614cc9565b60405180910390fd5b6005601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610fc39190614c27565b1115611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90614ded565b60405180910390fd5b60125490505b5b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016110699190614225565b60206040518083038186803b15801561108157600080fd5b505afa158015611095573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b99190614e22565b1190506000816110d45784836110cf9190614e4f565b6110f9565b6064605086856110e49190614e4f565b6110ee9190614e4f565b6110f89190614ed8565b5b90503481111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590614f55565b60405180910390fd5b60005b8581101561128e57600060038614156111df5760156000815461116390614f75565b91905081905590506001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bb9190614c27565b92505081905550600e60008154809291906111d590614f75565b9190505550611270565b600586141561126f576016600081546111f790614f75565b91905081905590506001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124f9190614c27565b92505081905550600f600081548092919061126990614f75565b91905055505b5b61127a3382612ef2565b50808061128690614f75565b915050611141565b505050505050565b601360019054906101000a900460ff166112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061500a565b60405180910390fd5b8051600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360016040518363ffffffff1660e01b815260040161134492919061502a565b60206040518083038186803b15801561135c57600080fd5b505afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113949190614e22565b10156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061509f565b60405180910390fd5b60005b81518110156116b65760008282815181106113f6576113f56150bf565b5b60200260200101519050601b600082815260200190815260200160002060009054906101000a900460ff16611460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114579061513a565b60405180910390fd5b6018600082815260200190815260200160002060009054906101000a900460ff16156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b8906151cc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161153391906142e8565b60206040518083038186803b15801561154b57600080fd5b505afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190615201565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061527a565b60405180910390fd5b60016018600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560013360016040518463ffffffff1660e01b81526004016116669392919061529a565b600060405180830381600087803b15801561168057600080fd5b505af1158015611694573d6000803e3d6000fd5b505050506116a23382612ef2565b5080806116ae90614f75565b9150506113d8565b5050565b601360019054906101000a900460ff16611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061500a565b60405180910390fd5b60018114806117185750600381145b806117235750600581145b611762576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117599061531d565b60405180910390fd5b81518161176f9190614e4f565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360006040518363ffffffff1660e01b81526004016117cc92919061502a565b60206040518083038186803b1580156117e457600080fd5b505afa1580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c9190614e22565b101561185d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118549061509f565b60405180910390fd5b60038114156118fa576032601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483516118b49190614c27565b11156118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614d5b565b60405180910390fd5b611994565b6005811415611993576005601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483516119519190614c27565b1115611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614ded565b60405180910390fd5b5b5b60005b8251811015611ede5760008382815181106119b5576119b46150bf565b5b60200260200101519050601b600082815260200190815260200160002060009054906101000a900460ff1615611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906153af565b60405180910390fd5b6018600082815260200190815260200160002060009054906101000a900460ff1615611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890615441565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611af391906142e8565b60206040518083038186803b158015611b0b57600080fd5b505afa158015611b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b439190615201565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906154d3565b60405180910390fd5b60016018600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506001831415611c7057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360016040518463ffffffff1660e01b8152600401611c2f9392919061529a565b600060405180830381600087803b158015611c4957600080fd5b505af1158015611c5d573d6000803e3d6000fd5b50505050611c6b3382612ef2565b611eca565b6003831415611d9e576001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc99190614c27565b92505081905550600e6000815480929190611ce390614f75565b9190505550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360036040518463ffffffff1660e01b8152600401611d499392919061529a565b600060405180830381600087803b158015611d6357600080fd5b505af1158015611d77573d6000803e3d6000fd5b50505050611d9933601560008154611d8e90614f75565b919050819055612ef2565b611ec9565b6005831415611ec8576001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df79190614c27565b92505081905550600f6000815480929190611e1190614f75565b9190505550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d777225560003360056040518463ffffffff1660e01b8152600401611e779392919061529a565b600060405180830381600087803b158015611e9157600080fd5b505af1158015611ea5573d6000803e3d6000fd5b50505050611ec733601660008154611ebc90614f75565b919050819055612ef2565b5b5b5b508080611ed690614f75565b915050611997565b505050565b611ef4611eee612e31565b82612f10565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a90615565565b60405180910390fd5b611f3e838383612fee565b505050565b601a6020528060005260406000206000915090505481565b611f63612e31565b73ffffffffffffffffffffffffffffffffffffffff16611f8161281f565b73ffffffffffffffffffffffffffffffffffffffff1614611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906155d1565b60405180910390fd5b8047101561201a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120119061563d565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061207a57600080fd5b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516120cd92919061502a565b60405180910390a150565b60006120e383612599565b8210612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b906156cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b612185612e31565b73ffffffffffffffffffffffffffffffffffffffff166121a361281f565b73ffffffffffffffffffffffffffffffffffffffff16146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906155d1565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b60155481565b61224683838360405180602001604052806000815250612983565b505050565b601b6020528060005260406000206000915054906101000a900460ff1681565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061229b610d38565b82106122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390615761565b60405180910390fd5b600882815481106122f0576122ef6150bf565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61231d612e31565b73ffffffffffffffffffffffffffffffffffffffff1661233b61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612388906155d1565b60405180910390fd5b80601490805190602001906123a7929190613f54565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906157f3565b60405180910390fd5b80915050919050565b600f5481565b6014805461247090614880565b80601f016020809104026020016040519081016040528092919081815260200182805461249c90614880565b80156124e95780601f106124be576101008083540402835291602001916124e9565b820191906000526020600020905b8154815290600101906020018083116124cc57829003601f168201915b505050505081565b6124f9612e31565b73ffffffffffffffffffffffffffffffffffffffff1661251761281f565b73ffffffffffffffffffffffffffffffffffffffff161461256d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612564906155d1565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561260a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260190615885565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612659612e31565b73ffffffffffffffffffffffffffffffffffffffff1661267761281f565b73ffffffffffffffffffffffffffffffffffffffff16146126cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c4906155d1565b60405180910390fd5b6126d76000613255565b565b6126e1612e31565b73ffffffffffffffffffffffffffffffffffffffff166126ff61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c906155d1565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127a1612e31565b73ffffffffffffffffffffffffffffffffffffffff166127bf61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280c906155d1565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461285890614880565b80601f016020809104026020016040519081016040528092919081815260200182805461288490614880565b80156128d15780601f106128a6576101008083540402835291602001916128d1565b820191906000526020600020905b8154815290600101906020018083116128b457829003601f168201915b5050505050905090565b6128ed6128e6612e31565b838361331b565b5050565b60115481565b60105481565b612905612e31565b73ffffffffffffffffffffffffffffffffffffffff1661292361281f565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612970906155d1565b60405180910390fd5b8060128190555050565b61299461298e612e31565b83612f10565b6129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615565565b60405180910390fd5b6129df84848484613488565b50505050565b60125481565b600e5481565b60606129fc82612dc5565b612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615917565b60405180910390fd5b6000612a456134e4565b90506000815111612a655760405180602001604052806000815250612a90565b80612a6f84613576565b604051602001612a80929190615973565b6040516020818303038152906040525b915050919050565b60186020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b60165481565b612b6d612e31565b73ffffffffffffffffffffffffffffffffffffffff16612b8b61281f565b73ffffffffffffffffffffffffffffffffffffffff1614612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd8906155d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4890615a09565b60405180910390fd5b612c5a81613255565b50565b612c65612e31565b73ffffffffffffffffffffffffffffffffffffffff16612c8361281f565b73ffffffffffffffffffffffffffffffffffffffff1614612cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd0906155d1565b60405180910390fd5b8060108190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612dbe5750612dbd826136d7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612eac836123ab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612f0c828260405180602001604052806000815250613741565b5050565b6000612f1b82612dc5565b612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5190615a9b565b60405180910390fd5b6000612f65836123ab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fd457508373ffffffffffffffffffffffffffffffffffffffff16612fbc84610b83565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fe55750612fe48185612ab8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300e826123ab565b73ffffffffffffffffffffffffffffffffffffffff1614613064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305b90615b2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb90615bbf565b60405180910390fd5b6130df83838361379c565b6130ea600082612e39565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461313a9190615bdf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131919190614c27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132508383836138b0565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561338a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338190615c5f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161347b91906140ab565b60405180910390a3505050565b613493848484612fee565b61349f848484846138b5565b6134de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d590615cf1565b60405180910390fd5b50505050565b6060601480546134f390614880565b80601f016020809104026020016040519081016040528092919081815260200182805461351f90614880565b801561356c5780601f106135415761010080835404028352916020019161356c565b820191906000526020600020905b81548152906001019060200180831161354f57829003601f168201915b5050505050905090565b606060008214156135be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136d2565b600082905060005b600082146135f05780806135d990614f75565b915050600a826135e99190614ed8565b91506135c6565b60008167ffffffffffffffff81111561360c5761360b614348565b5b6040519080825280601f01601f19166020018201604052801561363e5781602001600182028036833780820191505090505b5090505b600085146136cb576001826136579190615bdf565b9150600a856136669190615d11565b60306136729190614c27565b60f81b818381518110613688576136876150bf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136c49190614ed8565b9450613642565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61374b8383613a4c565b61375860008484846138b5565b613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e90615cf1565b60405180910390fd5b505050565b6137a7838383613c26565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137ea576137e581613c2b565b613829565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613828576138278382613c74565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c5761386781613de1565b6138ab565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138aa576138a98282613eb2565b5b5b505050565b505050565b60006138d68473ffffffffffffffffffffffffffffffffffffffff16613f31565b15613a3f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ff612e31565b8786866040518563ffffffff1660e01b81526004016139219493929190615d97565b602060405180830381600087803b15801561393b57600080fd5b505af192505050801561396c57506040513d601f19601f820116820180604052508101906139699190615df8565b60015b6139ef573d806000811461399c576040519150601f19603f3d011682016040523d82523d6000602084013e6139a1565b606091505b506000815114156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615cf1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a44565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab390615e71565b60405180910390fd5b613ac581612dc5565b15613b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613afc90615edd565b60405180910390fd5b613b116000838361379c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b619190614c27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c22600083836138b0565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c8184612599565b613c8b9190615bdf565b9050600060076000848152602001908152602001600020549050818114613d70576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613df59190615bdf565b9050600060096000848152602001908152602001600020549050600060088381548110613e2557613e246150bf565b5b906000526020600020015490508060088381548110613e4757613e466150bf565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e9657613e95615efd565b5b6001900381819060005260206000200160009055905550505050565b6000613ebd83612599565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613f6090614880565b90600052602060002090601f016020900481019282613f825760008555613fc9565b82601f10613f9b57805160ff1916838001178555613fc9565b82800160010185558215613fc9579182015b82811115613fc8578251825591602001919060010190613fad565b5b509050613fd69190613fda565b5090565b5b80821115613ff3576000816000905550600101613fdb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6140408161400b565b811461404b57600080fd5b50565b60008135905061405d81614037565b92915050565b60006020828403121561407957614078614001565b5b60006140878482850161404e565b91505092915050565b60008115159050919050565b6140a581614090565b82525050565b60006020820190506140c0600083018461409c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141005780820151818401526020810190506140e5565b8381111561410f576000848401525b50505050565b6000601f19601f8301169050919050565b6000614131826140c6565b61413b81856140d1565b935061414b8185602086016140e2565b61415481614115565b840191505092915050565b600060208201905081810360008301526141798184614126565b905092915050565b6000819050919050565b61419481614181565b811461419f57600080fd5b50565b6000813590506141b18161418b565b92915050565b6000602082840312156141cd576141cc614001565b5b60006141db848285016141a2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061420f826141e4565b9050919050565b61421f81614204565b82525050565b600060208201905061423a6000830184614216565b92915050565b61424981614204565b811461425457600080fd5b50565b60008135905061426681614240565b92915050565b6000806040838503121561428357614282614001565b5b600061429185828601614257565b92505060206142a2858286016141a2565b9150509250929050565b6000602082840312156142c2576142c1614001565b5b60006142d084828501614257565b91505092915050565b6142e281614181565b82525050565b60006020820190506142fd60008301846142d9565b92915050565b6000806040838503121561431a57614319614001565b5b6000614328858286016141a2565b9250506020614339858286016141a2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61438082614115565b810181811067ffffffffffffffff8211171561439f5761439e614348565b5b80604052505050565b60006143b2613ff7565b90506143be8282614377565b919050565b600067ffffffffffffffff8211156143de576143dd614348565b5b602082029050602081019050919050565b600080fd5b6000614407614402846143c3565b6143a8565b9050808382526020820190506020840283018581111561442a576144296143ef565b5b835b81811015614453578061443f88826141a2565b84526020840193505060208101905061442c565b5050509392505050565b600082601f83011261447257614471614343565b5b81356144828482602086016143f4565b91505092915050565b6000602082840312156144a1576144a0614001565b5b600082013567ffffffffffffffff8111156144bf576144be614006565b5b6144cb8482850161445d565b91505092915050565b600080604083850312156144eb576144ea614001565b5b600083013567ffffffffffffffff81111561450957614508614006565b5b6145158582860161445d565b9250506020614526858286016141a2565b9150509250929050565b60008060006060848603121561454957614548614001565b5b600061455786828701614257565b935050602061456886828701614257565b9250506040614579868287016141a2565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156145a3576145a2614348565b5b6145ac82614115565b9050602081019050919050565b82818337600083830152505050565b60006145db6145d684614588565b6143a8565b9050828152602081018484840111156145f7576145f6614583565b5b6146028482856145b9565b509392505050565b600082601f83011261461f5761461e614343565b5b813561462f8482602086016145c8565b91505092915050565b60006020828403121561464e5761464d614001565b5b600082013567ffffffffffffffff81111561466c5761466b614006565b5b6146788482850161460a565b91505092915050565b61468a81614090565b811461469557600080fd5b50565b6000813590506146a781614681565b92915050565b600080604083850312156146c4576146c3614001565b5b60006146d285828601614257565b92505060206146e385828601614698565b9150509250929050565b600067ffffffffffffffff82111561470857614707614348565b5b61471182614115565b9050602081019050919050565b600061473161472c846146ed565b6143a8565b90508281526020810184848401111561474d5761474c614583565b5b6147588482856145b9565b509392505050565b600082601f83011261477557614774614343565b5b813561478584826020860161471e565b91505092915050565b600080600080608085870312156147a8576147a7614001565b5b60006147b687828801614257565b94505060206147c787828801614257565b93505060406147d8878288016141a2565b925050606085013567ffffffffffffffff8111156147f9576147f8614006565b5b61480587828801614760565b91505092959194509250565b6000806040838503121561482857614827614001565b5b600061483685828601614257565b925050602061484785828601614257565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489857607f821691505b602082108114156148ac576148ab614851565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061490e602c836140d1565b9150614919826148b2565b604082019050919050565b6000602082019050818103600083015261493d81614901565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006149a06021836140d1565b91506149ab82614944565b604082019050919050565b600060208201905081810360008301526149cf81614993565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614a326038836140d1565b9150614a3d826149d6565b604082019050919050565b60006020820190508181036000830152614a6181614a25565b9050919050565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b6000614a9e6013836140d1565b9150614aa982614a68565b602082019050919050565b60006020820190508181036000830152614acd81614a91565b9050919050565b7f596f752063616e206e6f74206d696e742074686174206d616e7920617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b6000614b306024836140d1565b9150614b3b82614ad4565b604082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f596f752063616e206f6e6c79206d696e74204c6576656c2032206f72204c657660008201527f656c20332044656d6f6e696320536b756c6c7300000000000000000000000000602082015250565b6000614bc26033836140d1565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c3282614181565b9150614c3d83614181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7257614c71614bf8565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d6178206c696d697400600082015250565b6000614cb3601f836140d1565b9150614cbe82614c7d565b602082019050919050565b60006020820190508181036000830152614ce281614ca6565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e203530204c65766560008201527f6c20322044656d6f6e696320536b756c6c73207065722077616c6c6574000000602082015250565b6000614d45603d836140d1565b9150614d5082614ce9565b604082019050919050565b60006020820190508181036000830152614d7481614d38565b9050919050565b7f596f752063616e2774206d696e74206d6f7265207468616e2035204c6576656c60008201527f20332044656d6f6e696320536b756c6c73207065722077616c6c657400000000602082015250565b6000614dd7603c836140d1565b9150614de282614d7b565b604082019050919050565b60006020820190508181036000830152614e0681614dca565b9050919050565b600081519050614e1c8161418b565b92915050565b600060208284031215614e3857614e37614001565b5b6000614e4684828501614e0d565b91505092915050565b6000614e5a82614181565b9150614e6583614181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9e57614e9d614bf8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee382614181565b9150614eee83614181565b925082614efe57614efd614ea9565b5b828204905092915050565b7f4554482076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b6000614f3f601d836140d1565b9150614f4a82614f09565b602082019050919050565b60006020820190508181036000830152614f6e81614f32565b9050919050565b6000614f8082614181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fb357614fb2614bf8565b5b600182019050919050565b7f436c61696d696e67206d75737420626520616374697665000000000000000000600082015250565b6000614ff46017836140d1565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b600060408201905061503f6000830185614216565b61504c60208301846142d9565b9392505050565b7f596f7520646f206e6f74206861766520656e6f75676820426c6f6f6400000000600082015250565b6000615089601c836140d1565b915061509482615053565b602082019050919050565b600060208201905081810360008301526150b88161507c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f596f752063616e206f6e6c7920636c61696d204c6f7264000000000000000000600082015250565b60006151246017836140d1565b915061512f826150ee565b602082019050919050565b6000602082019050818103600083015261515381615117565b9050919050565b7f54686973204c6f72642068616420616c7265616479206265656e20636c61696d60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b66022836140d1565b91506151c18261515a565b604082019050919050565b600060208201905081810360008301526151e5816151a9565b9050919050565b6000815190506151fb81614240565b92915050565b60006020828403121561521757615216614001565b5b6000615225848285016151ec565b91505092915050565b7f596f75206d757374206f776e206f726967696e616c204c6f7264000000000000600082015250565b6000615264601a836140d1565b915061526f8261522e565b602082019050919050565b6000602082019050818103600083015261529381615257565b9050919050565b60006060820190506152af60008301866142d9565b6152bc6020830185614216565b6152c960408301846142d9565b949350505050565b7f426c6f6f6420616d6f756e7420697320696e636f727265637400000000000000600082015250565b60006153076019836140d1565b9150615312826152d1565b602082019050919050565b60006020820190508181036000830152615336816152fa565b9050919050565b7f596f75206d7573742075736520616e6f74686572206d6574686f6420746f206360008201527f6c61696d204c6f72640000000000000000000000000000000000000000000000602082015250565b60006153996029836140d1565b91506153a48261533d565b604082019050919050565b600060208201905081810360008301526153c88161538c565b9050919050565b7f546869732044656d6f6e696320536b756c6c2068616420616c7265616479206260008201527f65656e20636c61696d6564000000000000000000000000000000000000000000602082015250565b600061542b602b836140d1565b9150615436826153cf565b604082019050919050565b6000602082019050818103600083015261545a8161541e565b9050919050565b7f596f75206d757374206f776e206f726967696e616c2043727970746f536b756c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b60006154bd6021836140d1565b91506154c882615461565b604082019050919050565b600060208201905081810360008301526154ec816154b0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061554f6031836140d1565b915061555a826154f3565b604082019050919050565b6000602082019050818103600083015261557e81615542565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006155bb6020836140d1565b91506155c682615585565b602082019050919050565b600060208201905081810360008301526155ea816155ae565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006156276014836140d1565b9150615632826155f1565b602082019050919050565b600060208201905081810360008301526156568161561a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006156b9602b836140d1565b91506156c48261565d565b604082019050919050565b600060208201905081810360008301526156e8816156ac565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061574b602c836140d1565b9150615756826156ef565b604082019050919050565b6000602082019050818103600083015261577a8161573e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006157dd6029836140d1565b91506157e882615781565b604082019050919050565b6000602082019050818103600083015261580c816157d0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061586f602a836140d1565b915061587a82615813565b604082019050919050565b6000602082019050818103600083015261589e81615862565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615901602f836140d1565b915061590c826158a5565b604082019050919050565b60006020820190508181036000830152615930816158f4565b9050919050565b600081905092915050565b600061594d826140c6565b6159578185615937565b93506159678185602086016140e2565b80840191505092915050565b600061597f8285615942565b915061598b8284615942565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006159f36026836140d1565b91506159fe82615997565b604082019050919050565b60006020820190508181036000830152615a22816159e6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615a85602c836140d1565b9150615a9082615a29565b604082019050919050565b60006020820190508181036000830152615ab481615a78565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615b176025836140d1565b9150615b2282615abb565b604082019050919050565b60006020820190508181036000830152615b4681615b0a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ba96024836140d1565b9150615bb482615b4d565b604082019050919050565b60006020820190508181036000830152615bd881615b9c565b9050919050565b6000615bea82614181565b9150615bf583614181565b925082821015615c0857615c07614bf8565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615c496019836140d1565b9150615c5482615c13565b602082019050919050565b60006020820190508181036000830152615c7881615c3c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cdb6032836140d1565b9150615ce682615c7f565b604082019050919050565b60006020820190508181036000830152615d0a81615cce565b9050919050565b6000615d1c82614181565b9150615d2783614181565b925082615d3757615d36614ea9565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d6982615d42565b615d738185615d4d565b9350615d838185602086016140e2565b615d8c81614115565b840191505092915050565b6000608082019050615dac6000830187614216565b615db96020830186614216565b615dc660408301856142d9565b8181036060830152615dd88184615d5e565b905095945050505050565b600081519050615df281614037565b92915050565b600060208284031215615e0e57615e0d614001565b5b6000615e1c84828501615de3565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e5b6020836140d1565b9150615e6682615e25565b602082019050919050565b60006020820190508181036000830152615e8a81615e4e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ec7601c836140d1565b9150615ed282615e91565b602082019050919050565b60006020820190508181036000830152615ef681615eba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f28278f8ab34ec7203846de79093b582036d26714f3d55ceb338515cce9b008564736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c1caf0c19a8ac28c41fe59ba6c754e4b9bd54de9000000000000000000000000f6e12a3b482c8d51a0f66e6d80c496c310833389000000000000000000000000000000000000000000000000000000000000000d44656d6f6e6963536b756c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d44656d6f6e6963536b756c6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6170692e64656d6f6e6963736b756c6c732e636f6d2f0000

-----Decoded View---------------
Arg [0] : name (string): DemonicSkulls
Arg [1] : symbol (string): DemonicSkulls
Arg [2] : _baseUri (string): https://api.demonicskulls.com/
Arg [3] : skullsContract (address): 0xc1Caf0C19A8AC28c41Fe59bA6c754e4b9bd54dE9
Arg [4] : bloodsContract (address): 0xF6E12A3B482C8d51a0f66e6d80c496C310833389

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000c1caf0c19a8ac28c41fe59ba6c754e4b9bd54de9
Arg [4] : 000000000000000000000000f6e12a3b482c8d51a0f66e6d80c496c310833389
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 44656d6f6e6963536b756c6c7300000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [8] : 44656d6f6e6963536b756c6c7300000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [10] : 68747470733a2f2f6170692e64656d6f6e6963736b756c6c732e636f6d2f0000


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.