ETH Price: $3,141.51 (-8.59%)
Gas: 11 Gwei

Token

TheOne (TheOne)
 

Overview

Max Total Supply

19 TheOne

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
TechLead
Balance
1 TheOne
0x5922b0bbae5182f2b70609f5dfd08f7da561f5a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TheOne

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : TheOne.sol
//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";


contract TheOne is ERC721Enumerable, Ownable, VRFConsumerBase {
    using Strings for uint256;

    bytes32 internal keyHash;
    uint256 internal fee;

    uint256 public _price = 0.05 ether;
    uint256 public _preSalePrice = 0.025 ether;
    uint256 public _maxSupply = 10000;
    bool public _preSaleIsActive = false;
    bool public _saleIsActive = false;

    // Arbitrarily big number, bigger than maxSupply
    uint256 public theOne = 50000;

    address author = 0xb5e1eD2bbA3CD5bC63066d355dBBE09fD89FEc2d;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    /**
     * Constructor inherits VRFConsumerBase
     * 
     * Network: ETH MAINNET
     * Chainlink VRF Coordinator address: 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
     * LINK token address:                0x514910771AF9Ca656af840dff83E8264EcF986CA
     * Key Hash: 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445
     */
    constructor() public 
    ERC721("TheOne", "TheOne") 
    VRFConsumerBase(
        0xf0d54349aDdcf704F77AE15b96510dEA15cb7952, // VRF Coordinator
        0x514910771AF9Ca656af840dff83E8264EcF986CA  // LINK Token
    )
    {
        _safeMint(author, 0);
        keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
        fee = 2.0 * 10 ** 18; // 2.0 LINK (Varies by network)
    }

    /** 
     * Requests randomness 
     */
    function getRandomNumber() internal returns (bytes32 requestId) {
        return requestRandomness(keyHash, fee);
    }

    /**
     * Callback function used by VRF Coordinator
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        pickTheOne(randomness);
    }

    function pickTheOne(uint256 randomness) private {
        require(theOne > _maxSupply, "the_one_already_set");

        uint256 num1 = uint256(keccak256(abi.encode(randomness, 0))) % _maxSupply;
        uint256 num2 = uint256(keccak256(abi.encode(randomness, 1))) % 17000;
        if (num1 < num2) {
            theOne = num1;
        } else {
            theOne = num2;
        }
    }

    function preSaleMint(uint256 mintCount) public payable {
        uint256 supply = totalSupply();

        require(_preSaleIsActive,                       "presale_not_active");
        require(balanceOf(msg.sender) + mintCount <= 3, "presale_wallet_limit_met");
        require(supply + mintCount <= 1000,             "max_token_supply_exceeded");
        require(msg.value >= _preSalePrice * mintCount, "insufficient_payment_value");

        for (uint256 i = 0; i < mintCount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint256 mintCount) public payable {
        uint256 supply = totalSupply();

        require(_saleIsActive,                      "sale_not_active");
        require(mintCount <= 10,                    "max_mint_count_exceeded");
        require(supply + mintCount <= _maxSupply,   "max_token_supply_exceeded");
        require(msg.value >= _price * mintCount,    "insufficient_payment_value");

        for (uint256 i = 0; i < mintCount; i++) {
            _safeMint(msg.sender, supply + i);
        }
        if (supply + mintCount == _maxSupply) {
            withdrawAll();
            getRandomNumber();
        }
    }

    function giveaway(address winner) public onlyOwner {
        uint256 supply = totalSupply();

        // Cannot be the last one minted
        require(supply + 1 < _maxSupply,   "max_token_supply_exceeded");

        _safeMint(winner, supply);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string memory name;
        string[5] memory parts;
        parts[
            0
        ] = '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMinYMin meet" viewBox="0 0 420 420"> <style type="text/css"> <![CDATA[ text { fill: white; font-family: monospace; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #one { filter: url(#filter); } ]]> </style> <rect width="100%" height="100%" fill="#222222" /> <defs> <filter id="filter"> <feFlood flood-color="#222222" result="#222222" /> <feFlood flood-color="red" result="flood1" /> <feFlood flood-color="limegreen" result="flood2" /> <feOffset in="SourceGraphic" dx="2" dy="0" result="off1a"/> <feOffset in="SourceGraphic" dx="1" dy="0" result="off1b"/> <feOffset in="SourceGraphic" dx="-1" dy="0" result="off2a"/> <feOffset in="SourceGraphic" dx="-1" dy="0" result="off2b"/> <feComposite in="flood1" in2="off1a" operator="in" result="comp1" /> <feComposite in="flood2" in2="off2a" operator="in" result="comp2" /> <feMerge x="0" width="100%" result="merge1"> <feMergeNode in = "black" /> <feMergeNode in = "comp1" /> <feMergeNode in = "off1b" /> <animate attributeName="y" id = "y" dur ="8s" values = "254px; 254px; 180px; 255px; 180px; 152px; 152px; 200px; 190px; 255px; 255px; 170px; 210px; 190px; 254px; 190px; 220px; 160px; 180px; 254px; 252px" keyTimes = "0; 0.362; 0.368; 0.421; 0.440; 0.477; 0.518; 0.564; 0.593; 0.613; 0.644; 0.693; 0.721; 0.736; 0.772; 0.818; 0.844; 0.894; 0.925; 0.939; 1" repeatCount = "indefinite" /> <animate attributeName="height" id = "h" dur ="8s" values = "10px; 0px; 10px; 30px; 50px; 0px; 10px; 0px; 0px; 0px; 10px; 50px; 40px; 0px; 0px; 0px; 40px; 30px; 10px; 0px; 50px" kyTimes = "0; 0.362; 0.368; 0.421; 0.440; 0.477; 0.518; 0.564; 0.593; 0.613; 0.644; 0.693; 0.721; 0.736; 0.772; 0.818; 0.844; 0.894; 0.925; 0.939; 1" repeatCount = "indefinite" /> </feMerge> <feMerge x="0" width="100%" y="60px" height="150px" result="merge2"> <feMergeNode in = "black" /> <feMergeNode in = "comp2" /> <feMergeNode in = "off2b" /> <animate attributeName="y" id = "y" dur ="8s" values = "253px; 254px; 219px; 203px; 192px; 254px; 228px; 239px; 246px; 250px; 217px; 200px; 246px; 216px; 238px; 192px; 163px; 250px; 250px; 254px;" keyTimes = "0; 0.055; 0.100; 0.125; 0.159; 0.182; 0.202; 0.236; 0.268; 0.326; 0.357; 0.400; 0.408; 0.461; 0.493; 0.513; 0.548; 0.577; 0.613; 1" repeatCount = "indefinite" /> <animate attributeName="height" id = "h" dur = "8s" values = "0px; 0px; 0px; 16px; 16px; 12px; 12px; 0px; 0px; 5px; 10px; 22px; 33px; 11px; 0px; 0px; 10px" keyTimes = "0; 0.055; 0.100; 0.125; 0.159; 0.182; 0.202; 0.236; 0.268; 0.326; 0.357; 0.400; 0.408; 0.461; 0.493; 0.513; 1" repeatCount = "indefinite" /> </feMerge> <feMerge> <feMergeNode in="SourceGraphic" /> <feMergeNode in="merge1" /> <feMergeNode in="merge2" /> </feMerge> </filter> </defs> <g> <text x="50%" y="100" font-size="70" class="base" dominant-baseline="middle" text-anchor="middle">THE</text><text x="50%" y="210" font-size="140" class="base" dominant-baseline="middle" text-anchor="middle" id="one">';

        if (theOne > _maxSupply) {
            name = string(abi.encodePacked("The ??? #", toString(tokenId)));
            parts[1] = "???";
            parts[3] = string(abi.encodePacked("#", toString(tokenId)));
        } else if (tokenId == theOne) {
            name = "The One";
            parts[1] = "One";
            parts[3] = "";
        } else {
            name = string(abi.encodePacked("The None #", toString(tokenId)));
            parts[1] = "None";
            parts[3] = string(abi.encodePacked("#", toString(tokenId)));
        }

        parts[2] = '</text><text x="50%" y="280" font-size="20" class="base" dominant-baseline="middle" text-anchor="middle">';
        parts[4] = '</text></g></svg>';

        string memory output = string(
            abi.encodePacked(
                parts[0],
                parts[1],
                parts[2],
                parts[3],
                parts[4]
            )
        );

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "',
                        name,
                        '", "description": "The One is a fully on-chain collection featuring a single The One image. The One image is revealed only after all 10,000 have been minted.", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '"}'
                    )
                )
            )
        );
        output = string(
            abi.encodePacked("data:application/json;base64,", json)
        );

        return output;
    }

    function setPrice(uint256 price) public onlyOwner {
        _price = price;
    }

    function preSaleStart() public onlyOwner {
        _preSaleIsActive = true;
    }

    function saleStart() public onlyOwner {
        _saleIsActive = true;
    }

    function retryPickTheOne() public onlyOwner {
        getRandomNumber();
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(author).send(address(this).balance));
    }

    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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);
    }
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 2 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 17 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(
    bytes32 _keyHash,
    uint256 _fee
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(
    address _vrfCoordinator,
    address _link
  ) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    external
  {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 6 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 17 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 17 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 16 of 17 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {

  function allowance(
    address owner,
    address spender
  )
    external
    view
    returns (
      uint256 remaining
    );

  function approve(
    address spender,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function balanceOf(
    address owner
  )
    external
    view
    returns (
      uint256 balance
    );

  function decimals()
    external
    view
    returns (
      uint8 decimalPlaces
    );

  function decreaseApproval(
    address spender,
    uint256 addedValue
  )
    external
    returns (
      bool success
    );

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

  function name()
    external
    view
    returns (
      string memory tokenName
    );

  function symbol()
    external
    view
    returns (
      string memory tokenSymbol
    );

  function totalSupply()
    external
    view
    returns (
      uint256 totalTokensIssued
    );

  function transfer(
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  )
    external
    returns (
      bool success
    );

  function transferFrom(
    address from,
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

}

File 17 of 17 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  )
    internal
    pure
    returns (
      uint256
    )
  {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash,
    uint256 _vRFInputSeed
  )
    internal
    pure
    returns (
      bytes32
    )
  {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"winner","type":"address"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintCount","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":[{"internalType":"uint256","name":"mintCount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retryPickTheOne","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":"saleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","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":[],"name":"theOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c060405266b1a2bc2ec50000600e556658d15e17628000600f556127106010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555061c35060125573b5e1ed2bba3cd5bc63066d355dbbe09fd89fec2d601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000be57600080fd5b5073f0d54349addcf704f77ae15b96510dea15cb795273514910771af9ca656af840dff83e8264ecf986ca6040518060400160405280600681526020017f5468654f6e6500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5468654f6e65000000000000000000000000000000000000000000000000000081525081600090805190602001906200016d92919062000daf565b5080600190805190602001906200018692919062000daf565b505050620001a96200019d6200028d60201b60201c565b6200029560201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050506200024e601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200035b60201b60201c565b7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44560001b600c81905550671bc16d674ec80000600d8190555062001359565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200037d8282604051806020016040528060008152506200038160201b60201c565b5050565b620003938383620003ef60201b60201c565b620003a86000848484620005d560201b60201c565b620003ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e190620010ad565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004599062001113565b60405180910390fd5b62000473816200078f60201b60201c565b15620004b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ad90620010cf565b60405180910390fd5b620004ca60008383620007fb60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200051c919062001162565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006038473ffffffffffffffffffffffffffffffffffffffff166200094260201b620021b71760201c565b1562000782578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006356200028d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000659949392919062001059565b602060405180830381600087803b1580156200067457600080fd5b505af1925050508015620006a857506040513d601f19601f82011682018060405250810190620006a5919062000e76565b60015b62000731573d8060008114620006db576040519150601f19603f3d011682016040523d82523d6000602084013e620006e0565b606091505b5060008151141562000729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072090620010ad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000787565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008138383836200095560201b620021ca1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000860576200085a816200095a60201b60201c565b620008a8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008a757620008a68382620009a360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008f557620008ef8162000b2060201b60201c565b6200093d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200093c576200093b828262000c6860201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009bd8462000cf460201b62000dd31760201c565b620009c99190620011bf565b905060006007600084815260200190815260200160002054905081811462000aaf576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b369190620011bf565b905060006009600084815260200190815260200160002054905060006008838154811062000b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000bd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000c808362000cf460201b62000dd31760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d5f90620010f1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000dbd906200129a565b90600052602060002090601f01602090048101928262000de1576000855562000e2d565b82601f1062000dfc57805160ff191683800117855562000e2d565b8280016001018555821562000e2d579182015b8281111562000e2c57825182559160200191906001019062000e0f565b5b50905062000e3c919062000e40565b5090565b5b8082111562000e5b57600081600090555060010162000e41565b5090565b60008151905062000e70816200133f565b92915050565b60006020828403121562000e8957600080fd5b600062000e998482850162000e5f565b91505092915050565b62000ead81620011fa565b82525050565b600062000ec08262001135565b62000ecc818562001140565b935062000ede81856020860162001264565b62000ee9816200132e565b840191505092915050565b600062000f0360328362001151565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062000f6b601c8362001151565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600062000fad602a8362001151565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200101560208362001151565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b62001053816200125a565b82525050565b600060808201905062001070600083018762000ea2565b6200107f602083018662000ea2565b6200108e604083018562001048565b8181036060830152620010a2818462000eb3565b905095945050505050565b60006020820190508181036000830152620010c88162000ef4565b9050919050565b60006020820190508181036000830152620010ea8162000f5c565b9050919050565b600060208201905081810360008301526200110c8162000f9e565b9050919050565b600060208201905081810360008301526200112e8162001006565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200116f826200125a565b91506200117c836200125a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011b457620011b3620012d0565b5b828201905092915050565b6000620011cc826200125a565b9150620011d9836200125a565b925082821015620011ef57620011ee620012d0565b5b828203905092915050565b600062001207826200123a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200128457808201518184015260208101905062001267565b8381111562001294576000848401525b50505050565b60006002820490506001821680620012b357607f821691505b60208210811415620012ca57620012c9620012ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6200134a816200120e565b81146200135657600080fd5b50565b60805160601c60a05160601c615f626200138c600039600081816113ae0152612dfe01526000612dc20152615f626000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106f4578063d8c7a79714610731578063dfd233dd1461075c578063e985e9c514610785578063f2fde38b146107c257610204565b8063a0712d681461066f578063a22cb4651461068b578063ab0bcc41146106b4578063b88d4fde146106cb57610204565b8063853828b6116100e7578063853828b6146105bd5780638da5cb5b146105c757806391b7f5ed146105f257806394985ddd1461061b57806395d89b411461064457610204565b8063715018a6146105365780637835c6351461054d5780638331e11b146105695780638462151c1461058057610204565b8063235b6ea11161019b5780634f6ccce71161016a5780634f6ccce714610429578063512ace86146104665780635d893ba0146104915780636352211e146104bc57806370a08231146104f957610204565b8063235b6ea11461036f57806323b872dd1461039a5780632f745c59146103c357806342842e0e1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630d5624b31461030257806318160ddd1461031957806322f4596f1461034457610204565b8063016d49751461020957806301ffc9a71461023457806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b5061021e6107eb565b60405161022b9190614d50565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190613a7d565b6107f1565b6040516102689190614985565b60405180910390f35b34801561027d57600080fd5b5061028661086b565b6040516102939190614a0e565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190613acf565b6108fd565b6040516102d091906148be565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906139dc565b610982565b005b34801561030e57600080fd5b50610317610a9a565b005b34801561032557600080fd5b5061032e610b33565b60405161033b9190614d50565b60405180910390f35b34801561035057600080fd5b50610359610b40565b6040516103669190614d50565b60405180910390f35b34801561037b57600080fd5b50610384610b46565b6040516103919190614d50565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906138d6565b610b4c565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906139dc565b610bac565b6040516103f79190614d50565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906138d6565b610c51565b005b34801561043557600080fd5b50610450600480360381019061044b9190613acf565b610c71565b60405161045d9190614d50565b60405180910390f35b34801561047257600080fd5b5061047b610d08565b6040516104889190614d50565b60405180910390f35b34801561049d57600080fd5b506104a6610d0e565b6040516104b39190614985565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613acf565b610d21565b6040516104f091906148be565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613871565b610dd3565b60405161052d9190614d50565b60405180910390f35b34801561054257600080fd5b5061054b610e8b565b005b61056760048036038101906105629190613acf565b610f13565b005b34801561057557600080fd5b5061057e61109d565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613871565b611124565b6040516105b49190614963565b60405180910390f35b6105c561121e565b005b3480156105d357600080fd5b506105dc6112fc565b6040516105e991906148be565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613acf565b611326565b005b34801561062757600080fd5b50610642600480360381019061063d9190613a41565b6113ac565b005b34801561065057600080fd5b50610659611448565b6040516106669190614a0e565b60405180910390f35b61068960048036038101906106849190613acf565b6114da565b005b34801561069757600080fd5b506106b260048036038101906106ad91906139a0565b611678565b005b3480156106c057600080fd5b506106c96117f9565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613925565b611892565b005b34801561070057600080fd5b5061071b60048036038101906107169190613acf565b6118f4565b6040516107289190614a0e565b60405180910390f35b34801561073d57600080fd5b50610746611f32565b6040516107539190614985565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613871565b611f45565b005b34801561079157600080fd5b506107ac60048036038101906107a7919061389a565b61202b565b6040516107b99190614985565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613871565b6120bf565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108645750610863826121cf565b5b9050919050565b60606000805461087a906150a0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a6906150a0565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826122b1565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90614bd0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610d21565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590614c90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d61231d565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a4661231d565b61202b565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290614b10565b60405180910390fd5b610a958383612325565b505050565b610aa261231d565b73ffffffffffffffffffffffffffffffffffffffff16610ac06112fc565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90614bf0565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600880549050905090565b60105481565b600e5481565b610b5d610b5761231d565b826123de565b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390614cd0565b60405180910390fd5b610ba78383836124bc565b505050565b6000610bb783610dd3565b8210610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614a30565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c6c83838360405180602001604052806000815250611892565b505050565b6000610c7b610b33565b8210610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390614d10565b60405180910390fd5b60088281548110610cf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60125481565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190614b50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90614b30565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9361231d565b73ffffffffffffffffffffffffffffffffffffffff16610eb16112fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90614bf0565b60405180910390fd5b610f116000612718565b565b6000610f1d610b33565b9050601160009054906101000a900460ff16610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590614d30565b60405180910390fd5b600382610f7a33610dd3565b610f849190614e9a565b1115610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614c50565b60405180910390fd5b6103e88282610fd49190614e9a565b1115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90614cf0565b60405180910390fd5b81600f546110239190614f21565b341015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614cb0565b60405180910390fd5b60005b82811015611098576110853382846110809190614e9a565b6127de565b8080611090906150d2565b915050611068565b505050565b6110a561231d565b73ffffffffffffffffffffffffffffffffffffffff166110c36112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614bf0565b60405180910390fd5b6111216127fc565b50565b6060600061113183610dd3565b905060008167ffffffffffffffff811115611175577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111a35781602001602082028036833780820191505090505b50905060005b82811015611213576111bb8582610bac565b8282815181106111f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061120b906150d2565b9150506111a9565b508092505050919050565b61122661231d565b73ffffffffffffffffffffffffffffffffffffffff166112446112fc565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614bf0565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112fa57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61132e61231d565b73ffffffffffffffffffffffffffffffffffffffff1661134c6112fc565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614bf0565b60405180910390fd5b80600e8190555050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190614c70565b60405180910390fd5b6114448282612811565b5050565b606060018054611457906150a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611483906150a0565b80156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b5050505050905090565b60006114e4610b33565b9050601160019054906101000a900460ff16611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90614b90565b60405180910390fd5b600a821115611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090614b70565b60405180910390fd5b60105482826115889190614e9a565b11156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090614cf0565b60405180910390fd5b81600e546115d79190614f21565b341015611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090614cb0565b60405180910390fd5b60005b8281101561164c576116393382846116349190614e9a565b6127de565b8080611644906150d2565b91505061161c565b50601054828261165c9190614e9a565b14156116745761166a61121e565b6116726127fc565b505b5050565b61168061231d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590614ad0565b60405180910390fd5b80600560006116fb61231d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a861231d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ed9190614985565b60405180910390a35050565b61180161231d565b73ffffffffffffffffffffffffffffffffffffffff1661181f6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614bf0565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b6118a361189d61231d565b836123de565b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614cd0565b60405180910390fd5b6118ee8484848461281e565b50505050565b6060806118ff61374f565b60405180610c200160405280610be3815260200161534a610be3913981600060058110611955577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506010546012541115611a7a576119728461287a565b604051602001611982919061489c565b60405160208183030381529060405291506040518060400160405280600381526020017f3f3f3f000000000000000000000000000000000000000000000000000000000081525081600160058110611a03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a148461287a565b604051602001611a249190614858565b60405160208183030381529060405281600360058110611a6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c99565b601254841415611b8b576040518060400160405280600781526020017f546865204f6e650000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f4f6e65000000000000000000000000000000000000000000000000000000000081525081600160058110611b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060200160405280600081525081600360058110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c98565b611b948461287a565b604051602001611ba491906147f1565b60405160208183030381529060405291506040518060400160405280600481526020017f4e6f6e650000000000000000000000000000000000000000000000000000000081525081600160058110611c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c368461287a565b604051602001611c469190614858565b60405160208183030381529060405281600360058110611c8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052505b5b6040518060a00160405280606981526020016152e16069913981600260058110611cec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280601181526020017f3c2f746578743e3c2f673e3c2f7376673e00000000000000000000000000000081525081600460058110611d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600081600060058110611da8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600160058110611de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260058110611e26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360058110611e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460058110611ea4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151604051602001611ebd9594939291906147a6565b60405160208183030381529060405290506000611f0284611edd84612a27565b604051602001611eee929190614813565b604051602081830303815290604052612a27565b905080604051602001611f15919061487a565b604051602081830303815290604052915081945050505050919050565b601160009054906101000a900460ff1681565b611f4d61231d565b73ffffffffffffffffffffffffffffffffffffffff16611f6b6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890614bf0565b60405180910390fd5b6000611fcb610b33565b9050601054600182611fdd9190614e9a565b1061201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614cf0565b60405180910390fd5b61202782826127de565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c761231d565b73ffffffffffffffffffffffffffffffffffffffff166120e56112fc565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614bf0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614a70565b60405180910390fd5b6121b481612718565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061229a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122aa57506122a982612be5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661239883610d21565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123e9826122b1565b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614af0565b60405180910390fd5b600061243383610d21565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124a257508373ffffffffffffffffffffffffffffffffffffffff1661248a846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b806124b357506124b2818561202b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124dc82610d21565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990614ab0565b60405180910390fd5b6125ad838383612c4f565b6125b8600082612325565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126089190614f7b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265f9190614e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f8828260405180602001604052806000815250612d63565b5050565b600061280c600c54600d54612dbe565b905090565b61281a81612f20565b5050565b6128298484846124bc565b61283584848484613003565b612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90614a50565b60405180910390fd5b50505050565b606060008214156128c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a22565b600082905060005b600082146128f45780806128dd906150d2565b915050600a826128ed9190614ef0565b91506128ca565b60008167ffffffffffffffff811115612936577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129685781602001600182028036833780820191505090505b5090505b60008514612a1b576001826129819190614f7b565b9150600a85612990919061512f565b603061299c9190614e9a565b60f81b8183815181106129d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a149190614ef0565b945061296c565b8093505050505b919050565b60606000825190506000811415612a505760405180602001604052806000815250915050612be0565b60006003600283612a619190614e9a565b612a6b9190614ef0565b6004612a779190614f21565b90506000602082612a889190614e9a565b67ffffffffffffffff811115612ac7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612af95781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016152a1604091399050600181016020830160005b86811015612b9d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612b24565b506003860660018114612bb75760028114612bc757612bd2565b613d3d60f01b6002830352612bd2565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c5a8383836121ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9d57612c988161319a565b612cdc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cdb57612cda83826131e3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1f57612d1a81613350565b612d5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5d57612d5c8282613493565b5b5b505050565b612d6d8383613512565b612d7a6000848484613003565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090614a50565b60405180910390fd5b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000000000000000000000000000000000000000000084866000604051602001612e329291906149a0565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612e5f93929190614925565b602060405180830381600087803b158015612e7957600080fd5b505af1158015612e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb19190613a18565b506000612ed484600030600b6000898152602001908152602001600020546136e0565b90506001600b600086815260200190815260200160002054612ef69190614e9a565b600b600086815260200190815260200160002081905550612f17848261371c565b91505092915050565b60105460125411612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d90614c10565b60405180910390fd5b6000601054826000604051602001612f7f929190614d6b565b6040516020818303038152906040528051906020012060001c612fa2919061512f565b90506000614268836001604051602001612fbd929190614d94565b6040516020818303038152906040528051906020012060001c612fe0919061512f565b905080821015612ff65781601281905550612ffe565b806012819055505b505050565b60006130248473ffffffffffffffffffffffffffffffffffffffff166121b7565b1561318d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304d61231d565b8786866040518563ffffffff1660e01b815260040161306f94939291906148d9565b602060405180830381600087803b15801561308957600080fd5b505af19250505080156130ba57506040513d601f19601f820116820180604052508101906130b79190613aa6565b60015b61313d573d80600081146130ea576040519150601f19603f3d011682016040523d82523d6000602084013e6130ef565b606091505b50600081511415613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614a50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613192565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131f084610dd3565b6131fa9190614f7b565b90506000600760008481526020019081526020016000205490508181146132df576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133649190614f7b565b90506000600960008481526020019081526020016000205490506000600883815481106133ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613402577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613477577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061349e83610dd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357990614bb0565b60405180910390fd5b61358b816122b1565b156135cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c290614a90565b60405180910390fd5b6135d760008383612c4f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136279190614e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000848484846040516020016136f994939291906149c9565b6040516020818303038152906040528051906020012060001c9050949350505050565b6000828260405160200161373192919061477a565b60405160208183030381529060405280519060200120905092915050565b6040518060a001604052806005905b606081526020019060019003908161375e5790505090565b600061378961378484614dee565b614dbd565b9050828152602081018484840111156137a157600080fd5b6137ac84828561505e565b509392505050565b6000813590506137c38161522d565b92915050565b6000813590506137d881615244565b92915050565b6000815190506137ed81615244565b92915050565b6000813590506138028161525b565b92915050565b60008135905061381781615272565b92915050565b60008151905061382c81615272565b92915050565b600082601f83011261384357600080fd5b8135613853848260208601613776565b91505092915050565b60008135905061386b81615289565b92915050565b60006020828403121561388357600080fd5b6000613891848285016137b4565b91505092915050565b600080604083850312156138ad57600080fd5b60006138bb858286016137b4565b92505060206138cc858286016137b4565b9150509250929050565b6000806000606084860312156138eb57600080fd5b60006138f9868287016137b4565b935050602061390a868287016137b4565b925050604061391b8682870161385c565b9150509250925092565b6000806000806080858703121561393b57600080fd5b6000613949878288016137b4565b945050602061395a878288016137b4565b935050604061396b8782880161385c565b925050606085013567ffffffffffffffff81111561398857600080fd5b61399487828801613832565b91505092959194509250565b600080604083850312156139b357600080fd5b60006139c1858286016137b4565b92505060206139d2858286016137c9565b9150509250929050565b600080604083850312156139ef57600080fd5b60006139fd858286016137b4565b9250506020613a0e8582860161385c565b9150509250929050565b600060208284031215613a2a57600080fd5b6000613a38848285016137de565b91505092915050565b60008060408385031215613a5457600080fd5b6000613a62858286016137f3565b9250506020613a738582860161385c565b9150509250929050565b600060208284031215613a8f57600080fd5b6000613a9d84828501613808565b91505092915050565b600060208284031215613ab857600080fd5b6000613ac68482850161381d565b91505092915050565b600060208284031215613ae157600080fd5b6000613aef8482850161385c565b91505092915050565b6000613b048383614745565b60208301905092915050565b613b1981614faf565b82525050565b6000613b2a82614e2e565b613b348185614e5c565b9350613b3f83614e1e565b8060005b83811015613b70578151613b578882613af8565b9750613b6283614e4f565b925050600181019050613b43565b5085935050505092915050565b613b8681614fc1565b82525050565b613b9581614fcd565b82525050565b613bac613ba782614fcd565b61511b565b82525050565b6000613bbd82614e39565b613bc78185614e6d565b9350613bd781856020860161506d565b613be08161521c565b840191505092915050565b613bf48161503a565b82525050565b613c038161504c565b82525050565b6000613c1482614e44565b613c1e8185614e7e565b9350613c2e81856020860161506d565b613c378161521c565b840191505092915050565b6000613c4d82614e44565b613c578185614e8f565b9350613c6781856020860161506d565b80840191505092915050565b6000613c80602b83614e7e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613ce6603283614e7e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d4c602683614e7e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613db2601c83614e7e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613df2602483614e7e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e58601983614e7e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e98602c83614e7e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613efe600a83614e8f565b91507f546865204e6f6e652023000000000000000000000000000000000000000000006000830152600a82019050919050565b6000613f3e603883614e7e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613fa4602a83614e7e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061400a602983614e7e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614070601783614e7e565b91507f6d61785f6d696e745f636f756e745f65786365656465640000000000000000006000830152602082019050919050565b60006140b0600f83614e7e565b91507f73616c655f6e6f745f61637469766500000000000000000000000000000000006000830152602082019050919050565b60006140f0600283614e8f565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614130602083614e7e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614170602c83614e7e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141d660c483614e8f565b91507f222c20226465736372697074696f6e223a2022546865204f6e6520697320612060008301527f66756c6c79206f6e2d636861696e20636f6c6c656374696f6e2066656174757260208301527f696e6720612073696e676c6520546865204f6e6520696d6167652e205468652060408301527f4f6e6520696d6167652069732072657665616c6564206f6e6c7920616674657260608301527f20616c6c2031302c3030302068617665206265656e206d696e7465642e222c2060808301527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617360a08301527f6536342c0000000000000000000000000000000000000000000000000000000060c083015260c482019050919050565b60006142fa602083614e7e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061433a601383614e7e565b91507f7468655f6f6e655f616c72656164795f736574000000000000000000000000006000830152602082019050919050565b600061437a602983614e7e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e0600a83614e8f565b91507f7b226e616d65223a2022000000000000000000000000000000000000000000006000830152600a82019050919050565b6000614420601883614e7e565b91507f70726573616c655f77616c6c65745f6c696d69745f6d657400000000000000006000830152602082019050919050565b6000614460601f83614e7e565b91507f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006000830152602082019050919050565b60006144a0600183614e8f565b91507f23000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006144e0602183614e7e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614546601d83614e8f565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614586601a83614e7e565b91507f696e73756666696369656e745f7061796d656e745f76616c75650000000000006000830152602082019050919050565b60006145c6603183614e7e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061462c601983614e7e565b91507f6d61785f746f6b656e5f737570706c795f6578636565646564000000000000006000830152602082019050919050565b600061466c602c83614e7e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006146d2600983614e8f565b91507f546865203f3f3f202300000000000000000000000000000000000000000000006000830152600982019050919050565b6000614712601283614e7e565b91507f70726573616c655f6e6f745f61637469766500000000000000000000000000006000830152602082019050919050565b61474e81615023565b82525050565b61475d81615023565b82525050565b61477461476f82615023565b615125565b82525050565b60006147868285613b9b565b6020820191506147968284614763565b6020820191508190509392505050565b60006147b28288613c42565b91506147be8287613c42565b91506147ca8286613c42565b91506147d68285613c42565b91506147e28284613c42565b91508190509695505050505050565b60006147fc82613ef1565b91506148088284613c42565b915081905092915050565b600061481e826143d3565b915061482a8285613c42565b9150614835826141c9565b91506148418284613c42565b915061484c826140e3565b91508190509392505050565b600061486382614493565b915061486f8284613c42565b915081905092915050565b600061488582614539565b91506148918284613c42565b915081905092915050565b60006148a7826146c5565b91506148b38284613c42565b915081905092915050565b60006020820190506148d36000830184613b10565b92915050565b60006080820190506148ee6000830187613b10565b6148fb6020830186613b10565b6149086040830185614754565b818103606083015261491a8184613bb2565b905095945050505050565b600060608201905061493a6000830186613b10565b6149476020830185614754565b81810360408301526149598184613bb2565b9050949350505050565b6000602082019050818103600083015261497d8184613b1f565b905092915050565b600060208201905061499a6000830184613b7d565b92915050565b60006040820190506149b56000830185613b8c565b6149c26020830184614754565b9392505050565b60006080820190506149de6000830187613b8c565b6149eb6020830186614754565b6149f86040830185613b10565b614a056060830184614754565b95945050505050565b60006020820190508181036000830152614a288184613c09565b905092915050565b60006020820190508181036000830152614a4981613c73565b9050919050565b60006020820190508181036000830152614a6981613cd9565b9050919050565b60006020820190508181036000830152614a8981613d3f565b9050919050565b60006020820190508181036000830152614aa981613da5565b9050919050565b60006020820190508181036000830152614ac981613de5565b9050919050565b60006020820190508181036000830152614ae981613e4b565b9050919050565b60006020820190508181036000830152614b0981613e8b565b9050919050565b60006020820190508181036000830152614b2981613f31565b9050919050565b60006020820190508181036000830152614b4981613f97565b9050919050565b60006020820190508181036000830152614b6981613ffd565b9050919050565b60006020820190508181036000830152614b8981614063565b9050919050565b60006020820190508181036000830152614ba9816140a3565b9050919050565b60006020820190508181036000830152614bc981614123565b9050919050565b60006020820190508181036000830152614be981614163565b9050919050565b60006020820190508181036000830152614c09816142ed565b9050919050565b60006020820190508181036000830152614c298161432d565b9050919050565b60006020820190508181036000830152614c498161436d565b9050919050565b60006020820190508181036000830152614c6981614413565b9050919050565b60006020820190508181036000830152614c8981614453565b9050919050565b60006020820190508181036000830152614ca9816144d3565b9050919050565b60006020820190508181036000830152614cc981614579565b9050919050565b60006020820190508181036000830152614ce9816145b9565b9050919050565b60006020820190508181036000830152614d098161461f565b9050919050565b60006020820190508181036000830152614d298161465f565b9050919050565b60006020820190508181036000830152614d4981614705565b9050919050565b6000602082019050614d656000830184614754565b92915050565b6000604082019050614d806000830185614754565b614d8d6020830184613beb565b9392505050565b6000604082019050614da96000830185614754565b614db66020830184613bfa565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614de457614de36151ed565b5b8060405250919050565b600067ffffffffffffffff821115614e0957614e086151ed565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ea582615023565b9150614eb083615023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ee557614ee4615160565b5b828201905092915050565b6000614efb82615023565b9150614f0683615023565b925082614f1657614f1561518f565b5b828204905092915050565b6000614f2c82615023565b9150614f3783615023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f7057614f6f615160565b5b828202905092915050565b6000614f8682615023565b9150614f9183615023565b925082821015614fa457614fa3615160565b5b828203905092915050565b6000614fba82615003565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006150458261502d565b9050919050565b60006150578261502d565b9050919050565b82818337600083830152505050565b60005b8381101561508b578082015181840152602081019050615070565b8381111561509a576000848401525b50505050565b600060028204905060018216806150b857607f821691505b602082108114156150cc576150cb6151be565b5b50919050565b60006150dd82615023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151105761510f615160565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061513a82615023565b915061514583615023565b9250826151555761515461518f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61523681614faf565b811461524157600080fd5b50565b61524d81614fc1565b811461525857600080fd5b50565b61526481614fcd565b811461526f57600080fd5b50565b61527b81614fd7565b811461528657600080fd5b50565b61529281615023565b811461529d57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223530252220793d223238302220666f6e742d73697a653d2232302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c7376672076657273696f6e3d22312e312220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b22207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302034323020343230223e203c7374796c6520747970653d22746578742f637373223e203c215b43444154415b2074657874207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a206d6f6e6f73706163653b202d7765626b69742d666f6e742d736d6f6f7468696e673a20616e7469616c69617365643b202d6d6f7a2d6f73782d666f6e742d736d6f6f7468696e673a20677261797363616c653b207d20236f6e65207b2066696c7465723a2075726c282366696c746572293b207d205d5d3e203c2f7374796c653e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222332323232323222202f3e203c646566733e203c66696c7465722069643d2266696c746572223e203c6665466c6f6f6420666c6f6f642d636f6c6f723d22233232323232322220726573756c743d222332323232323222202f3e203c6665466c6f6f6420666c6f6f642d636f6c6f723d227265642220726573756c743d22666c6f6f643122202f3e203c6665466c6f6f6420666c6f6f642d636f6c6f723d226c696d65677265656e2220726573756c743d22666c6f6f643222202f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d2232222064793d22302220726573756c743d226f66663161222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d2231222064793d22302220726573756c743d226f66663162222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d222d31222064793d22302220726573756c743d226f66663261222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d222d31222064793d22302220726573756c743d226f66663262222f3e203c6665436f6d706f7369746520696e3d22666c6f6f64312220696e323d226f6666316122206f70657261746f723d22696e2220726573756c743d22636f6d703122202f3e203c6665436f6d706f7369746520696e3d22666c6f6f64322220696e323d226f6666326122206f70657261746f723d22696e2220726573756c743d22636f6d703222202f3e203c66654d6572676520783d2230222077696474683d22313030252220726573756c743d226d6572676531223e203c66654d657267654e6f646520696e203d2022626c61636b22202f3e203c66654d657267654e6f646520696e203d2022636f6d703122202f3e203c66654d657267654e6f646520696e203d20226f6666316222202f3e203c616e696d617465206174747269627574654e616d653d227922206964203d2022792220647572203d223873222076616c756573203d202232353470783b2032353470783b2031383070783b2032353570783b2031383070783b2031353270783b2031353270783b2032303070783b2031393070783b2032353570783b2032353570783b2031373070783b2032313070783b2031393070783b2032353470783b2031393070783b2032323070783b2031363070783b2031383070783b2032353470783b20323532707822206b657954696d6573203d2022303b20302e3336323b20302e3336383b20302e3432313b20302e3434303b20302e3437373b20302e3531383b20302e3536343b20302e3539333b20302e3631333b20302e3634343b20302e3639333b20302e3732313b20302e3733363b20302e3737323b20302e3831383b20302e3834343b20302e3839343b20302e3932353b20302e3933393b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c616e696d617465206174747269627574654e616d653d2268656967687422206964203d2022682220647572203d223873222076616c756573203d2022313070783b203070783b20313070783b20333070783b20353070783b203070783b20313070783b203070783b203070783b203070783b20313070783b20353070783b20343070783b203070783b203070783b203070783b20343070783b20333070783b20313070783b203070783b203530707822206b7954696d6573203d2022303b20302e3336323b20302e3336383b20302e3432313b20302e3434303b20302e3437373b20302e3531383b20302e3536343b20302e3539333b20302e3631333b20302e3634343b20302e3639333b20302e3732313b20302e3733363b20302e3737323b20302e3831383b20302e3834343b20302e3839343b20302e3932353b20302e3933393b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c2f66654d657267653e203c66654d6572676520783d2230222077696474683d22313030252220793d223630707822206865696768743d2231353070782220726573756c743d226d6572676532223e203c66654d657267654e6f646520696e203d2022626c61636b22202f3e203c66654d657267654e6f646520696e203d2022636f6d703222202f3e203c66654d657267654e6f646520696e203d20226f6666326222202f3e203c616e696d617465206174747269627574654e616d653d227922206964203d2022792220647572203d223873222076616c756573203d202232353370783b2032353470783b2032313970783b2032303370783b2031393270783b2032353470783b2032323870783b2032333970783b2032343670783b2032353070783b2032313770783b2032303070783b2032343670783b2032313670783b2032333870783b2031393270783b2031363370783b2032353070783b2032353070783b2032353470783b22206b657954696d6573203d2022303b20302e3035353b20302e3130303b20302e3132353b20302e3135393b20302e3138323b20302e3230323b20302e3233363b20302e3236383b20302e3332363b20302e3335373b20302e3430303b20302e3430383b20302e3436313b20302e3439333b20302e3531333b20302e3534383b20302e3537373b20302e3631333b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c616e696d617465206174747269627574654e616d653d2268656967687422206964203d2022682220647572203d20223873222076616c756573203d20223070783b203070783b203070783b20313670783b20313670783b20313270783b20313270783b203070783b203070783b203570783b20313070783b20323270783b20333370783b20313170783b203070783b203070783b203130707822206b657954696d6573203d2022303b20302e3035353b20302e3130303b20302e3132353b20302e3135393b20302e3138323b20302e3230323b20302e3233363b20302e3236383b20302e3332363b20302e3335373b20302e3430303b20302e3430383b20302e3436313b20302e3439333b20302e3531333b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c2f66654d657267653e203c66654d657267653e203c66654d657267654e6f646520696e3d22536f757263654772617068696322202f3e203c66654d657267654e6f646520696e3d226d657267653122202f3e203c66654d657267654e6f646520696e3d226d657267653222202f3e203c2f66654d657267653e203c2f66696c7465723e203c2f646566733e203c673e203c7465787420783d223530252220793d223130302220666f6e742d73697a653d2237302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e5448453c2f746578743e3c7465787420783d223530252220793d223231302220666f6e742d73697a653d223134302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65222069643d226f6e65223ea264697066735822122095d615b04b91f01dafbd5d68756cf09df825ada75c0ae2b749114814c5165ab664736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106f4578063d8c7a79714610731578063dfd233dd1461075c578063e985e9c514610785578063f2fde38b146107c257610204565b8063a0712d681461066f578063a22cb4651461068b578063ab0bcc41146106b4578063b88d4fde146106cb57610204565b8063853828b6116100e7578063853828b6146105bd5780638da5cb5b146105c757806391b7f5ed146105f257806394985ddd1461061b57806395d89b411461064457610204565b8063715018a6146105365780637835c6351461054d5780638331e11b146105695780638462151c1461058057610204565b8063235b6ea11161019b5780634f6ccce71161016a5780634f6ccce714610429578063512ace86146104665780635d893ba0146104915780636352211e146104bc57806370a08231146104f957610204565b8063235b6ea11461036f57806323b872dd1461039a5780632f745c59146103c357806342842e0e1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102d95780630d5624b31461030257806318160ddd1461031957806322f4596f1461034457610204565b8063016d49751461020957806301ffc9a71461023457806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b5061021e6107eb565b60405161022b9190614d50565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190613a7d565b6107f1565b6040516102689190614985565b60405180910390f35b34801561027d57600080fd5b5061028661086b565b6040516102939190614a0e565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190613acf565b6108fd565b6040516102d091906148be565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906139dc565b610982565b005b34801561030e57600080fd5b50610317610a9a565b005b34801561032557600080fd5b5061032e610b33565b60405161033b9190614d50565b60405180910390f35b34801561035057600080fd5b50610359610b40565b6040516103669190614d50565b60405180910390f35b34801561037b57600080fd5b50610384610b46565b6040516103919190614d50565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906138d6565b610b4c565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906139dc565b610bac565b6040516103f79190614d50565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906138d6565b610c51565b005b34801561043557600080fd5b50610450600480360381019061044b9190613acf565b610c71565b60405161045d9190614d50565b60405180910390f35b34801561047257600080fd5b5061047b610d08565b6040516104889190614d50565b60405180910390f35b34801561049d57600080fd5b506104a6610d0e565b6040516104b39190614985565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613acf565b610d21565b6040516104f091906148be565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613871565b610dd3565b60405161052d9190614d50565b60405180910390f35b34801561054257600080fd5b5061054b610e8b565b005b61056760048036038101906105629190613acf565b610f13565b005b34801561057557600080fd5b5061057e61109d565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613871565b611124565b6040516105b49190614963565b60405180910390f35b6105c561121e565b005b3480156105d357600080fd5b506105dc6112fc565b6040516105e991906148be565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613acf565b611326565b005b34801561062757600080fd5b50610642600480360381019061063d9190613a41565b6113ac565b005b34801561065057600080fd5b50610659611448565b6040516106669190614a0e565b60405180910390f35b61068960048036038101906106849190613acf565b6114da565b005b34801561069757600080fd5b506106b260048036038101906106ad91906139a0565b611678565b005b3480156106c057600080fd5b506106c96117f9565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613925565b611892565b005b34801561070057600080fd5b5061071b60048036038101906107169190613acf565b6118f4565b6040516107289190614a0e565b60405180910390f35b34801561073d57600080fd5b50610746611f32565b6040516107539190614985565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e9190613871565b611f45565b005b34801561079157600080fd5b506107ac60048036038101906107a7919061389a565b61202b565b6040516107b99190614985565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e49190613871565b6120bf565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108645750610863826121cf565b5b9050919050565b60606000805461087a906150a0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a6906150a0565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826122b1565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90614bd0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610d21565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590614c90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d61231d565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a4661231d565b61202b565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290614b10565b60405180910390fd5b610a958383612325565b505050565b610aa261231d565b73ffffffffffffffffffffffffffffffffffffffff16610ac06112fc565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90614bf0565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b6000600880549050905090565b60105481565b600e5481565b610b5d610b5761231d565b826123de565b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390614cd0565b60405180910390fd5b610ba78383836124bc565b505050565b6000610bb783610dd3565b8210610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614a30565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c6c83838360405180602001604052806000815250611892565b505050565b6000610c7b610b33565b8210610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390614d10565b60405180910390fd5b60088281548110610cf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60125481565b601160019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190614b50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90614b30565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9361231d565b73ffffffffffffffffffffffffffffffffffffffff16610eb16112fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90614bf0565b60405180910390fd5b610f116000612718565b565b6000610f1d610b33565b9050601160009054906101000a900460ff16610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590614d30565b60405180910390fd5b600382610f7a33610dd3565b610f849190614e9a565b1115610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614c50565b60405180910390fd5b6103e88282610fd49190614e9a565b1115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90614cf0565b60405180910390fd5b81600f546110239190614f21565b341015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614cb0565b60405180910390fd5b60005b82811015611098576110853382846110809190614e9a565b6127de565b8080611090906150d2565b915050611068565b505050565b6110a561231d565b73ffffffffffffffffffffffffffffffffffffffff166110c36112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614bf0565b60405180910390fd5b6111216127fc565b50565b6060600061113183610dd3565b905060008167ffffffffffffffff811115611175577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111a35781602001602082028036833780820191505090505b50905060005b82811015611213576111bb8582610bac565b8282815181106111f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061120b906150d2565b9150506111a9565b508092505050919050565b61122661231d565b73ffffffffffffffffffffffffffffffffffffffff166112446112fc565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190614bf0565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506112fa57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61132e61231d565b73ffffffffffffffffffffffffffffffffffffffff1661134c6112fc565b73ffffffffffffffffffffffffffffffffffffffff16146113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990614bf0565b60405180910390fd5b80600e8190555050565b7f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190614c70565b60405180910390fd5b6114448282612811565b5050565b606060018054611457906150a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611483906150a0565b80156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b5050505050905090565b60006114e4610b33565b9050601160019054906101000a900460ff16611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90614b90565b60405180910390fd5b600a821115611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090614b70565b60405180910390fd5b60105482826115889190614e9a565b11156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090614cf0565b60405180910390fd5b81600e546115d79190614f21565b341015611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090614cb0565b60405180910390fd5b60005b8281101561164c576116393382846116349190614e9a565b6127de565b8080611644906150d2565b91505061161c565b50601054828261165c9190614e9a565b14156116745761166a61121e565b6116726127fc565b505b5050565b61168061231d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590614ad0565b60405180910390fd5b80600560006116fb61231d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a861231d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ed9190614985565b60405180910390a35050565b61180161231d565b73ffffffffffffffffffffffffffffffffffffffff1661181f6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614bf0565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b6118a361189d61231d565b836123de565b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614cd0565b60405180910390fd5b6118ee8484848461281e565b50505050565b6060806118ff61374f565b60405180610c200160405280610be3815260200161534a610be3913981600060058110611955577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506010546012541115611a7a576119728461287a565b604051602001611982919061489c565b60405160208183030381529060405291506040518060400160405280600381526020017f3f3f3f000000000000000000000000000000000000000000000000000000000081525081600160058110611a03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611a148461287a565b604051602001611a249190614858565b60405160208183030381529060405281600360058110611a6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c99565b601254841415611b8b576040518060400160405280600781526020017f546865204f6e650000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f4f6e65000000000000000000000000000000000000000000000000000000000081525081600160058110611b2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060200160405280600081525081600360058110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c98565b611b948461287a565b604051602001611ba491906147f1565b60405160208183030381529060405291506040518060400160405280600481526020017f4e6f6e650000000000000000000000000000000000000000000000000000000081525081600160058110611c25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611c368461287a565b604051602001611c469190614858565b60405160208183030381529060405281600360058110611c8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052505b5b6040518060a00160405280606981526020016152e16069913981600260058110611cec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280601181526020017f3c2f746578743e3c2f673e3c2f7376673e00000000000000000000000000000081525081600460058110611d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600081600060058110611da8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600160058110611de7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600260058110611e26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600360058110611e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600460058110611ea4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151604051602001611ebd9594939291906147a6565b60405160208183030381529060405290506000611f0284611edd84612a27565b604051602001611eee929190614813565b604051602081830303815290604052612a27565b905080604051602001611f15919061487a565b604051602081830303815290604052915081945050505050919050565b601160009054906101000a900460ff1681565b611f4d61231d565b73ffffffffffffffffffffffffffffffffffffffff16611f6b6112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890614bf0565b60405180910390fd5b6000611fcb610b33565b9050601054600182611fdd9190614e9a565b1061201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614cf0565b60405180910390fd5b61202782826127de565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120c761231d565b73ffffffffffffffffffffffffffffffffffffffff166120e56112fc565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614bf0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a290614a70565b60405180910390fd5b6121b481612718565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061229a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122aa57506122a982612be5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661239883610d21565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123e9826122b1565b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614af0565b60405180910390fd5b600061243383610d21565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124a257508373ffffffffffffffffffffffffffffffffffffffff1661248a846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b806124b357506124b2818561202b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124dc82610d21565b73ffffffffffffffffffffffffffffffffffffffff1614612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990614ab0565b60405180910390fd5b6125ad838383612c4f565b6125b8600082612325565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126089190614f7b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265f9190614e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f8828260405180602001604052806000815250612d63565b5050565b600061280c600c54600d54612dbe565b905090565b61281a81612f20565b5050565b6128298484846124bc565b61283584848484613003565b612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90614a50565b60405180910390fd5b50505050565b606060008214156128c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a22565b600082905060005b600082146128f45780806128dd906150d2565b915050600a826128ed9190614ef0565b91506128ca565b60008167ffffffffffffffff811115612936577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129685781602001600182028036833780820191505090505b5090505b60008514612a1b576001826129819190614f7b565b9150600a85612990919061512f565b603061299c9190614e9a565b60f81b8183815181106129d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a149190614ef0565b945061296c565b8093505050505b919050565b60606000825190506000811415612a505760405180602001604052806000815250915050612be0565b60006003600283612a619190614e9a565b612a6b9190614ef0565b6004612a779190614f21565b90506000602082612a889190614e9a565b67ffffffffffffffff811115612ac7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612af95781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016152a1604091399050600181016020830160005b86811015612b9d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612b24565b506003860660018114612bb75760028114612bc757612bd2565b613d3d60f01b6002830352612bd2565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c5a8383836121ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c9d57612c988161319a565b612cdc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cdb57612cda83826131e3565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d1f57612d1a81613350565b612d5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d5d57612d5c8282613493565b5b5b505050565b612d6d8383613512565b612d7a6000848484613003565b612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090614a50565b60405180910390fd5b505050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795284866000604051602001612e329291906149a0565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612e5f93929190614925565b602060405180830381600087803b158015612e7957600080fd5b505af1158015612e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb19190613a18565b506000612ed484600030600b6000898152602001908152602001600020546136e0565b90506001600b600086815260200190815260200160002054612ef69190614e9a565b600b600086815260200190815260200160002081905550612f17848261371c565b91505092915050565b60105460125411612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d90614c10565b60405180910390fd5b6000601054826000604051602001612f7f929190614d6b565b6040516020818303038152906040528051906020012060001c612fa2919061512f565b90506000614268836001604051602001612fbd929190614d94565b6040516020818303038152906040528051906020012060001c612fe0919061512f565b905080821015612ff65781601281905550612ffe565b806012819055505b505050565b60006130248473ffffffffffffffffffffffffffffffffffffffff166121b7565b1561318d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304d61231d565b8786866040518563ffffffff1660e01b815260040161306f94939291906148d9565b602060405180830381600087803b15801561308957600080fd5b505af19250505080156130ba57506040513d601f19601f820116820180604052508101906130b79190613aa6565b60015b61313d573d80600081146130ea576040519150601f19603f3d011682016040523d82523d6000602084013e6130ef565b606091505b50600081511415613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614a50565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613192565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131f084610dd3565b6131fa9190614f7b565b90506000600760008481526020019081526020016000205490508181146132df576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133649190614f7b565b90506000600960008481526020019081526020016000205490506000600883815481106133ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613402577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613477577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061349e83610dd3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357990614bb0565b60405180910390fd5b61358b816122b1565b156135cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c290614a90565b60405180910390fd5b6135d760008383612c4f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136279190614e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000848484846040516020016136f994939291906149c9565b6040516020818303038152906040528051906020012060001c9050949350505050565b6000828260405160200161373192919061477a565b60405160208183030381529060405280519060200120905092915050565b6040518060a001604052806005905b606081526020019060019003908161375e5790505090565b600061378961378484614dee565b614dbd565b9050828152602081018484840111156137a157600080fd5b6137ac84828561505e565b509392505050565b6000813590506137c38161522d565b92915050565b6000813590506137d881615244565b92915050565b6000815190506137ed81615244565b92915050565b6000813590506138028161525b565b92915050565b60008135905061381781615272565b92915050565b60008151905061382c81615272565b92915050565b600082601f83011261384357600080fd5b8135613853848260208601613776565b91505092915050565b60008135905061386b81615289565b92915050565b60006020828403121561388357600080fd5b6000613891848285016137b4565b91505092915050565b600080604083850312156138ad57600080fd5b60006138bb858286016137b4565b92505060206138cc858286016137b4565b9150509250929050565b6000806000606084860312156138eb57600080fd5b60006138f9868287016137b4565b935050602061390a868287016137b4565b925050604061391b8682870161385c565b9150509250925092565b6000806000806080858703121561393b57600080fd5b6000613949878288016137b4565b945050602061395a878288016137b4565b935050604061396b8782880161385c565b925050606085013567ffffffffffffffff81111561398857600080fd5b61399487828801613832565b91505092959194509250565b600080604083850312156139b357600080fd5b60006139c1858286016137b4565b92505060206139d2858286016137c9565b9150509250929050565b600080604083850312156139ef57600080fd5b60006139fd858286016137b4565b9250506020613a0e8582860161385c565b9150509250929050565b600060208284031215613a2a57600080fd5b6000613a38848285016137de565b91505092915050565b60008060408385031215613a5457600080fd5b6000613a62858286016137f3565b9250506020613a738582860161385c565b9150509250929050565b600060208284031215613a8f57600080fd5b6000613a9d84828501613808565b91505092915050565b600060208284031215613ab857600080fd5b6000613ac68482850161381d565b91505092915050565b600060208284031215613ae157600080fd5b6000613aef8482850161385c565b91505092915050565b6000613b048383614745565b60208301905092915050565b613b1981614faf565b82525050565b6000613b2a82614e2e565b613b348185614e5c565b9350613b3f83614e1e565b8060005b83811015613b70578151613b578882613af8565b9750613b6283614e4f565b925050600181019050613b43565b5085935050505092915050565b613b8681614fc1565b82525050565b613b9581614fcd565b82525050565b613bac613ba782614fcd565b61511b565b82525050565b6000613bbd82614e39565b613bc78185614e6d565b9350613bd781856020860161506d565b613be08161521c565b840191505092915050565b613bf48161503a565b82525050565b613c038161504c565b82525050565b6000613c1482614e44565b613c1e8185614e7e565b9350613c2e81856020860161506d565b613c378161521c565b840191505092915050565b6000613c4d82614e44565b613c578185614e8f565b9350613c6781856020860161506d565b80840191505092915050565b6000613c80602b83614e7e565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613ce6603283614e7e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d4c602683614e7e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613db2601c83614e7e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613df2602483614e7e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e58601983614e7e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e98602c83614e7e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613efe600a83614e8f565b91507f546865204e6f6e652023000000000000000000000000000000000000000000006000830152600a82019050919050565b6000613f3e603883614e7e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613fa4602a83614e7e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061400a602983614e7e565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614070601783614e7e565b91507f6d61785f6d696e745f636f756e745f65786365656465640000000000000000006000830152602082019050919050565b60006140b0600f83614e7e565b91507f73616c655f6e6f745f61637469766500000000000000000000000000000000006000830152602082019050919050565b60006140f0600283614e8f565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614130602083614e7e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614170602c83614e7e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141d660c483614e8f565b91507f222c20226465736372697074696f6e223a2022546865204f6e6520697320612060008301527f66756c6c79206f6e2d636861696e20636f6c6c656374696f6e2066656174757260208301527f696e6720612073696e676c6520546865204f6e6520696d6167652e205468652060408301527f4f6e6520696d6167652069732072657665616c6564206f6e6c7920616674657260608301527f20616c6c2031302c3030302068617665206265656e206d696e7465642e222c2060808301527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62617360a08301527f6536342c0000000000000000000000000000000000000000000000000000000060c083015260c482019050919050565b60006142fa602083614e7e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061433a601383614e7e565b91507f7468655f6f6e655f616c72656164795f736574000000000000000000000000006000830152602082019050919050565b600061437a602983614e7e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143e0600a83614e8f565b91507f7b226e616d65223a2022000000000000000000000000000000000000000000006000830152600a82019050919050565b6000614420601883614e7e565b91507f70726573616c655f77616c6c65745f6c696d69745f6d657400000000000000006000830152602082019050919050565b6000614460601f83614e7e565b91507f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006000830152602082019050919050565b60006144a0600183614e8f565b91507f23000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006144e0602183614e7e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614546601d83614e8f565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614586601a83614e7e565b91507f696e73756666696369656e745f7061796d656e745f76616c75650000000000006000830152602082019050919050565b60006145c6603183614e7e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061462c601983614e7e565b91507f6d61785f746f6b656e5f737570706c795f6578636565646564000000000000006000830152602082019050919050565b600061466c602c83614e7e565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006146d2600983614e8f565b91507f546865203f3f3f202300000000000000000000000000000000000000000000006000830152600982019050919050565b6000614712601283614e7e565b91507f70726573616c655f6e6f745f61637469766500000000000000000000000000006000830152602082019050919050565b61474e81615023565b82525050565b61475d81615023565b82525050565b61477461476f82615023565b615125565b82525050565b60006147868285613b9b565b6020820191506147968284614763565b6020820191508190509392505050565b60006147b28288613c42565b91506147be8287613c42565b91506147ca8286613c42565b91506147d68285613c42565b91506147e28284613c42565b91508190509695505050505050565b60006147fc82613ef1565b91506148088284613c42565b915081905092915050565b600061481e826143d3565b915061482a8285613c42565b9150614835826141c9565b91506148418284613c42565b915061484c826140e3565b91508190509392505050565b600061486382614493565b915061486f8284613c42565b915081905092915050565b600061488582614539565b91506148918284613c42565b915081905092915050565b60006148a7826146c5565b91506148b38284613c42565b915081905092915050565b60006020820190506148d36000830184613b10565b92915050565b60006080820190506148ee6000830187613b10565b6148fb6020830186613b10565b6149086040830185614754565b818103606083015261491a8184613bb2565b905095945050505050565b600060608201905061493a6000830186613b10565b6149476020830185614754565b81810360408301526149598184613bb2565b9050949350505050565b6000602082019050818103600083015261497d8184613b1f565b905092915050565b600060208201905061499a6000830184613b7d565b92915050565b60006040820190506149b56000830185613b8c565b6149c26020830184614754565b9392505050565b60006080820190506149de6000830187613b8c565b6149eb6020830186614754565b6149f86040830185613b10565b614a056060830184614754565b95945050505050565b60006020820190508181036000830152614a288184613c09565b905092915050565b60006020820190508181036000830152614a4981613c73565b9050919050565b60006020820190508181036000830152614a6981613cd9565b9050919050565b60006020820190508181036000830152614a8981613d3f565b9050919050565b60006020820190508181036000830152614aa981613da5565b9050919050565b60006020820190508181036000830152614ac981613de5565b9050919050565b60006020820190508181036000830152614ae981613e4b565b9050919050565b60006020820190508181036000830152614b0981613e8b565b9050919050565b60006020820190508181036000830152614b2981613f31565b9050919050565b60006020820190508181036000830152614b4981613f97565b9050919050565b60006020820190508181036000830152614b6981613ffd565b9050919050565b60006020820190508181036000830152614b8981614063565b9050919050565b60006020820190508181036000830152614ba9816140a3565b9050919050565b60006020820190508181036000830152614bc981614123565b9050919050565b60006020820190508181036000830152614be981614163565b9050919050565b60006020820190508181036000830152614c09816142ed565b9050919050565b60006020820190508181036000830152614c298161432d565b9050919050565b60006020820190508181036000830152614c498161436d565b9050919050565b60006020820190508181036000830152614c6981614413565b9050919050565b60006020820190508181036000830152614c8981614453565b9050919050565b60006020820190508181036000830152614ca9816144d3565b9050919050565b60006020820190508181036000830152614cc981614579565b9050919050565b60006020820190508181036000830152614ce9816145b9565b9050919050565b60006020820190508181036000830152614d098161461f565b9050919050565b60006020820190508181036000830152614d298161465f565b9050919050565b60006020820190508181036000830152614d4981614705565b9050919050565b6000602082019050614d656000830184614754565b92915050565b6000604082019050614d806000830185614754565b614d8d6020830184613beb565b9392505050565b6000604082019050614da96000830185614754565b614db66020830184613bfa565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614de457614de36151ed565b5b8060405250919050565b600067ffffffffffffffff821115614e0957614e086151ed565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ea582615023565b9150614eb083615023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ee557614ee4615160565b5b828201905092915050565b6000614efb82615023565b9150614f0683615023565b925082614f1657614f1561518f565b5b828204905092915050565b6000614f2c82615023565b9150614f3783615023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f7057614f6f615160565b5b828202905092915050565b6000614f8682615023565b9150614f9183615023565b925082821015614fa457614fa3615160565b5b828203905092915050565b6000614fba82615003565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006150458261502d565b9050919050565b60006150578261502d565b9050919050565b82818337600083830152505050565b60005b8381101561508b578082015181840152602081019050615070565b8381111561509a576000848401525b50505050565b600060028204905060018216806150b857607f821691505b602082108114156150cc576150cb6151be565b5b50919050565b60006150dd82615023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151105761510f615160565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061513a82615023565b915061514583615023565b9250826151555761515461518f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61523681614faf565b811461524157600080fd5b50565b61524d81614fc1565b811461525857600080fd5b50565b61526481614fcd565b811461526f57600080fd5b50565b61527b81614fd7565b811461528657600080fd5b50565b61529281615023565b811461529d57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223530252220793d223238302220666f6e742d73697a653d2232302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c7376672076657273696f6e3d22312e312220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c6e733a786c696e6b3d22687474703a2f2f7777772e77332e6f72672f313939392f786c696e6b22207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302034323020343230223e203c7374796c6520747970653d22746578742f637373223e203c215b43444154415b2074657874207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a206d6f6e6f73706163653b202d7765626b69742d666f6e742d736d6f6f7468696e673a20616e7469616c69617365643b202d6d6f7a2d6f73782d666f6e742d736d6f6f7468696e673a20677261797363616c653b207d20236f6e65207b2066696c7465723a2075726c282366696c746572293b207d205d5d3e203c2f7374796c653e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222332323232323222202f3e203c646566733e203c66696c7465722069643d2266696c746572223e203c6665466c6f6f6420666c6f6f642d636f6c6f723d22233232323232322220726573756c743d222332323232323222202f3e203c6665466c6f6f6420666c6f6f642d636f6c6f723d227265642220726573756c743d22666c6f6f643122202f3e203c6665466c6f6f6420666c6f6f642d636f6c6f723d226c696d65677265656e2220726573756c743d22666c6f6f643222202f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d2232222064793d22302220726573756c743d226f66663161222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d2231222064793d22302220726573756c743d226f66663162222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d222d31222064793d22302220726573756c743d226f66663261222f3e203c66654f666673657420696e3d22536f7572636547726170686963222064783d222d31222064793d22302220726573756c743d226f66663262222f3e203c6665436f6d706f7369746520696e3d22666c6f6f64312220696e323d226f6666316122206f70657261746f723d22696e2220726573756c743d22636f6d703122202f3e203c6665436f6d706f7369746520696e3d22666c6f6f64322220696e323d226f6666326122206f70657261746f723d22696e2220726573756c743d22636f6d703222202f3e203c66654d6572676520783d2230222077696474683d22313030252220726573756c743d226d6572676531223e203c66654d657267654e6f646520696e203d2022626c61636b22202f3e203c66654d657267654e6f646520696e203d2022636f6d703122202f3e203c66654d657267654e6f646520696e203d20226f6666316222202f3e203c616e696d617465206174747269627574654e616d653d227922206964203d2022792220647572203d223873222076616c756573203d202232353470783b2032353470783b2031383070783b2032353570783b2031383070783b2031353270783b2031353270783b2032303070783b2031393070783b2032353570783b2032353570783b2031373070783b2032313070783b2031393070783b2032353470783b2031393070783b2032323070783b2031363070783b2031383070783b2032353470783b20323532707822206b657954696d6573203d2022303b20302e3336323b20302e3336383b20302e3432313b20302e3434303b20302e3437373b20302e3531383b20302e3536343b20302e3539333b20302e3631333b20302e3634343b20302e3639333b20302e3732313b20302e3733363b20302e3737323b20302e3831383b20302e3834343b20302e3839343b20302e3932353b20302e3933393b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c616e696d617465206174747269627574654e616d653d2268656967687422206964203d2022682220647572203d223873222076616c756573203d2022313070783b203070783b20313070783b20333070783b20353070783b203070783b20313070783b203070783b203070783b203070783b20313070783b20353070783b20343070783b203070783b203070783b203070783b20343070783b20333070783b20313070783b203070783b203530707822206b7954696d6573203d2022303b20302e3336323b20302e3336383b20302e3432313b20302e3434303b20302e3437373b20302e3531383b20302e3536343b20302e3539333b20302e3631333b20302e3634343b20302e3639333b20302e3732313b20302e3733363b20302e3737323b20302e3831383b20302e3834343b20302e3839343b20302e3932353b20302e3933393b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c2f66654d657267653e203c66654d6572676520783d2230222077696474683d22313030252220793d223630707822206865696768743d2231353070782220726573756c743d226d6572676532223e203c66654d657267654e6f646520696e203d2022626c61636b22202f3e203c66654d657267654e6f646520696e203d2022636f6d703222202f3e203c66654d657267654e6f646520696e203d20226f6666326222202f3e203c616e696d617465206174747269627574654e616d653d227922206964203d2022792220647572203d223873222076616c756573203d202232353370783b2032353470783b2032313970783b2032303370783b2031393270783b2032353470783b2032323870783b2032333970783b2032343670783b2032353070783b2032313770783b2032303070783b2032343670783b2032313670783b2032333870783b2031393270783b2031363370783b2032353070783b2032353070783b2032353470783b22206b657954696d6573203d2022303b20302e3035353b20302e3130303b20302e3132353b20302e3135393b20302e3138323b20302e3230323b20302e3233363b20302e3236383b20302e3332363b20302e3335373b20302e3430303b20302e3430383b20302e3436313b20302e3439333b20302e3531333b20302e3534383b20302e3537373b20302e3631333b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c616e696d617465206174747269627574654e616d653d2268656967687422206964203d2022682220647572203d20223873222076616c756573203d20223070783b203070783b203070783b20313670783b20313670783b20313270783b20313270783b203070783b203070783b203570783b20313070783b20323270783b20333370783b20313170783b203070783b203070783b203130707822206b657954696d6573203d2022303b20302e3035353b20302e3130303b20302e3132353b20302e3135393b20302e3138323b20302e3230323b20302e3233363b20302e3236383b20302e3332363b20302e3335373b20302e3430303b20302e3430383b20302e3436313b20302e3439333b20302e3531333b20312220726570656174436f756e74203d2022696e646566696e69746522202f3e203c2f66654d657267653e203c66654d657267653e203c66654d657267654e6f646520696e3d22536f757263654772617068696322202f3e203c66654d657267654e6f646520696e3d226d657267653122202f3e203c66654d657267654e6f646520696e3d226d657267653222202f3e203c2f66654d657267653e203c2f66696c7465723e203c2f646566733e203c673e203c7465787420783d223530252220793d223130302220666f6e742d73697a653d2237302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e5448453c2f746578743e3c7465787420783d223530252220793d223231302220666f6e742d73697a653d223134302220636c6173733d22626173652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65222069643d226f6e65223ea264697066735822122095d615b04b91f01dafbd5d68756cf09df825ada75c0ae2b749114814c5165ab664736f6c63430008000033

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.