ETH Price: $3,274.48 (-4.14%)
Gas: 12 Gwei

Token

FastFoodDoge (FFD)
 

Overview

Max Total Supply

2,545 FFD

Holders

765

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tosshed.eth
Balance
1 FFD
0x597cedae7830a6d7ae884589e769b7016f3af7d5
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:
FastFoodDoges

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : FastFoodDoges.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721Namable.sol";
import "./IERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract FastFoodDoges is ERC721Namable, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    uint256 public constant MAX_ELEMENTS = 6969;
    uint256 public constant MAX_BASE_ELEMENTS = 1696;

    uint256 public constant PRICE = 42 * 10**15;
    uint256 public constant MAX_PUBLIC_MINT = 4;
    uint256 public constant MAX_WHITELIST_MINT = 2;

    address public pleasrDaoWallet;
    address public fffWallet;
    string public baseTokenURI;

    bool public saleOpen = false;
    bool public whiteListOpen = false;
    uint256 public breedPrice = 420 ether;

    IERC20Burnable private nameChangeToken;
    bool public nameChangeOpen = false;
    bool public breedingOpen = false;
    uint256 public babyDogeCount = 0;

    bytes32 public whiteListRoot;
    mapping(address => uint8) public whiteListMinted;
    mapping(address => uint8) public publicSaleMinted;
    mapping(uint256 => uint256) public lastBreed;
    uint256 public breedCoolDown = 1 days;

    constructor(
        bytes32 _whiteListRoot,
        string memory _baseUri,
        address _pleasrDaoWallet,
        address _fffWallet
    ) ERC721Namable("FastFoodDoge", "FFD") {
        whiteListRoot = _whiteListRoot;
        setBaseURI(_baseUri);
        pleasrDaoWallet = _pleasrDaoWallet;
        fffWallet = _fffWallet;

        _mintAnElement(fffWallet);
        for (uint256 i = 0; i < 15; i++) {
            _mintAnElement(pleasrDaoWallet);
            _mintAnElement(fffWallet);
        }
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function validSale(uint8 _count) private {
        require(totalSupply() + _count <= MAX_BASE_ELEMENTS, "Max limit");
        require(msg.value == PRICE.mul(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_msgSender());
        }
    }

    function mint(uint8 _count) public payable {
        require(saleOpen, "Sale not open");
        require((publicSaleMinted[_msgSender()] += _count) <= MAX_PUBLIC_MINT);

        validSale(_count);
    }

    function mintFromWhiteList(bytes32[] calldata _merkleProof, uint8 _count)
        public
        payable
    {
        require(whiteListOpen, "WhiteList Sale not open");
        require(
            (whiteListMinted[_msgSender()] += _count) <= MAX_WHITELIST_MINT
        );
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, whiteListRoot, leaf),
            "Invalid proof provided"
        );

        validSale(_count);
    }

    function breed(uint256 ogDoge) external {
        require(breedingOpen, "Breeding not open yet!");
        require(ownerOf(ogDoge) == _msgSender());
        require(ogDoge < MAX_BASE_ELEMENTS, "Not an OG Doge");
        require(
            totalSupply() < MAX_ELEMENTS,
            "Exceeds maximum number of items in collection"
        );
        require((lastBreed[ogDoge] += breedCoolDown) < block.timestamp);

        nameChangeToken.burnFrom(_msgSender(), breedPrice);
        _mintAnElement(_msgSender());
    }

    function _mintAnElement(address _to) private {
        uint256 id = totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setParams(
        bool _whiteListOpen,
        bool _saleOpen,
        bool _breedOpen,
        bool _nameChangeOpen,
        uint256 _breedCoolDown
    ) public onlyOwner {
        saleOpen = _saleOpen;
        whiteListOpen = _whiteListOpen;
        breedingOpen = _breedOpen;
        nameChangeOpen = _nameChangeOpen;
        breedCoolDown = _breedCoolDown;
    }

    function setPleasrDaoWallet(address _plsrDaoWallet) public {
        require(pleasrDaoWallet == _msgSender());
        pleasrDaoWallet = _plsrDaoWallet;
    }

    function setPrices(
        uint256 _nameChangePrice,
        uint256 _bioChangePrice,
        uint256 _breedPrice
    ) public onlyOwner {
        nameChangePrice = _nameChangePrice;
        bioChangePrice = _bioChangePrice;
        breedPrice = _breedPrice;
    }

    function setToken(IERC20Burnable _nameChangeToken) external onlyOwner {
        require(address(nameChangeToken) == address(0));
        nameChangeToken = _nameChangeToken;
    }

    function changeName(uint256 tokenId, string memory newName)
        public
        override
    {
        require(nameChangeOpen, "You can not change the name yet");
        nameChangeToken.burnFrom(_msgSender(), nameChangePrice);
        super.changeName(tokenId, newName);
    }

    function changeBio(uint256 tokenId, string memory _bio) public override {
        require(nameChangeOpen, "You can not change the bio yet");
        nameChangeToken.burnFrom(_msgSender(), bioChangePrice);
        super.changeBio(tokenId, _bio);
    }

    function withdrawAll() public payable {
        uint256 balance = address(this).balance;
        uint256 ffcut = balance.mul(55).div(100);
        uint256 dogeCut = balance.sub(ffcut);

        _withdraw(pleasrDaoWallet, dogeCut);
        _withdraw(fffWallet, ffcut);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

File 2 of 17 : ERC721Namable.sol
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract ERC721Namable is ERC721 {
	uint256 public nameChangePrice = 69 ether;
	uint256 public bioChangePrice = 69 ether;

	mapping(uint256 => string) public bio;

	// Mapping from token ID to name
	mapping (uint256 => string) private _tokenName;

	// Mapping if certain name string has already been reserved
	mapping (string => bool) private _nameReserved;

	event NameChange (uint256 indexed tokenId, string newName);
	event BioChange (uint256 indexed tokenId, string bio);

	constructor(string memory _name, string memory _symbol) public ERC721(_name, _symbol) {
	}

	function changeBio(uint256 _tokenId, string memory _bio) public virtual {
		address owner = ownerOf(_tokenId);
		require(_msgSender() == owner, "ERC721: caller is not the owner");

		bio[_tokenId] = _bio;
		emit BioChange(_tokenId, _bio); 
	}

	function changeName(uint256 tokenId, string memory newName) public virtual {
		address owner = ownerOf(tokenId);

		require(_msgSender() == owner, "ERC721: caller is not the owner");
		require(validateName(newName) == true, "Not a valid new name");
		require(sha256(bytes(newName)) != sha256(bytes(_tokenName[tokenId])), "New name is same as the current one");
		require(isNameReserved(newName) == false, "Name already reserved");

		// If already named, dereserve old name
		if (bytes(_tokenName[tokenId]).length > 0) {
			toggleReserveName(_tokenName[tokenId], false);
		}
		toggleReserveName(newName, true);
		_tokenName[tokenId] = newName;
		emit NameChange(tokenId, newName);
	}

	/**
	 * @dev Reserves the name if isReserve is set to true, de-reserves if set to false
	 */
	function toggleReserveName(string memory str, bool isReserve) internal {
		_nameReserved[toLower(str)] = isReserve;
	}

	/**
	 * @dev Returns name of the NFT at index.
	 */
	function tokenNameByIndex(uint256 index) public view returns (string memory) {
		return _tokenName[index];
	}

	/**
	 * @dev Returns if the name has been reserved.
	 */
	function isNameReserved(string memory nameString) public view returns (bool) {
		return _nameReserved[toLower(nameString)];
	}

	function validateName(string memory str) public pure returns (bool){
		bytes memory b = bytes(str);
		if(b.length < 1) return false;
		if(b.length > 25) return false; // Cannot be longer than 25 characters
		if(b[0] == 0x20) return false; // Leading space
		if (b[b.length - 1] == 0x20) return false; // Trailing space

		bytes1 lastChar = b[0];

		for(uint i; i<b.length; i++){
			bytes1 char = b[i];

			if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spaces

			if(
				!(char >= 0x30 && char <= 0x39) && //9-0
				!(char >= 0x41 && char <= 0x5A) && //A-Z
				!(char >= 0x61 && char <= 0x7A) && //a-z
				!(char == 0x20) //space
			)
				return false;

			lastChar = char;
		}

		return true;
	}

	 /**
	 * @dev Converts the string to lowercase
	 */
	function toLower(string memory str) public pure returns (string memory){
		bytes memory bStr = bytes(str);
		bytes memory bLower = new bytes(bStr.length);
		for (uint i = 0; i < bStr.length; i++) {
			// Uppercase character
			if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) {
				bLower[i] = bytes1(uint8(bStr[i]) + 32);
			} else {
				bLower[i] = bStr[i];
			}
		}
		return string(bLower);
	}
}

File 3 of 17 : IERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
interface IERC20Burnable is IERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) external;

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) external;
}

File 4 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

File 6 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

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 7 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 8 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

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 13 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 15 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 17 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_whiteListRoot","type":"bytes32"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_pleasrDaoWallet","type":"address"},{"internalType":"address","name":"_fffWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"bio","type":"string"}],"name":"BioChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","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":"MAX_BASE_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"babyDogeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bio","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bioChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ogDoge","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedCoolDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breedingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_bio","type":"string"}],"name":"changeBio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fffWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastBreed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"mintFromWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameChangeOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pleasrDaoWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whiteListOpen","type":"bool"},{"internalType":"bool","name":"_saleOpen","type":"bool"},{"internalType":"bool","name":"_breedOpen","type":"bool"},{"internalType":"bool","name":"_nameChangeOpen","type":"bool"},{"internalType":"uint256","name":"_breedCoolDown","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_plsrDaoWallet","type":"address"}],"name":"setPleasrDaoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nameChangePrice","type":"uint256"},{"internalType":"uint256","name":"_bioChangePrice","type":"uint256"},{"internalType":"uint256","name":"_breedPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20Burnable","name":"_nameChangeToken","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526803bd913e6c1df400006006556803bd913e6c1df400006007556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506816c4abbebea01000006011556000601260146101000a81548160ff0219169083151502179055506000601260156101000a81548160ff021916908315150217905550600060135562015180601855348015620000b057600080fd5b506040516200712b3803806200712b8339818101604052810190620000d6919062000b40565b6040518060400160405280600c81526020017f46617374466f6f64446f676500000000000000000000000000000000000000008152506040518060400160405280600381526020017f4646440000000000000000000000000000000000000000000000000000000000815250818181600090805190602001906200015c929190620009d9565b50806001908051906020019062000175929190620009d9565b50505050506200019a6200018e620002fb60201b60201c565b6200030360201b60201c565b83601481905550620001b283620003c960201b60201c565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000267600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200047460201b60201c565b60005b600f811015620002f057620002a7600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200047460201b60201c565b620002da600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200047460201b60201c565b8080620002e79062000fcb565b9150506200026a565b5050505050620011cf565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003d9620002fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ff620004b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044f9062000daa565b60405180910390fd5b80600f908051906020019062000470929190620009d9565b5050565b600062000486620004df60201b60201c565b90506200049f600c620004fd60201b62002aa11760201c565b620004b182826200051360201b60201c565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620004f8600c6200053960201b62002ab71760201c565b905090565b6001816000016000828254019250508190555050565b620005358282604051806020016040528060008152506200054760201b60201c565b5050565b600081600001549050919050565b620005598383620005b560201b60201c565b6200056e60008484846200079b60201b60201c565b620005b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a79062000d44565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000628576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061f9062000d88565b60405180910390fd5b62000639816200095560201b60201c565b156200067c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006739062000d66565b60405180910390fd5b6200069060008383620009c160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006e2919062000e58565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007c98473ffffffffffffffffffffffffffffffffffffffff16620009c660201b62002ac51760201c565b1562000948578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007fb620002fb60201b60201c565b8786866040518563ffffffff1660e01b81526004016200081f949392919062000cf0565b602060405180830381600087803b1580156200083a57600080fd5b505af19250505080156200086e57506040513d601f19601f820116820180604052508101906200086b919062000bc5565b60015b620008f7573d8060008114620008a1576040519150601f19603f3d011682016040523d82523d6000602084013e620008a6565b606091505b50600081511415620008ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e69062000d44565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200094d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620009e79062000f5f565b90600052602060002090601f01602090048101928262000a0b576000855562000a57565b82601f1062000a2657805160ff191683800117855562000a57565b8280016001018555821562000a57579182015b8281111562000a5657825182559160200191906001019062000a39565b5b50905062000a66919062000a6a565b5090565b5b8082111562000a8557600081600090555060010162000a6b565b5090565b600062000aa062000a9a8462000df5565b62000dcc565b90508281526020810184848401111562000ab957600080fd5b62000ac684828562000f29565b509392505050565b60008151905062000adf8162001181565b92915050565b60008151905062000af6816200119b565b92915050565b60008151905062000b0d81620011b5565b92915050565b600082601f83011262000b2557600080fd5b815162000b3784826020860162000a89565b91505092915050565b6000806000806080858703121562000b5757600080fd5b600062000b678782880162000ae5565b945050602085015167ffffffffffffffff81111562000b8557600080fd5b62000b938782880162000b13565b935050604062000ba68782880162000ace565b925050606062000bb98782880162000ace565b91505092959194509250565b60006020828403121562000bd857600080fd5b600062000be88482850162000afc565b91505092915050565b62000bfc8162000eb5565b82525050565b600062000c0f8262000e2b565b62000c1b818562000e36565b935062000c2d81856020860162000f29565b62000c3881620010a6565b840191505092915050565b600062000c5260328362000e47565b915062000c5f82620010b7565b604082019050919050565b600062000c79601c8362000e47565b915062000c868262001106565b602082019050919050565b600062000ca060208362000e47565b915062000cad826200112f565b602082019050919050565b600062000cc760208362000e47565b915062000cd48262001158565b602082019050919050565b62000cea8162000f1f565b82525050565b600060808201905062000d07600083018762000bf1565b62000d16602083018662000bf1565b62000d25604083018562000cdf565b818103606083015262000d39818462000c02565b905095945050505050565b6000602082019050818103600083015262000d5f8162000c43565b9050919050565b6000602082019050818103600083015262000d818162000c6a565b9050919050565b6000602082019050818103600083015262000da38162000c91565b9050919050565b6000602082019050818103600083015262000dc58162000cb8565b9050919050565b600062000dd862000deb565b905062000de6828262000f95565b919050565b6000604051905090565b600067ffffffffffffffff82111562000e135762000e1262001077565b5b62000e1e82620010a6565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e658262000f1f565b915062000e728362000f1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eaa5762000ea962001019565b5b828201905092915050565b600062000ec28262000eff565b9050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000f4957808201518184015260208101905062000f2c565b8381111562000f59576000848401525b50505050565b6000600282049050600182168062000f7857607f821691505b6020821081141562000f8f5762000f8e62001048565b5b50919050565b62000fa082620010a6565b810181811067ffffffffffffffff8211171562000fc25762000fc162001077565b5b80604052505050565b600062000fd88262000f1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200100e576200100d62001019565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200118c8162000eb5565b81146200119857600080fd5b50565b620011a68162000ec9565b8114620011b257600080fd5b50565b620011c08162000ed3565b8114620011cc57600080fd5b50565b615f4c80620011df6000396000f3fe6080604052600436106103355760003560e01c806370a08231116101ab57806399288dbb116100f7578063c08dfd3c11610095578063d547cfb71161006f578063d547cfb714610c1f578063e985e9c514610c4a578063f215edef14610c87578063f2fde38b14610cb057610335565b8063c08dfd3c14610b8e578063c39cbef114610bb9578063c87b56dd14610be257610335565b8063a88fe42d116100d1578063a88fe42d14610ae8578063af7fc56214610b11578063af9a1cd214610b3c578063b88d4fde14610b6557610335565b806399288dbb14610a575780639ffdb65a14610a82578063a22cb46514610abf57610335565b806383ba6c1b116101645780638d859f3e1161013e5780638d859f3e146109995780638da5cb5b146109c45780639416b423146109ef57806395d89b4114610a2c57610335565b806383ba6c1b14610939578063853828b6146109645780638be3b9891461096e57610335565b806370a082311461084857806370ab1a3f14610885578063715018a6146108b057806373e2fdda146108c75780637a69e478146108e3578063813bfa6d1461090e57610335565b806336033deb1161028557806355f804b31161022357806365f4fd12116101fd57806365f4fd12146107875780636d522418146107b25780636ecd2306146107ef5780636f148fa41461080b57610335565b806355f804b3146106f65780636352211e1461071f57806365f130971461075c57610335565b806342842e0e1161025f57806342842e0e1461064e57806343ee8da11461067757806345ca7738146106a25780634d426528146106cd57610335565b806336033deb146105ab5780633860e545146105e85780633ed50bb31461061157610335565b806315b56d10116102f257806323b872dd116102cc57806323b872dd146104ef578063244b7e93146105185780632a5f510e146105555780633502a7161461058057610335565b806315b56d101461045c57806318160ddd146104995780631f8a0a44146104c457610335565b806301ffc9a71461033a57806306fdde0314610377578063081812fc146103a2578063095ea7b3146103df5780630ebe884714610408578063144fa6d714610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c91906144cd565b610cd9565b60405161036e9190614dff565b60405180910390f35b34801561038357600080fd5b5061038c610dbb565b6040516103999190614e35565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190614589565b610e4d565b6040516103d69190614d6f565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190614399565b610ed2565b005b34801561041457600080fd5b5061041d610fea565b60405161042a9190615237565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061451f565b610ff0565b005b34801561046857600080fd5b50610483600480360381019061047e9190614548565b61110b565b6040516104909190614dff565b60405180910390f35b3480156104a557600080fd5b506104ae611148565b6040516104bb9190615237565b60405180910390f35b3480156104d057600080fd5b506104d9611159565b6040516104e69190614d6f565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614293565b61117f565b005b34801561052457600080fd5b5061053f600480360381019061053a919061422e565b6111df565b60405161054c9190615252565b60405180910390f35b34801561056157600080fd5b5061056a6111ff565b6040516105779190615237565b60405180910390f35b34801561058c57600080fd5b50610595611205565b6040516105a29190615237565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190614589565b61120b565b6040516105df9190614e35565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061422e565b6112ab565b005b34801561061d57600080fd5b506106386004803603810190610633919061422e565b611350565b6040516106459190615252565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190614293565b611370565b005b34801561068357600080fd5b5061068c611390565b6040516106999190615237565b60405180910390f35b3480156106ae57600080fd5b506106b7611396565b6040516106c49190615237565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906145b2565b61139c565b005b34801561070257600080fd5b5061071d60048036038101906107189190614548565b611491565b005b34801561072b57600080fd5b5061074660048036038101906107419190614589565b611527565b6040516107539190614d6f565b60405180910390f35b34801561076857600080fd5b506107716115d9565b60405161077e9190615237565b60405180910390f35b34801561079357600080fd5b5061079c6115de565b6040516107a99190614e1a565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190614589565b6115e4565b6040516107e69190614e35565b60405180910390f35b61080960048036038101906108049190614655565b611689565b005b34801561081757600080fd5b50610832600480360381019061082d9190614589565b61176d565b60405161083f9190615237565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a919061422e565b611785565b60405161087c9190615237565b60405180910390f35b34801561089157600080fd5b5061089a61183d565b6040516108a79190614dff565b60405180910390f35b3480156108bc57600080fd5b506108c5611850565b005b6108e160048036038101906108dc91906143d5565b6118d8565b005b3480156108ef57600080fd5b506108f8611a7e565b6040516109059190615237565b60405180910390f35b34801561091a57600080fd5b50610923611a84565b6040516109309190614dff565b60405180910390f35b34801561094557600080fd5b5061094e611a97565b60405161095b9190614d6f565b60405180910390f35b61096c611abd565b005b34801561097a57600080fd5b50610983611b61565b6040516109909190614dff565b60405180910390f35b3480156109a557600080fd5b506109ae611b74565b6040516109bb9190615237565b60405180910390f35b3480156109d057600080fd5b506109d9611b7f565b6040516109e69190614d6f565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a119190614548565b611ba9565b604051610a239190614e35565b60405180910390f35b348015610a3857600080fd5b50610a41611e6b565b604051610a4e9190614e35565b60405180910390f35b348015610a6357600080fd5b50610a6c611efd565b604051610a799190614dff565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190614548565b611f10565b604051610ab69190614dff565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae1919061435d565b6122da565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190614606565b6122f0565b005b348015610b1d57600080fd5b50610b26612386565b604051610b339190615237565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614589565b61238c565b005b348015610b7157600080fd5b50610b8c6004803603810190610b8791906142e2565b612592565b005b348015610b9a57600080fd5b50610ba36125f4565b604051610bb09190615237565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb91906145b2565b6125f9565b005b348015610bee57600080fd5b50610c096004803603810190610c049190614589565b6126ee565b604051610c169190614e35565b60405180910390f35b348015610c2b57600080fd5b50610c34612795565b604051610c419190614e35565b60405180910390f35b348015610c5657600080fd5b50610c716004803603810190610c6c9190614257565b612823565b604051610c7e9190614dff565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca9919061442d565b6128b7565b005b348015610cbc57600080fd5b50610cd76004803603810190610cd2919061422e565b6129a9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610da457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610db45750610db382612ad8565b5b9050919050565b606060008054610dca90615582565b80601f0160208091040260200160405190810160405280929190818152602001828054610df690615582565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b5050505050905090565b6000610e5882612b42565b610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906150b7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610edd82611527565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590615197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6d612bae565b73ffffffffffffffffffffffffffffffffffffffff161480610f9c5750610f9b81610f96612bae565b612823565b5b610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290615017565b60405180910390fd5b610fe58383612bb6565b505050565b60075481565b610ff8612bae565b73ffffffffffffffffffffffffffffffffffffffff16611016611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906150f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c757600080fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a61111883611ba9565b6040516111259190614d1f565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000611154600c612ab7565b905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61119061118a612bae565b82612c6f565b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906151d7565b60405180910390fd5b6111da838383612d4d565b505050565b60166020528060005260406000206000915054906101000a900460ff1681565b60115481565b611b3981565b6008602052806000526040600020600091509050805461122a90615582565b80601f016020809104026020016040519081016040528092919081815260200182805461125690615582565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b505050505081565b6112b3612bae565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130c57600080fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b61138b83838360405180602001604052806000815250612592565b505050565b60135481565b60065481565b601260149054906101000a900460ff166113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906150d7565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc6790611431612bae565b6007546040518363ffffffff1660e01b8152600401611451929190614dd6565b600060405180830381600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b5050505061148d8282612fa9565b5050565b611499612bae565b73ffffffffffffffffffffffffffffffffffffffff166114b7611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906150f7565b60405180910390fd5b80600f9080519060200190611523929190613fc9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790615057565b60405180910390fd5b80915050919050565b600481565b60145481565b606060096000838152602001908152602001600020805461160490615582565b80601f016020809104026020016040519081016040528092919081815260200182805461163090615582565b801561167d5780601f106116525761010080835404028352916020019161167d565b820191906000526020600020905b81548152906001019060200180831161166057829003601f168201915b50505050509050919050565b601060009054906101000a900460ff166116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614fd7565b60405180910390fd5b600481601660006116e7612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661173c91906153ad565b92506101000a81548160ff021916908360ff160217905560ff16111561176157600080fd5b61176a81613090565b50565b60176020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90615037565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601260149054906101000a900460ff1681565b611858612bae565b73ffffffffffffffffffffffffffffffffffffffff16611876611b7f565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906150f7565b60405180910390fd5b6118d6600061317d565b565b601060019054906101000a900460ff16611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614e97565b60405180910390fd5b60028160156000611936612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661198b91906153ad565b92506101000a81548160ff021916908360ff160217905560ff1611156119b057600080fd5b60006119ba612bae565b6040516020016119ca9190614caa565b604051602081830303815290604052805190602001209050611a30848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483613243565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614e57565b60405180910390fd5b611a7882613090565b50505050565b6106a081565b601060019054906101000a900460ff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60004790506000611aeb6064611add60378561325a90919063ffffffff16565b61327090919063ffffffff16565b90506000611b02828461328690919063ffffffff16565b9050611b30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261329c565b611b5c600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361329c565b505050565b601260159054906101000a900460ff1681565b669536c70891000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060008290506000815167ffffffffffffffff811115611bf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c255781602001600182028036833780820191505090505b50905060005b8251811015611e60576041838281518110611c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611cd85750605a838281518110611cc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611da0576020838281518110611d18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611d3091906153ad565b60f81b828281518110611d6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e4d565b828181518110611dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611e1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611e58906155e5565b915050611c2b565b508092505050919050565b606060018054611e7a90615582565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea690615582565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b600080829050600181511015611f2a5760009150506122d5565b601981511115611f3e5760009150506122d5565b602060f81b81600081518110611f7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611fba5760009150506122d5565b602060f81b8160018351611fce919061546f565b81518110612005577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156120425760009150506122d5565b60008160008151811061207e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b82518110156122cd5760008382815181106120d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480156121395750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561214b5760009450505050506122d5565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121a75750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b15801561220d5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161015801561220b5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122725750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156122705750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122a45750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156122b65760009450505050506122d5565b8092505080806122c5906155e5565b91505061208e565b506001925050505b919050565b6122ec6122e5612bae565b838361334d565b5050565b6122f8612bae565b73ffffffffffffffffffffffffffffffffffffffff16612316611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612363906150f7565b60405180910390fd5b826006819055508160078190555080601181905550505050565b60185481565b601260159054906101000a900460ff166123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614f37565b60405180910390fd5b6123e3612bae565b73ffffffffffffffffffffffffffffffffffffffff1661240282611527565b73ffffffffffffffffffffffffffffffffffffffff161461242257600080fd5b6106a08110612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d906151f7565b60405180910390fd5b611b39612471611148565b106124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890614ed7565b60405180910390fd5b426018546017600084815260200190815260200160002060008282546124d79190615357565b925050819055106124e757600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679061252d612bae565b6011546040518363ffffffff1660e01b815260040161254d929190614dd6565b600060405180830381600087803b15801561256757600080fd5b505af115801561257b573d6000803e3d6000fd5b5050505061258f61258a612bae565b6134ba565b50565b6125a361259d612bae565b83612c6f565b6125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d9906151d7565b60405180910390fd5b6125ee848484846134de565b50505050565b600281565b601260149054906101000a900460ff16612648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263f90614ff7565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679061268e612bae565b6006546040518363ffffffff1660e01b81526004016126ae929190614dd6565b600060405180830381600087803b1580156126c857600080fd5b505af11580156126dc573d6000803e3d6000fd5b505050506126ea828261353a565b5050565b60606126f982612b42565b612738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f90615137565b60405180910390fd5b600061274261388c565b90506000815111612762576040518060200160405280600081525061278d565b8061276c8461391e565b60405160200161277d929190614d36565b6040516020818303038152906040525b915050919050565b600f80546127a290615582565b80601f01602080910402602001604051908101604052809291908181526020018280546127ce90615582565b801561281b5780601f106127f05761010080835404028352916020019161281b565b820191906000526020600020905b8154815290600101906020018083116127fe57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128bf612bae565b73ffffffffffffffffffffffffffffffffffffffff166128dd611b7f565b73ffffffffffffffffffffffffffffffffffffffff1614612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906150f7565b60405180910390fd5b83601060006101000a81548160ff02191690831515021790555084601060016101000a81548160ff02191690831515021790555082601260156101000a81548160ff02191690831515021790555081601260146101000a81548160ff021916908315150217905550806018819055505050505050565b6129b1612bae565b73ffffffffffffffffffffffffffffffffffffffff166129cf611b7f565b73ffffffffffffffffffffffffffffffffffffffff1614612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c906150f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90614ef7565b60405180910390fd5b612a9e8161317d565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c2983611527565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c7a82612b42565b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090614fb7565b60405180910390fd5b6000612cc483611527565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3357508373ffffffffffffffffffffffffffffffffffffffff16612d1b84610e4d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d445750612d438185612823565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6d82611527565b73ffffffffffffffffffffffffffffffffffffffff1614612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba90615117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614f57565b60405180910390fd5b612e3e838383613acb565b612e49600082612bb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e99919061546f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef09190615357565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612fb483611527565b90508073ffffffffffffffffffffffffffffffffffffffff16612fd5612bae565b73ffffffffffffffffffffffffffffffffffffffff161461302b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302290614e77565b60405180910390fd5b81600860008581526020019081526020016000209080519060200190613052929190613fc9565b50827fbe3e2fc72ea4bd0d860e908b1ee27aa9856809e62a75bfc0cb7f04b5d791873d836040516130839190614e35565b60405180910390a2505050565b6106a08160ff1661309f611148565b6130a99190615357565b11156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e190614f97565b60405180910390fd5b6131078160ff16669536c70891000061325a90919063ffffffff16565b3414613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313f90615157565b60405180910390fd5b60005b8160ff1681101561317957613166613161612bae565b6134ba565b8080613171906155e5565b91505061314b565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132508584613ad0565b1490509392505050565b600081836132689190615415565b905092915050565b6000818361327e91906153e4565b905092915050565b60008183613294919061546f565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516132c290614d5a565b60006040518083038185875af1925050503d80600081146132ff576040519150601f19603f3d011682016040523d82523d6000602084013e613304565b606091505b5050905080613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333f906151b7565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b390614f77565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134ad9190614dff565b60405180910390a3505050565b60006134c4611148565b90506134d0600c612aa1565b6134da8282613ba9565b5050565b6134e9848484612d4d565b6134f584848484613bc7565b613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614eb7565b60405180910390fd5b50505050565b600061354583611527565b90508073ffffffffffffffffffffffffffffffffffffffff16613566612bae565b73ffffffffffffffffffffffffffffffffffffffff16146135bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b390614e77565b60405180910390fd5b600115156135c983611f10565b15151461360b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360290615217565b60405180910390fd5b60026009600085815260200190815260200160002060405161362d9190614d08565b602060405180830381855afa15801561364a573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061366d91906144a4565b60028360405161367d9190614cf1565b602060405180830381855afa15801561369a573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906136bd91906144a4565b14156136fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f590615177565b60405180910390fd5b6000151561370b8361110b565b15151461374d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374490615097565b60405180910390fd5b600060096000858152602001908152602001600020805461376d90615582565b9050111561381c5761381b60096000858152602001908152602001600020805461379690615582565b80601f01602080910402602001604051908101604052809291908181526020018280546137c290615582565b801561380f5780601f106137e45761010080835404028352916020019161380f565b820191906000526020600020905b8154815290600101906020018083116137f257829003601f168201915b50505050506000613d5e565b5b613827826001613d5e565b8160096000858152602001908152602001600020908051906020019061384e929190613fc9565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b8360405161387f9190614e35565b60405180910390a2505050565b6060600f805461389b90615582565b80601f01602080910402602001604051908101604052809291908181526020018280546138c790615582565b80156139145780601f106138e957610100808354040283529160200191613914565b820191906000526020600020905b8154815290600101906020018083116138f757829003601f168201915b5050505050905090565b60606000821415613966576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ac6565b600082905060005b60008214613998578080613981906155e5565b915050600a8261399191906153e4565b915061396e565b60008167ffffffffffffffff8111156139da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a0c5781602001600182028036833780820191505090505b5090505b60008514613abf57600182613a25919061546f565b9150600a85613a34919061565c565b6030613a409190615357565b60f81b818381518110613a7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ab891906153e4565b9450613a10565b8093505050505b919050565b505050565b60008082905060005b8451811015613b9e576000858281518110613b1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613b5e578281604051602001613b41929190614cc5565b604051602081830303815290604052805190602001209250613b8a565b8083604051602001613b71929190614cc5565b6040516020818303038152906040528051906020012092505b508080613b96906155e5565b915050613ad9565b508091505092915050565b613bc3828260405180602001604052806000815250613da0565b5050565b6000613be88473ffffffffffffffffffffffffffffffffffffffff16612ac5565b15613d51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c11612bae565b8786866040518563ffffffff1660e01b8152600401613c339493929190614d8a565b602060405180830381600087803b158015613c4d57600080fd5b505af1925050508015613c7e57506040513d601f19601f82011682018060405250810190613c7b91906144f6565b60015b613d01573d8060008114613cae576040519150601f19603f3d011682016040523d82523d6000602084013e613cb3565b606091505b50600081511415613cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf090614eb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d56565b600190505b949350505050565b80600a613d6a84611ba9565b604051613d779190614d1f565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b613daa8383613dfb565b613db76000848484613bc7565b613df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ded90614eb7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6290615077565b60405180910390fd5b613e7481612b42565b15613eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eab90614f17565b60405180910390fd5b613ec060008383613acb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f109190615357565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613fd590615582565b90600052602060002090601f016020900481019282613ff7576000855561403e565b82601f1061401057805160ff191683800117855561403e565b8280016001018555821561403e579182015b8281111561403d578251825591602001919060010190614022565b5b50905061404b919061404f565b5090565b5b80821115614068576000816000905550600101614050565b5090565b600061407f61407a84615292565b61526d565b90508281526020810184848401111561409757600080fd5b6140a2848285615540565b509392505050565b60006140bd6140b8846152c3565b61526d565b9050828152602081018484840111156140d557600080fd5b6140e0848285615540565b509392505050565b6000813590506140f781615e75565b92915050565b60008083601f84011261410f57600080fd5b8235905067ffffffffffffffff81111561412857600080fd5b60208301915083602082028301111561414057600080fd5b9250929050565b60008135905061415681615e8c565b92915050565b60008151905061416b81615ea3565b92915050565b60008135905061418081615eba565b92915050565b60008151905061419581615eba565b92915050565b600082601f8301126141ac57600080fd5b81356141bc84826020860161406c565b91505092915050565b6000813590506141d481615ed1565b92915050565b600082601f8301126141eb57600080fd5b81356141fb8482602086016140aa565b91505092915050565b60008135905061421381615ee8565b92915050565b60008135905061422881615eff565b92915050565b60006020828403121561424057600080fd5b600061424e848285016140e8565b91505092915050565b6000806040838503121561426a57600080fd5b6000614278858286016140e8565b9250506020614289858286016140e8565b9150509250929050565b6000806000606084860312156142a857600080fd5b60006142b6868287016140e8565b93505060206142c7868287016140e8565b92505060406142d886828701614204565b9150509250925092565b600080600080608085870312156142f857600080fd5b6000614306878288016140e8565b9450506020614317878288016140e8565b935050604061432887828801614204565b925050606085013567ffffffffffffffff81111561434557600080fd5b6143518782880161419b565b91505092959194509250565b6000806040838503121561437057600080fd5b600061437e858286016140e8565b925050602061438f85828601614147565b9150509250929050565b600080604083850312156143ac57600080fd5b60006143ba858286016140e8565b92505060206143cb85828601614204565b9150509250929050565b6000806000604084860312156143ea57600080fd5b600084013567ffffffffffffffff81111561440457600080fd5b614410868287016140fd565b9350935050602061442386828701614219565b9150509250925092565b600080600080600060a0868803121561444557600080fd5b600061445388828901614147565b955050602061446488828901614147565b945050604061447588828901614147565b935050606061448688828901614147565b925050608061449788828901614204565b9150509295509295909350565b6000602082840312156144b657600080fd5b60006144c48482850161415c565b91505092915050565b6000602082840312156144df57600080fd5b60006144ed84828501614171565b91505092915050565b60006020828403121561450857600080fd5b600061451684828501614186565b91505092915050565b60006020828403121561453157600080fd5b600061453f848285016141c5565b91505092915050565b60006020828403121561455a57600080fd5b600082013567ffffffffffffffff81111561457457600080fd5b614580848285016141da565b91505092915050565b60006020828403121561459b57600080fd5b60006145a984828501614204565b91505092915050565b600080604083850312156145c557600080fd5b60006145d385828601614204565b925050602083013567ffffffffffffffff8111156145f057600080fd5b6145fc858286016141da565b9150509250929050565b60008060006060848603121561461b57600080fd5b600061462986828701614204565b935050602061463a86828701614204565b925050604061464b86828701614204565b9150509250925092565b60006020828403121561466757600080fd5b600061467584828501614219565b91505092915050565b614687816154a3565b82525050565b61469e614699826154a3565b61562e565b82525050565b6146ad816154b5565b82525050565b6146bc816154c1565b82525050565b6146d36146ce826154c1565b615640565b82525050565b60006146e482615309565b6146ee818561531f565b93506146fe81856020860161554f565b61470781615749565b840191505092915050565b600061471d82615309565b6147278185615330565b935061473781856020860161554f565b80840191505092915050565b6000815461475081615582565b61475a8186615330565b945060018216600081146147755760018114614786576147b9565b60ff198316865281860193506147b9565b61478f856152f4565b60005b838110156147b157815481890152600182019150602081019050614792565b838801955050505b50505092915050565b60006147cd82615314565b6147d7818561533b565b93506147e781856020860161554f565b6147f081615749565b840191505092915050565b600061480682615314565b614810818561534c565b935061482081856020860161554f565b80840191505092915050565b600061483960168361533b565b915061484482615767565b602082019050919050565b600061485c601f8361533b565b915061486782615790565b602082019050919050565b600061487f60178361533b565b915061488a826157b9565b602082019050919050565b60006148a260328361533b565b91506148ad826157e2565b604082019050919050565b60006148c5602d8361533b565b91506148d082615831565b604082019050919050565b60006148e860268361533b565b91506148f382615880565b604082019050919050565b600061490b601c8361533b565b9150614916826158cf565b602082019050919050565b600061492e60168361533b565b9150614939826158f8565b602082019050919050565b600061495160248361533b565b915061495c82615921565b604082019050919050565b600061497460198361533b565b915061497f82615970565b602082019050919050565b600061499760098361533b565b91506149a282615999565b602082019050919050565b60006149ba602c8361533b565b91506149c5826159c2565b604082019050919050565b60006149dd600d8361533b565b91506149e882615a11565b602082019050919050565b6000614a00601f8361533b565b9150614a0b82615a3a565b602082019050919050565b6000614a2360388361533b565b9150614a2e82615a63565b604082019050919050565b6000614a46602a8361533b565b9150614a5182615ab2565b604082019050919050565b6000614a6960298361533b565b9150614a7482615b01565b604082019050919050565b6000614a8c60208361533b565b9150614a9782615b50565b602082019050919050565b6000614aaf60158361533b565b9150614aba82615b79565b602082019050919050565b6000614ad2602c8361533b565b9150614add82615ba2565b604082019050919050565b6000614af5601e8361533b565b9150614b0082615bf1565b602082019050919050565b6000614b1860208361533b565b9150614b2382615c1a565b602082019050919050565b6000614b3b60298361533b565b9150614b4682615c43565b604082019050919050565b6000614b5e602f8361533b565b9150614b6982615c92565b604082019050919050565b6000614b8160118361533b565b9150614b8c82615ce1565b602082019050919050565b6000614ba460238361533b565b9150614baf82615d0a565b604082019050919050565b6000614bc760218361533b565b9150614bd282615d59565b604082019050919050565b6000614bea600083615330565b9150614bf582615da8565b600082019050919050565b6000614c0d60108361533b565b9150614c1882615dab565b602082019050919050565b6000614c3060318361533b565b9150614c3b82615dd4565b604082019050919050565b6000614c53600e8361533b565b9150614c5e82615e23565b602082019050919050565b6000614c7660148361533b565b9150614c8182615e4c565b602082019050919050565b614c9581615529565b82525050565b614ca481615533565b82525050565b6000614cb6828461468d565b60148201915081905092915050565b6000614cd182856146c2565b602082019150614ce182846146c2565b6020820191508190509392505050565b6000614cfd8284614712565b915081905092915050565b6000614d148284614743565b915081905092915050565b6000614d2b82846147fb565b915081905092915050565b6000614d4282856147fb565b9150614d4e82846147fb565b91508190509392505050565b6000614d6582614bdd565b9150819050919050565b6000602082019050614d84600083018461467e565b92915050565b6000608082019050614d9f600083018761467e565b614dac602083018661467e565b614db96040830185614c8c565b8181036060830152614dcb81846146d9565b905095945050505050565b6000604082019050614deb600083018561467e565b614df86020830184614c8c565b9392505050565b6000602082019050614e1460008301846146a4565b92915050565b6000602082019050614e2f60008301846146b3565b92915050565b60006020820190508181036000830152614e4f81846147c2565b905092915050565b60006020820190508181036000830152614e708161482c565b9050919050565b60006020820190508181036000830152614e908161484f565b9050919050565b60006020820190508181036000830152614eb081614872565b9050919050565b60006020820190508181036000830152614ed081614895565b9050919050565b60006020820190508181036000830152614ef0816148b8565b9050919050565b60006020820190508181036000830152614f10816148db565b9050919050565b60006020820190508181036000830152614f30816148fe565b9050919050565b60006020820190508181036000830152614f5081614921565b9050919050565b60006020820190508181036000830152614f7081614944565b9050919050565b60006020820190508181036000830152614f9081614967565b9050919050565b60006020820190508181036000830152614fb08161498a565b9050919050565b60006020820190508181036000830152614fd0816149ad565b9050919050565b60006020820190508181036000830152614ff0816149d0565b9050919050565b60006020820190508181036000830152615010816149f3565b9050919050565b6000602082019050818103600083015261503081614a16565b9050919050565b6000602082019050818103600083015261505081614a39565b9050919050565b6000602082019050818103600083015261507081614a5c565b9050919050565b6000602082019050818103600083015261509081614a7f565b9050919050565b600060208201905081810360008301526150b081614aa2565b9050919050565b600060208201905081810360008301526150d081614ac5565b9050919050565b600060208201905081810360008301526150f081614ae8565b9050919050565b6000602082019050818103600083015261511081614b0b565b9050919050565b6000602082019050818103600083015261513081614b2e565b9050919050565b6000602082019050818103600083015261515081614b51565b9050919050565b6000602082019050818103600083015261517081614b74565b9050919050565b6000602082019050818103600083015261519081614b97565b9050919050565b600060208201905081810360008301526151b081614bba565b9050919050565b600060208201905081810360008301526151d081614c00565b9050919050565b600060208201905081810360008301526151f081614c23565b9050919050565b6000602082019050818103600083015261521081614c46565b9050919050565b6000602082019050818103600083015261523081614c69565b9050919050565b600060208201905061524c6000830184614c8c565b92915050565b60006020820190506152676000830184614c9b565b92915050565b6000615277615288565b905061528382826155b4565b919050565b6000604051905090565b600067ffffffffffffffff8211156152ad576152ac61571a565b5b6152b682615749565b9050602081019050919050565b600067ffffffffffffffff8211156152de576152dd61571a565b5b6152e782615749565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061536282615529565b915061536d83615529565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153a2576153a161568d565b5b828201905092915050565b60006153b882615533565b91506153c383615533565b92508260ff038211156153d9576153d861568d565b5b828201905092915050565b60006153ef82615529565b91506153fa83615529565b92508261540a576154096156bc565b5b828204905092915050565b600061542082615529565b915061542b83615529565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154645761546361568d565b5b828202905092915050565b600061547a82615529565b915061548583615529565b9250828210156154985761549761568d565b5b828203905092915050565b60006154ae82615509565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000615502826154a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561556d578082015181840152602081019050615552565b8381111561557c576000848401525b50505050565b6000600282049050600182168061559a57607f821691505b602082108114156155ae576155ad6156eb565b5b50919050565b6155bd82615749565b810181811067ffffffffffffffff821117156155dc576155db61571a565b5b80604052505050565b60006155f082615529565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156235761562261568d565b5b600182019050919050565b60006156398261564a565b9050919050565b6000819050919050565b60006156558261575a565b9050919050565b600061566782615529565b915061567283615529565b925082615682576156816156bc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f662070726f766964656400000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746865206f776e657200600082015250565b7f57686974654c6973742053616c65206e6f74206f70656e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d206e756d626572206f66206974656d732060008201527f696e20636f6c6c656374696f6e00000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4272656564696e67206e6f74206f70656e207965742100000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f596f752063616e206e6f74206368616e676520746865206e616d652079657400600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e616d6520616c72656164792072657365727665640000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206368616e6765207468652062696f207965740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4e6577206e616d652069732073616d65206173207468652063757272656e742060008201527f6f6e650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420616e204f4720446f6765000000000000000000000000000000000000600082015250565b7f4e6f7420612076616c6964206e6577206e616d65000000000000000000000000600082015250565b615e7e816154a3565b8114615e8957600080fd5b50565b615e95816154b5565b8114615ea057600080fd5b50565b615eac816154c1565b8114615eb757600080fd5b50565b615ec3816154cb565b8114615ece57600080fd5b50565b615eda816154f7565b8114615ee557600080fd5b50565b615ef181615529565b8114615efc57600080fd5b50565b615f0881615533565b8114615f1357600080fd5b5056fea264697066735822122066b835e2a8dda2ed4ae7e16eb4eb8b099dbcb3c272c51bde511cfe605eb5b63464736f6c63430008040033928d9bd64af9df3df93b61c7965fab3c36011390922c6345f661034b6abd6ac10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000cb20a54c4ed357bf7e28d1966e3f0f5215e25b370000000000000000000000002b35ace6069c68483b4e48cad85bace790789a92000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f666173742d666f6f642d646f67652e6865726f6b756170702e636f6d2f66617374666f6f64646f67652f0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c806370a08231116101ab57806399288dbb116100f7578063c08dfd3c11610095578063d547cfb71161006f578063d547cfb714610c1f578063e985e9c514610c4a578063f215edef14610c87578063f2fde38b14610cb057610335565b8063c08dfd3c14610b8e578063c39cbef114610bb9578063c87b56dd14610be257610335565b8063a88fe42d116100d1578063a88fe42d14610ae8578063af7fc56214610b11578063af9a1cd214610b3c578063b88d4fde14610b6557610335565b806399288dbb14610a575780639ffdb65a14610a82578063a22cb46514610abf57610335565b806383ba6c1b116101645780638d859f3e1161013e5780638d859f3e146109995780638da5cb5b146109c45780639416b423146109ef57806395d89b4114610a2c57610335565b806383ba6c1b14610939578063853828b6146109645780638be3b9891461096e57610335565b806370a082311461084857806370ab1a3f14610885578063715018a6146108b057806373e2fdda146108c75780637a69e478146108e3578063813bfa6d1461090e57610335565b806336033deb1161028557806355f804b31161022357806365f4fd12116101fd57806365f4fd12146107875780636d522418146107b25780636ecd2306146107ef5780636f148fa41461080b57610335565b806355f804b3146106f65780636352211e1461071f57806365f130971461075c57610335565b806342842e0e1161025f57806342842e0e1461064e57806343ee8da11461067757806345ca7738146106a25780634d426528146106cd57610335565b806336033deb146105ab5780633860e545146105e85780633ed50bb31461061157610335565b806315b56d10116102f257806323b872dd116102cc57806323b872dd146104ef578063244b7e93146105185780632a5f510e146105555780633502a7161461058057610335565b806315b56d101461045c57806318160ddd146104995780631f8a0a44146104c457610335565b806301ffc9a71461033a57806306fdde0314610377578063081812fc146103a2578063095ea7b3146103df5780630ebe884714610408578063144fa6d714610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c91906144cd565b610cd9565b60405161036e9190614dff565b60405180910390f35b34801561038357600080fd5b5061038c610dbb565b6040516103999190614e35565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190614589565b610e4d565b6040516103d69190614d6f565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190614399565b610ed2565b005b34801561041457600080fd5b5061041d610fea565b60405161042a9190615237565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061451f565b610ff0565b005b34801561046857600080fd5b50610483600480360381019061047e9190614548565b61110b565b6040516104909190614dff565b60405180910390f35b3480156104a557600080fd5b506104ae611148565b6040516104bb9190615237565b60405180910390f35b3480156104d057600080fd5b506104d9611159565b6040516104e69190614d6f565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190614293565b61117f565b005b34801561052457600080fd5b5061053f600480360381019061053a919061422e565b6111df565b60405161054c9190615252565b60405180910390f35b34801561056157600080fd5b5061056a6111ff565b6040516105779190615237565b60405180910390f35b34801561058c57600080fd5b50610595611205565b6040516105a29190615237565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190614589565b61120b565b6040516105df9190614e35565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061422e565b6112ab565b005b34801561061d57600080fd5b506106386004803603810190610633919061422e565b611350565b6040516106459190615252565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190614293565b611370565b005b34801561068357600080fd5b5061068c611390565b6040516106999190615237565b60405180910390f35b3480156106ae57600080fd5b506106b7611396565b6040516106c49190615237565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906145b2565b61139c565b005b34801561070257600080fd5b5061071d60048036038101906107189190614548565b611491565b005b34801561072b57600080fd5b5061074660048036038101906107419190614589565b611527565b6040516107539190614d6f565b60405180910390f35b34801561076857600080fd5b506107716115d9565b60405161077e9190615237565b60405180910390f35b34801561079357600080fd5b5061079c6115de565b6040516107a99190614e1a565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190614589565b6115e4565b6040516107e69190614e35565b60405180910390f35b61080960048036038101906108049190614655565b611689565b005b34801561081757600080fd5b50610832600480360381019061082d9190614589565b61176d565b60405161083f9190615237565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a919061422e565b611785565b60405161087c9190615237565b60405180910390f35b34801561089157600080fd5b5061089a61183d565b6040516108a79190614dff565b60405180910390f35b3480156108bc57600080fd5b506108c5611850565b005b6108e160048036038101906108dc91906143d5565b6118d8565b005b3480156108ef57600080fd5b506108f8611a7e565b6040516109059190615237565b60405180910390f35b34801561091a57600080fd5b50610923611a84565b6040516109309190614dff565b60405180910390f35b34801561094557600080fd5b5061094e611a97565b60405161095b9190614d6f565b60405180910390f35b61096c611abd565b005b34801561097a57600080fd5b50610983611b61565b6040516109909190614dff565b60405180910390f35b3480156109a557600080fd5b506109ae611b74565b6040516109bb9190615237565b60405180910390f35b3480156109d057600080fd5b506109d9611b7f565b6040516109e69190614d6f565b60405180910390f35b3480156109fb57600080fd5b50610a166004803603810190610a119190614548565b611ba9565b604051610a239190614e35565b60405180910390f35b348015610a3857600080fd5b50610a41611e6b565b604051610a4e9190614e35565b60405180910390f35b348015610a6357600080fd5b50610a6c611efd565b604051610a799190614dff565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190614548565b611f10565b604051610ab69190614dff565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae1919061435d565b6122da565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a9190614606565b6122f0565b005b348015610b1d57600080fd5b50610b26612386565b604051610b339190615237565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614589565b61238c565b005b348015610b7157600080fd5b50610b8c6004803603810190610b8791906142e2565b612592565b005b348015610b9a57600080fd5b50610ba36125f4565b604051610bb09190615237565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb91906145b2565b6125f9565b005b348015610bee57600080fd5b50610c096004803603810190610c049190614589565b6126ee565b604051610c169190614e35565b60405180910390f35b348015610c2b57600080fd5b50610c34612795565b604051610c419190614e35565b60405180910390f35b348015610c5657600080fd5b50610c716004803603810190610c6c9190614257565b612823565b604051610c7e9190614dff565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca9919061442d565b6128b7565b005b348015610cbc57600080fd5b50610cd76004803603810190610cd2919061422e565b6129a9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610da457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610db45750610db382612ad8565b5b9050919050565b606060008054610dca90615582565b80601f0160208091040260200160405190810160405280929190818152602001828054610df690615582565b8015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b5050505050905090565b6000610e5882612b42565b610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906150b7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610edd82611527565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590615197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f6d612bae565b73ffffffffffffffffffffffffffffffffffffffff161480610f9c5750610f9b81610f96612bae565b612823565b5b610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290615017565b60405180910390fd5b610fe58383612bb6565b505050565b60075481565b610ff8612bae565b73ffffffffffffffffffffffffffffffffffffffff16611016611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611063906150f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c757600080fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a61111883611ba9565b6040516111259190614d1f565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000611154600c612ab7565b905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61119061118a612bae565b82612c6f565b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906151d7565b60405180910390fd5b6111da838383612d4d565b505050565b60166020528060005260406000206000915054906101000a900460ff1681565b60115481565b611b3981565b6008602052806000526040600020600091509050805461122a90615582565b80601f016020809104026020016040519081016040528092919081815260200182805461125690615582565b80156112a35780601f10611278576101008083540402835291602001916112a3565b820191906000526020600020905b81548152906001019060200180831161128657829003601f168201915b505050505081565b6112b3612bae565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130c57600080fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b61138b83838360405180602001604052806000815250612592565b505050565b60135481565b60065481565b601260149054906101000a900460ff166113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906150d7565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc6790611431612bae565b6007546040518363ffffffff1660e01b8152600401611451929190614dd6565b600060405180830381600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b5050505061148d8282612fa9565b5050565b611499612bae565b73ffffffffffffffffffffffffffffffffffffffff166114b7611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906150f7565b60405180910390fd5b80600f9080519060200190611523929190613fc9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790615057565b60405180910390fd5b80915050919050565b600481565b60145481565b606060096000838152602001908152602001600020805461160490615582565b80601f016020809104026020016040519081016040528092919081815260200182805461163090615582565b801561167d5780601f106116525761010080835404028352916020019161167d565b820191906000526020600020905b81548152906001019060200180831161166057829003601f168201915b50505050509050919050565b601060009054906101000a900460ff166116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90614fd7565b60405180910390fd5b600481601660006116e7612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661173c91906153ad565b92506101000a81548160ff021916908360ff160217905560ff16111561176157600080fd5b61176a81613090565b50565b60176020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90615037565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601260149054906101000a900460ff1681565b611858612bae565b73ffffffffffffffffffffffffffffffffffffffff16611876611b7f565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906150f7565b60405180910390fd5b6118d6600061317d565b565b601060019054906101000a900460ff16611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90614e97565b60405180910390fd5b60028160156000611936612bae565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661198b91906153ad565b92506101000a81548160ff021916908360ff160217905560ff1611156119b057600080fd5b60006119ba612bae565b6040516020016119ca9190614caa565b604051602081830303815290604052805190602001209050611a30848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483613243565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614e57565b60405180910390fd5b611a7882613090565b50505050565b6106a081565b601060019054906101000a900460ff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60004790506000611aeb6064611add60378561325a90919063ffffffff16565b61327090919063ffffffff16565b90506000611b02828461328690919063ffffffff16565b9050611b30600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261329c565b611b5c600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361329c565b505050565b601260159054906101000a900460ff1681565b669536c70891000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060008290506000815167ffffffffffffffff811115611bf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c255781602001600182028036833780820191505090505b50905060005b8251811015611e60576041838281518110611c6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611cd85750605a838281518110611cc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611da0576020838281518110611d18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611d3091906153ad565b60f81b828281518110611d6c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e4d565b828181518110611dd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611e1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611e58906155e5565b915050611c2b565b508092505050919050565b606060018054611e7a90615582565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea690615582565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b600080829050600181511015611f2a5760009150506122d5565b601981511115611f3e5760009150506122d5565b602060f81b81600081518110611f7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611fba5760009150506122d5565b602060f81b8160018351611fce919061546f565b81518110612005577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156120425760009150506122d5565b60008160008151811061207e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b82518110156122cd5760008382815181106120d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480156121395750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561214b5760009450505050506122d5565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121a75750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b15801561220d5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161015801561220b5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122725750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156122705750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122a45750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156122b65760009450505050506122d5565b8092505080806122c5906155e5565b91505061208e565b506001925050505b919050565b6122ec6122e5612bae565b838361334d565b5050565b6122f8612bae565b73ffffffffffffffffffffffffffffffffffffffff16612316611b7f565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612363906150f7565b60405180910390fd5b826006819055508160078190555080601181905550505050565b60185481565b601260159054906101000a900460ff166123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614f37565b60405180910390fd5b6123e3612bae565b73ffffffffffffffffffffffffffffffffffffffff1661240282611527565b73ffffffffffffffffffffffffffffffffffffffff161461242257600080fd5b6106a08110612466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245d906151f7565b60405180910390fd5b611b39612471611148565b106124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890614ed7565b60405180910390fd5b426018546017600084815260200190815260200160002060008282546124d79190615357565b925050819055106124e757600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679061252d612bae565b6011546040518363ffffffff1660e01b815260040161254d929190614dd6565b600060405180830381600087803b15801561256757600080fd5b505af115801561257b573d6000803e3d6000fd5b5050505061258f61258a612bae565b6134ba565b50565b6125a361259d612bae565b83612c6f565b6125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d9906151d7565b60405180910390fd5b6125ee848484846134de565b50505050565b600281565b601260149054906101000a900460ff16612648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263f90614ff7565b60405180910390fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679061268e612bae565b6006546040518363ffffffff1660e01b81526004016126ae929190614dd6565b600060405180830381600087803b1580156126c857600080fd5b505af11580156126dc573d6000803e3d6000fd5b505050506126ea828261353a565b5050565b60606126f982612b42565b612738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f90615137565b60405180910390fd5b600061274261388c565b90506000815111612762576040518060200160405280600081525061278d565b8061276c8461391e565b60405160200161277d929190614d36565b6040516020818303038152906040525b915050919050565b600f80546127a290615582565b80601f01602080910402602001604051908101604052809291908181526020018280546127ce90615582565b801561281b5780601f106127f05761010080835404028352916020019161281b565b820191906000526020600020905b8154815290600101906020018083116127fe57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128bf612bae565b73ffffffffffffffffffffffffffffffffffffffff166128dd611b7f565b73ffffffffffffffffffffffffffffffffffffffff1614612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906150f7565b60405180910390fd5b83601060006101000a81548160ff02191690831515021790555084601060016101000a81548160ff02191690831515021790555082601260156101000a81548160ff02191690831515021790555081601260146101000a81548160ff021916908315150217905550806018819055505050505050565b6129b1612bae565b73ffffffffffffffffffffffffffffffffffffffff166129cf611b7f565b73ffffffffffffffffffffffffffffffffffffffff1614612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c906150f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90614ef7565b60405180910390fd5b612a9e8161317d565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c2983611527565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c7a82612b42565b612cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb090614fb7565b60405180910390fd5b6000612cc483611527565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3357508373ffffffffffffffffffffffffffffffffffffffff16612d1b84610e4d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d445750612d438185612823565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6d82611527565b73ffffffffffffffffffffffffffffffffffffffff1614612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba90615117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90614f57565b60405180910390fd5b612e3e838383613acb565b612e49600082612bb6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e99919061546f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef09190615357565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612fb483611527565b90508073ffffffffffffffffffffffffffffffffffffffff16612fd5612bae565b73ffffffffffffffffffffffffffffffffffffffff161461302b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302290614e77565b60405180910390fd5b81600860008581526020019081526020016000209080519060200190613052929190613fc9565b50827fbe3e2fc72ea4bd0d860e908b1ee27aa9856809e62a75bfc0cb7f04b5d791873d836040516130839190614e35565b60405180910390a2505050565b6106a08160ff1661309f611148565b6130a99190615357565b11156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e190614f97565b60405180910390fd5b6131078160ff16669536c70891000061325a90919063ffffffff16565b3414613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313f90615157565b60405180910390fd5b60005b8160ff1681101561317957613166613161612bae565b6134ba565b8080613171906155e5565b91505061314b565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826132508584613ad0565b1490509392505050565b600081836132689190615415565b905092915050565b6000818361327e91906153e4565b905092915050565b60008183613294919061546f565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516132c290614d5a565b60006040518083038185875af1925050503d80600081146132ff576040519150601f19603f3d011682016040523d82523d6000602084013e613304565b606091505b5050905080613348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333f906151b7565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b390614f77565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134ad9190614dff565b60405180910390a3505050565b60006134c4611148565b90506134d0600c612aa1565b6134da8282613ba9565b5050565b6134e9848484612d4d565b6134f584848484613bc7565b613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614eb7565b60405180910390fd5b50505050565b600061354583611527565b90508073ffffffffffffffffffffffffffffffffffffffff16613566612bae565b73ffffffffffffffffffffffffffffffffffffffff16146135bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b390614e77565b60405180910390fd5b600115156135c983611f10565b15151461360b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360290615217565b60405180910390fd5b60026009600085815260200190815260200160002060405161362d9190614d08565b602060405180830381855afa15801561364a573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061366d91906144a4565b60028360405161367d9190614cf1565b602060405180830381855afa15801561369a573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906136bd91906144a4565b14156136fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f590615177565b60405180910390fd5b6000151561370b8361110b565b15151461374d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374490615097565b60405180910390fd5b600060096000858152602001908152602001600020805461376d90615582565b9050111561381c5761381b60096000858152602001908152602001600020805461379690615582565b80601f01602080910402602001604051908101604052809291908181526020018280546137c290615582565b801561380f5780601f106137e45761010080835404028352916020019161380f565b820191906000526020600020905b8154815290600101906020018083116137f257829003601f168201915b50505050506000613d5e565b5b613827826001613d5e565b8160096000858152602001908152602001600020908051906020019061384e929190613fc9565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b8360405161387f9190614e35565b60405180910390a2505050565b6060600f805461389b90615582565b80601f01602080910402602001604051908101604052809291908181526020018280546138c790615582565b80156139145780601f106138e957610100808354040283529160200191613914565b820191906000526020600020905b8154815290600101906020018083116138f757829003601f168201915b5050505050905090565b60606000821415613966576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613ac6565b600082905060005b60008214613998578080613981906155e5565b915050600a8261399191906153e4565b915061396e565b60008167ffffffffffffffff8111156139da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a0c5781602001600182028036833780820191505090505b5090505b60008514613abf57600182613a25919061546f565b9150600a85613a34919061565c565b6030613a409190615357565b60f81b818381518110613a7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613ab891906153e4565b9450613a10565b8093505050505b919050565b505050565b60008082905060005b8451811015613b9e576000858281518110613b1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613b5e578281604051602001613b41929190614cc5565b604051602081830303815290604052805190602001209250613b8a565b8083604051602001613b71929190614cc5565b6040516020818303038152906040528051906020012092505b508080613b96906155e5565b915050613ad9565b508091505092915050565b613bc3828260405180602001604052806000815250613da0565b5050565b6000613be88473ffffffffffffffffffffffffffffffffffffffff16612ac5565b15613d51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c11612bae565b8786866040518563ffffffff1660e01b8152600401613c339493929190614d8a565b602060405180830381600087803b158015613c4d57600080fd5b505af1925050508015613c7e57506040513d601f19601f82011682018060405250810190613c7b91906144f6565b60015b613d01573d8060008114613cae576040519150601f19603f3d011682016040523d82523d6000602084013e613cb3565b606091505b50600081511415613cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf090614eb7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d56565b600190505b949350505050565b80600a613d6a84611ba9565b604051613d779190614d1f565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b613daa8383613dfb565b613db76000848484613bc7565b613df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ded90614eb7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6290615077565b60405180910390fd5b613e7481612b42565b15613eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eab90614f17565b60405180910390fd5b613ec060008383613acb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f109190615357565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613fd590615582565b90600052602060002090601f016020900481019282613ff7576000855561403e565b82601f1061401057805160ff191683800117855561403e565b8280016001018555821561403e579182015b8281111561403d578251825591602001919060010190614022565b5b50905061404b919061404f565b5090565b5b80821115614068576000816000905550600101614050565b5090565b600061407f61407a84615292565b61526d565b90508281526020810184848401111561409757600080fd5b6140a2848285615540565b509392505050565b60006140bd6140b8846152c3565b61526d565b9050828152602081018484840111156140d557600080fd5b6140e0848285615540565b509392505050565b6000813590506140f781615e75565b92915050565b60008083601f84011261410f57600080fd5b8235905067ffffffffffffffff81111561412857600080fd5b60208301915083602082028301111561414057600080fd5b9250929050565b60008135905061415681615e8c565b92915050565b60008151905061416b81615ea3565b92915050565b60008135905061418081615eba565b92915050565b60008151905061419581615eba565b92915050565b600082601f8301126141ac57600080fd5b81356141bc84826020860161406c565b91505092915050565b6000813590506141d481615ed1565b92915050565b600082601f8301126141eb57600080fd5b81356141fb8482602086016140aa565b91505092915050565b60008135905061421381615ee8565b92915050565b60008135905061422881615eff565b92915050565b60006020828403121561424057600080fd5b600061424e848285016140e8565b91505092915050565b6000806040838503121561426a57600080fd5b6000614278858286016140e8565b9250506020614289858286016140e8565b9150509250929050565b6000806000606084860312156142a857600080fd5b60006142b6868287016140e8565b93505060206142c7868287016140e8565b92505060406142d886828701614204565b9150509250925092565b600080600080608085870312156142f857600080fd5b6000614306878288016140e8565b9450506020614317878288016140e8565b935050604061432887828801614204565b925050606085013567ffffffffffffffff81111561434557600080fd5b6143518782880161419b565b91505092959194509250565b6000806040838503121561437057600080fd5b600061437e858286016140e8565b925050602061438f85828601614147565b9150509250929050565b600080604083850312156143ac57600080fd5b60006143ba858286016140e8565b92505060206143cb85828601614204565b9150509250929050565b6000806000604084860312156143ea57600080fd5b600084013567ffffffffffffffff81111561440457600080fd5b614410868287016140fd565b9350935050602061442386828701614219565b9150509250925092565b600080600080600060a0868803121561444557600080fd5b600061445388828901614147565b955050602061446488828901614147565b945050604061447588828901614147565b935050606061448688828901614147565b925050608061449788828901614204565b9150509295509295909350565b6000602082840312156144b657600080fd5b60006144c48482850161415c565b91505092915050565b6000602082840312156144df57600080fd5b60006144ed84828501614171565b91505092915050565b60006020828403121561450857600080fd5b600061451684828501614186565b91505092915050565b60006020828403121561453157600080fd5b600061453f848285016141c5565b91505092915050565b60006020828403121561455a57600080fd5b600082013567ffffffffffffffff81111561457457600080fd5b614580848285016141da565b91505092915050565b60006020828403121561459b57600080fd5b60006145a984828501614204565b91505092915050565b600080604083850312156145c557600080fd5b60006145d385828601614204565b925050602083013567ffffffffffffffff8111156145f057600080fd5b6145fc858286016141da565b9150509250929050565b60008060006060848603121561461b57600080fd5b600061462986828701614204565b935050602061463a86828701614204565b925050604061464b86828701614204565b9150509250925092565b60006020828403121561466757600080fd5b600061467584828501614219565b91505092915050565b614687816154a3565b82525050565b61469e614699826154a3565b61562e565b82525050565b6146ad816154b5565b82525050565b6146bc816154c1565b82525050565b6146d36146ce826154c1565b615640565b82525050565b60006146e482615309565b6146ee818561531f565b93506146fe81856020860161554f565b61470781615749565b840191505092915050565b600061471d82615309565b6147278185615330565b935061473781856020860161554f565b80840191505092915050565b6000815461475081615582565b61475a8186615330565b945060018216600081146147755760018114614786576147b9565b60ff198316865281860193506147b9565b61478f856152f4565b60005b838110156147b157815481890152600182019150602081019050614792565b838801955050505b50505092915050565b60006147cd82615314565b6147d7818561533b565b93506147e781856020860161554f565b6147f081615749565b840191505092915050565b600061480682615314565b614810818561534c565b935061482081856020860161554f565b80840191505092915050565b600061483960168361533b565b915061484482615767565b602082019050919050565b600061485c601f8361533b565b915061486782615790565b602082019050919050565b600061487f60178361533b565b915061488a826157b9565b602082019050919050565b60006148a260328361533b565b91506148ad826157e2565b604082019050919050565b60006148c5602d8361533b565b91506148d082615831565b604082019050919050565b60006148e860268361533b565b91506148f382615880565b604082019050919050565b600061490b601c8361533b565b9150614916826158cf565b602082019050919050565b600061492e60168361533b565b9150614939826158f8565b602082019050919050565b600061495160248361533b565b915061495c82615921565b604082019050919050565b600061497460198361533b565b915061497f82615970565b602082019050919050565b600061499760098361533b565b91506149a282615999565b602082019050919050565b60006149ba602c8361533b565b91506149c5826159c2565b604082019050919050565b60006149dd600d8361533b565b91506149e882615a11565b602082019050919050565b6000614a00601f8361533b565b9150614a0b82615a3a565b602082019050919050565b6000614a2360388361533b565b9150614a2e82615a63565b604082019050919050565b6000614a46602a8361533b565b9150614a5182615ab2565b604082019050919050565b6000614a6960298361533b565b9150614a7482615b01565b604082019050919050565b6000614a8c60208361533b565b9150614a9782615b50565b602082019050919050565b6000614aaf60158361533b565b9150614aba82615b79565b602082019050919050565b6000614ad2602c8361533b565b9150614add82615ba2565b604082019050919050565b6000614af5601e8361533b565b9150614b0082615bf1565b602082019050919050565b6000614b1860208361533b565b9150614b2382615c1a565b602082019050919050565b6000614b3b60298361533b565b9150614b4682615c43565b604082019050919050565b6000614b5e602f8361533b565b9150614b6982615c92565b604082019050919050565b6000614b8160118361533b565b9150614b8c82615ce1565b602082019050919050565b6000614ba460238361533b565b9150614baf82615d0a565b604082019050919050565b6000614bc760218361533b565b9150614bd282615d59565b604082019050919050565b6000614bea600083615330565b9150614bf582615da8565b600082019050919050565b6000614c0d60108361533b565b9150614c1882615dab565b602082019050919050565b6000614c3060318361533b565b9150614c3b82615dd4565b604082019050919050565b6000614c53600e8361533b565b9150614c5e82615e23565b602082019050919050565b6000614c7660148361533b565b9150614c8182615e4c565b602082019050919050565b614c9581615529565b82525050565b614ca481615533565b82525050565b6000614cb6828461468d565b60148201915081905092915050565b6000614cd182856146c2565b602082019150614ce182846146c2565b6020820191508190509392505050565b6000614cfd8284614712565b915081905092915050565b6000614d148284614743565b915081905092915050565b6000614d2b82846147fb565b915081905092915050565b6000614d4282856147fb565b9150614d4e82846147fb565b91508190509392505050565b6000614d6582614bdd565b9150819050919050565b6000602082019050614d84600083018461467e565b92915050565b6000608082019050614d9f600083018761467e565b614dac602083018661467e565b614db96040830185614c8c565b8181036060830152614dcb81846146d9565b905095945050505050565b6000604082019050614deb600083018561467e565b614df86020830184614c8c565b9392505050565b6000602082019050614e1460008301846146a4565b92915050565b6000602082019050614e2f60008301846146b3565b92915050565b60006020820190508181036000830152614e4f81846147c2565b905092915050565b60006020820190508181036000830152614e708161482c565b9050919050565b60006020820190508181036000830152614e908161484f565b9050919050565b60006020820190508181036000830152614eb081614872565b9050919050565b60006020820190508181036000830152614ed081614895565b9050919050565b60006020820190508181036000830152614ef0816148b8565b9050919050565b60006020820190508181036000830152614f10816148db565b9050919050565b60006020820190508181036000830152614f30816148fe565b9050919050565b60006020820190508181036000830152614f5081614921565b9050919050565b60006020820190508181036000830152614f7081614944565b9050919050565b60006020820190508181036000830152614f9081614967565b9050919050565b60006020820190508181036000830152614fb08161498a565b9050919050565b60006020820190508181036000830152614fd0816149ad565b9050919050565b60006020820190508181036000830152614ff0816149d0565b9050919050565b60006020820190508181036000830152615010816149f3565b9050919050565b6000602082019050818103600083015261503081614a16565b9050919050565b6000602082019050818103600083015261505081614a39565b9050919050565b6000602082019050818103600083015261507081614a5c565b9050919050565b6000602082019050818103600083015261509081614a7f565b9050919050565b600060208201905081810360008301526150b081614aa2565b9050919050565b600060208201905081810360008301526150d081614ac5565b9050919050565b600060208201905081810360008301526150f081614ae8565b9050919050565b6000602082019050818103600083015261511081614b0b565b9050919050565b6000602082019050818103600083015261513081614b2e565b9050919050565b6000602082019050818103600083015261515081614b51565b9050919050565b6000602082019050818103600083015261517081614b74565b9050919050565b6000602082019050818103600083015261519081614b97565b9050919050565b600060208201905081810360008301526151b081614bba565b9050919050565b600060208201905081810360008301526151d081614c00565b9050919050565b600060208201905081810360008301526151f081614c23565b9050919050565b6000602082019050818103600083015261521081614c46565b9050919050565b6000602082019050818103600083015261523081614c69565b9050919050565b600060208201905061524c6000830184614c8c565b92915050565b60006020820190506152676000830184614c9b565b92915050565b6000615277615288565b905061528382826155b4565b919050565b6000604051905090565b600067ffffffffffffffff8211156152ad576152ac61571a565b5b6152b682615749565b9050602081019050919050565b600067ffffffffffffffff8211156152de576152dd61571a565b5b6152e782615749565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061536282615529565b915061536d83615529565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153a2576153a161568d565b5b828201905092915050565b60006153b882615533565b91506153c383615533565b92508260ff038211156153d9576153d861568d565b5b828201905092915050565b60006153ef82615529565b91506153fa83615529565b92508261540a576154096156bc565b5b828204905092915050565b600061542082615529565b915061542b83615529565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154645761546361568d565b5b828202905092915050565b600061547a82615529565b915061548583615529565b9250828210156154985761549761568d565b5b828203905092915050565b60006154ae82615509565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000615502826154a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561556d578082015181840152602081019050615552565b8381111561557c576000848401525b50505050565b6000600282049050600182168061559a57607f821691505b602082108114156155ae576155ad6156eb565b5b50919050565b6155bd82615749565b810181811067ffffffffffffffff821117156155dc576155db61571a565b5b80604052505050565b60006155f082615529565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156235761562261568d565b5b600182019050919050565b60006156398261564a565b9050919050565b6000819050919050565b60006156558261575a565b9050919050565b600061566782615529565b915061567283615529565b925082615682576156816156bc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f662070726f766964656400000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746865206f776e657200600082015250565b7f57686974654c6973742053616c65206e6f74206f70656e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d206e756d626572206f66206974656d732060008201527f696e20636f6c6c656374696f6e00000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4272656564696e67206e6f74206f70656e207965742100000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f596f752063616e206e6f74206368616e676520746865206e616d652079657400600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e616d6520616c72656164792072657365727665640000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e206e6f74206368616e6765207468652062696f207965740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4e6577206e616d652069732073616d65206173207468652063757272656e742060008201527f6f6e650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420616e204f4720446f6765000000000000000000000000000000000000600082015250565b7f4e6f7420612076616c6964206e6577206e616d65000000000000000000000000600082015250565b615e7e816154a3565b8114615e8957600080fd5b50565b615e95816154b5565b8114615ea057600080fd5b50565b615eac816154c1565b8114615eb757600080fd5b50565b615ec3816154cb565b8114615ece57600080fd5b50565b615eda816154f7565b8114615ee557600080fd5b50565b615ef181615529565b8114615efc57600080fd5b50565b615f0881615533565b8114615f1357600080fd5b5056fea264697066735822122066b835e2a8dda2ed4ae7e16eb4eb8b099dbcb3c272c51bde511cfe605eb5b63464736f6c63430008040033

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

928d9bd64af9df3df93b61c7965fab3c36011390922c6345f661034b6abd6ac10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000cb20a54c4ed357bf7e28d1966e3f0f5215e25b370000000000000000000000002b35ace6069c68483b4e48cad85bace790789a92000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f666173742d666f6f642d646f67652e6865726f6b756170702e636f6d2f66617374666f6f64646f67652f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _whiteListRoot (bytes32): 0x928d9bd64af9df3df93b61c7965fab3c36011390922c6345f661034b6abd6ac1
Arg [1] : _baseUri (string): https://fast-food-doge.herokuapp.com/fastfooddoge/
Arg [2] : _pleasrDaoWallet (address): 0xCb20a54C4Ed357bF7E28D1966e3F0f5215e25B37
Arg [3] : _fffWallet (address): 0x2b35ACE6069c68483b4e48cAD85BACE790789A92

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 928d9bd64af9df3df93b61c7965fab3c36011390922c6345f661034b6abd6ac1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000cb20a54c4ed357bf7e28d1966e3f0f5215e25b37
Arg [3] : 0000000000000000000000002b35ace6069c68483b4e48cad85bace790789a92
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 68747470733a2f2f666173742d666f6f642d646f67652e6865726f6b75617070
Arg [6] : 2e636f6d2f66617374666f6f64646f67652f0000000000000000000000000000


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.