ETH Price: $2,876.85 (-10.71%)
Gas: 11 Gwei

Token

Honey (HONEY)
 

Overview

Max Total Supply

4,000,000,000 HONEY

Holders

1,600 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mrwerewolf.eth
Balance
4,431,680.047045918326970005 HONEY

Value
$0.00
0x62ac7073454f5b8cd65558711161fc9f3436f76f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$HONEY is the dawn of the NFT 2.0 era. NFT 2.0 combines ERC721 and ERC20, Gaming, and Defi. Fancy Bears are not only a PFP project with remarkable artwork but also an avant-garde of the whole non-fungible space.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Honey

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license
File 1 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

import { EIP712 } from "./external/openzeppelin/draft-EIP712.sol";
import { ECDSA } from "./external/openzeppelin/ECDSA.sol";

import { IERC20 } from "./interfaces/IERC20.sol";

contract ERC20 is IERC20, EIP712 {
    /*///////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;
    string public symbol;
    uint8 public immutable decimals;

    /*///////////////////////////////////////////////////////////////
                            ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    /*///////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    // keccak256("Transfer(address owner,address to,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant TRANSFER_TYPEHASH = 0x42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59;
    mapping(address => uint256) public override nonces;

    /*///////////////////////////////////////////////////////////////
                            CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) EIP712(_name, "1") {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }

    /*///////////////////////////////////////////////////////////////
                            ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        uint256 currentAllowance = allowance[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        if (currentAllowance < type(uint256).max) {
            _approve(sender, msg.sender, currentAllowance - amount);
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
        _approve(msg.sender, spender, allowance[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
        uint256 currentAllowance = allowance[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(msg.sender, spender, currentAllowance - subtractedValue);
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = balanceOf[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            balanceOf[sender] = senderBalance - amount;
        }
        balanceOf[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _approve(
        address _owner,
        address spender,
        uint256 amount
    ) private {
        require(_owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        allowance[_owner][spender] = amount;
        emit Approval(_owner, spender, amount);
    }

    /*///////////////////////////////////////////////////////////////
                            BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function burn(uint256 amount) external override returns (bool) {
        _burn(msg.sender, amount);
        return true;
    }

    function burnFrom(address account, uint256 amount) external override returns (bool) {
        uint256 currentAllowance = allowance[account][msg.sender];
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, msg.sender, currentAllowance - amount);
        }
        _burn(account, amount);
        return true;
    }

    /*///////////////////////////////////////////////////////////////
                       INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        totalSupply += amount;
        balanceOf[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = balanceOf[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            balanceOf[account] = accountBalance - amount;
        }
        totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /*///////////////////////////////////////////////////////////////
                            EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    function permit(
        address _owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external override {
        require(_owner != address(0), "ERC20Permit: zero address");
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, _owner, spender, value, nonces[_owner]++, deadline));
        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == _owner, "ERC20Permit: invalid signature");

        _approve(_owner, spender, value);
    }

    function transferWithPermit(
        address _owner,
        address to,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external override returns (bool) {
        require(_owner != address(0) && to != address(0), "ERC20Permit: zero address");
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(TRANSFER_TYPEHASH, _owner, to, value, nonces[_owner]++, deadline));
        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == _owner, "ERC20Permit: invalid signature");

        _transfer(_owner, to, value);
        return true;
    }
}

File 2 of 9 : ERC20Fee.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

import { ERC20 } from "./ERC20.sol";
import { Ownable } from "./helpers/Ownable.sol";
import { IFeeManager } from "./interfaces/IFeeManager.sol";

contract ERC20Fee is ERC20, Ownable {
    /*///////////////////////////////////////////////////////////////
                            FEE-ON-TRANSFER STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 private constant MAX_FEE = 1000;
    uint256 private constant BPS_MULTIPLIER = 10000;

    mapping(address => bool) public isExcludedFee;
    mapping(address => bool) public isForcedFee;

    uint256 private _feeSell;
    uint256 private _feeBuy;
    uint256 private _feeTransfer;

    address public feeRecipient;
    bool public isFeeManager;

    /*///////////////////////////////////////////////////////////////
                            FEE-ON-TRANSFER EVENTS
    //////////////////////////////////////////////////////////////*/

    event Fees(uint256 feeSell, uint256 feeBuy, uint256 feeTransfer);
    event ExcludeFee(address account, bool excluded);
    event ForcedFee(address account, bool forced);
    event FeeRecipientChanged(address feeRecipient, bool isFeeManager);

    /*///////////////////////////////////////////////////////////////
                            CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) ERC20(_name, _symbol, _decimals) {}

    /*///////////////////////////////////////////////////////////////
                            FEE-ON-TRANSFER LOGIC
    //////////////////////////////////////////////////////////////*/

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = balanceOf[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            balanceOf[sender] = senderBalance - amount;
        }

        uint256 fee = feeRecipient != address(0) ? _calcFee(sender, recipient, amount) : 0;
        if (fee > 0) {
            balanceOf[recipient] += (amount - fee);
            balanceOf[feeRecipient] += fee;
            emit Transfer(sender, recipient, (amount - fee));
            emit Transfer(sender, feeRecipient, fee);

            if (isFeeManager && IFeeManager(feeRecipient).canSyncFee(sender, recipient)) {
                IFeeManager(feeRecipient).syncFee();
            }
        } else {
            balanceOf[recipient] += amount;
            emit Transfer(sender, recipient, amount);
        }
    }

    function setExcludedFee(address account, bool excluded) external onlyOwner {
        isExcludedFee[account] = excluded;
        emit ExcludeFee(account, excluded);
    }

    function setForcedFee(address account, bool forced) external onlyOwner {
        isForcedFee[account] = forced;
        emit ForcedFee(account, forced);
    }

    function getFees()
        external
        view
        returns (
            uint256 feeSell,
            uint256 feeBuy,
            uint256 feeTransfer
        )
    {
        return (_feeSell, _feeBuy, _feeTransfer);
    }

    function setFees(
        uint256 feeSell,
        uint256 feeBuy,
        uint256 feeTransfer
    ) public onlyOwner {
        require(feeSell <= MAX_FEE && feeBuy <= MAX_FEE && feeTransfer <= MAX_FEE, "Fee is outside of range 0-1000");
        _feeSell = feeSell;
        _feeBuy = feeBuy;
        _feeTransfer = feeTransfer;
        emit Fees(feeSell, feeBuy, feeTransfer);
    }

    function changeFeeRecipient(address _feeRecipient, bool _isFeeManager) external onlyOwner {
        feeRecipient = _feeRecipient;
        isFeeManager = _isFeeManager;
        emit FeeRecipientChanged(feeRecipient, isFeeManager);
    }

    function _calcFee(
        address from,
        address to,
        uint256 amount
    ) private view returns (uint256 fee) {
        if (from != address(0) && to != address(0) && !isExcludedFee[from] && !isExcludedFee[to]) {
            if (isForcedFee[to]) {
                fee = _calcBPS(amount, _feeSell);
            } else if (isForcedFee[from]) {
                fee = _calcBPS(amount, _feeBuy);
            } else {
                fee = _calcBPS(amount, _feeTransfer);
            }
        }
    }

    function _calcBPS(uint256 amount, uint256 feeBPS) private pure returns (uint256) {
        return (amount * feeBPS) / BPS_MULTIPLIER;
    }
}

File 3 of 9 : Honey.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

import { ERC20Fee } from "./ERC20Fee.sol";
import { Ownable } from "./helpers/Ownable.sol";
import { TransactionThrottler } from "./helpers/TransactionThrottler.sol";

contract Honey is Ownable, ERC20Fee, TransactionThrottler {
    constructor(address _owner) ERC20Fee("Honey", "HONEY", 18) {
        _setOwner(_owner);
        _mint(_owner, 4_000_000_000 * 10**18);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override transactionThrottler(sender, recipient, amount) {
        super._transfer(sender, recipient, amount);
    }
}

File 4 of 9 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 9 : draft-EIP712.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 name,
        bytes32 version
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, name, version, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 6 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

contract OwnableData {
    address public owner;
    address public pendingOwner;
}

contract Ownable is OwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev `owner` defaults to msg.sender on construction.
     */
    constructor() {
        _setOwner(msg.sender);
    }

    /**
     * @dev Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
     *      Can only be invoked by the current `owner`.
     * @param _newOwner Address of the new owner.
     * @param _direct True if `_newOwner` should be set immediately. False if `_newOwner` needs to use `claimOwnership`.
     * @param _renounce Allows the `_newOwner` to be `address(0)` if `_direct` and `_renounce` is True. Has no effect otherwise
     */
    function transferOwnership(
        address _newOwner,
        bool _direct,
        bool _renounce
    ) external onlyOwner {
        if (_direct) {
            require(_newOwner != address(0) || _renounce, "zero address");

            emit OwnershipTransferred(owner, _newOwner);
            owner = _newOwner;
            pendingOwner = address(0);
        } else {
            pendingOwner = _newOwner;
        }
    }

    /**
     * @dev Needs to be called by `pendingOwner` to claim ownership.
     */
    function claimOwnership() external {
        address _pendingOwner = pendingOwner;
        require(msg.sender == _pendingOwner, "caller != pending owner");

        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

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

    function _setOwner(address newOwner) internal {
        address oldOwner = owner;
        owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 9 : TransactionThrottler.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

import { Ownable } from "./Ownable.sol";

contract TransactionThrottler is Ownable {
    bool private _initialized;
    bool private _restrictionActive;
    uint256 private _tradingStart;
    uint256 private _maxTransferAmount;
    uint256 private constant _delayBetweenTx = 30;
    mapping(address => uint256) private _previousTx;

    mapping(address => bool) public isWhitelisted;
    mapping(address => bool) public isUnthrottled;

    event TradingTimeChanged(uint256 tradingTime);
    event RestrictionActiveChanged(bool active);
    event MaxTransferAmountChanged(uint256 maxTransferAmount);
    event MarkedWhitelisted(address indexed account, bool isWhitelisted);
    event MarkedUnthrottled(address indexed account, bool isUnthrottled);

    function initAntibot(uint256 tradingStart) external onlyOwner {
        require(!_initialized, "Protection: Already initialized");
        _initialized = true;
        _restrictionActive = true;
        _tradingStart = tradingStart;
        _maxTransferAmount = 50_000 * 10**18;

        isUnthrottled[owner] = true;

        emit RestrictionActiveChanged(_restrictionActive);
        emit TradingTimeChanged(_tradingStart);
        emit MaxTransferAmountChanged(_maxTransferAmount);
        emit MarkedUnthrottled(owner, true);
    }

    function setTradingStart(uint256 time) external onlyOwner {
        require(_tradingStart > block.timestamp, "Protection: To late");
        _tradingStart = time;
        emit TradingTimeChanged(_tradingStart);
    }

    function setMaxTransferAmount(uint256 amount) external onlyOwner {
        _maxTransferAmount = amount;
        emit MaxTransferAmountChanged(_maxTransferAmount);
    }

    function setRestrictionActive(bool active) external onlyOwner {
        _restrictionActive = active;
        emit RestrictionActiveChanged(_restrictionActive);
    }

    function unthrottleAccount(address account, bool unthrottled) external onlyOwner {
        require(account != address(0), "Zero address");
        isUnthrottled[account] = unthrottled;
        emit MarkedUnthrottled(account, unthrottled);
    }

    function whitelistAccount(address account, bool whitelisted) external onlyOwner {
        require(account != address(0), "Zero address");
        isWhitelisted[account] = whitelisted;
        emit MarkedWhitelisted(account, whitelisted);
    }

    modifier transactionThrottler(
        address sender,
        address recipient,
        uint256 amount
    ) {
        if (_restrictionActive && !isUnthrottled[recipient] && !isUnthrottled[sender]) {
            require(block.timestamp >= _tradingStart, "Protection: Transfers disabled");

            if (_maxTransferAmount > 0) {
                require(amount <= _maxTransferAmount, "Protection: Limit exceeded");
            }

            if (!isWhitelisted[recipient]) {
                require(_previousTx[recipient] + _delayBetweenTx <= block.timestamp, "Protection: 30 sec/tx allowed");
                _previousTx[recipient] = block.timestamp;
            }

            if (!isWhitelisted[sender]) {
                require(_previousTx[sender] + _delayBetweenTx <= block.timestamp, "Protection: 30 sec/tx allowed");
                _previousTx[sender] = block.timestamp;
            }
        }
        _;
    }
}

File 8 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.11;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function balanceOf(address account) external view returns (uint256);
    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);
    function transfer(address to, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function burn(uint256 amount) external returns (bool);
    function burnFrom(address account, uint256 amount) external returns (bool);

    // EIP 2612
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function nonces(address owner) external view returns (uint256);
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
    function transferWithPermit(address target, address to, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external returns (bool);
}

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

pragma solidity 0.8.11;

interface IFeeManager {
    function canSyncFee(address sender, address recipient) external view returns (bool);
    function syncFee() external;
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeRecipient","type":"address"},{"indexed":false,"internalType":"bool","name":"isFeeManager","type":"bool"}],"name":"FeeRecipientChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeSell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeTransfer","type":"uint256"}],"name":"Fees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"ForcedFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isUnthrottled","type":"bool"}],"name":"MarkedUnthrottled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"MarkedWhitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransferAmount","type":"uint256"}],"name":"MaxTransferAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"RestrictionActiveChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tradingTime","type":"uint256"}],"name":"TradingTimeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeRecipient","type":"address"},{"internalType":"bool","name":"_isFeeManager","type":"bool"}],"name":"changeFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"feeSell","type":"uint256"},{"internalType":"uint256","name":"feeBuy","type":"uint256"},{"internalType":"uint256","name":"feeTransfer","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tradingStart","type":"uint256"}],"name":"initAntibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeManager","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isForcedFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUnthrottled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeSell","type":"uint256"},{"internalType":"uint256","name":"feeBuy","type":"uint256"},{"internalType":"uint256","name":"feeTransfer","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"forced","type":"bool"}],"name":"setForcedFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTransferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setRestrictionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setTradingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"},{"internalType":"bool","name":"_direct","type":"bool"},{"internalType":"bool","name":"_renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithPermit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"unthrottled","type":"bool"}],"name":"unthrottleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"whitelistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b5060405162003a6938038062003a6983398101604081905262000035916200037a565b604080518082018252600580825264486f6e657960d81b60208084019182528451808601865292835264484f4e455960d81b838201528451808601865260018152603160f81b908201528351822060c08181527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660e08190524660a081815289517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818801819052818c0196909652606081019390935260808084019290925230838201528951808403909101815291909201909752865196909201959095209052610100939093528151919290916012918491849184916200013b91600091620002d4565b50815162000151906001906020850190620002d4565b5060ff166101205250620001679050336200019a565b5050506200017b816200019a60201b60201c565b62000193816b0cecb8f27f4200f3a0000000620001ec565b5062000410565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200025b9190620003ac565b90915550506001600160a01b038216600090815260036020526040812080548392906200028a908490620003ac565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002e290620003d3565b90600052602060002090601f01602090048101928262000306576000855562000351565b82601f106200032157805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035157825182559160200191906001019062000334565b506200035f92915062000363565b5090565b5b808211156200035f576000815560010162000364565b6000602082840312156200038d57600080fd5b81516001600160a01b0381168114620003a557600080fd5b9392505050565b60008219821115620003ce57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003e857607f821691505b602082108114156200040a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516136096200046060003960006103c10152600061259a015260006125e9015260006125c4015260006125480152600061257101526136096000f3fe608060405234801561001057600080fd5b50600436106102c75760003560e01c80637419683c1161017b578063a8ca2ed9116100d8578063d505accf1161008c578063dc4aa05911610071578063dc4aa05914610681578063dd62ed3e146106a4578063e30c3978146106cf57600080fd5b8063d505accf1461064a578063db8d55f11461065d57600080fd5b8063b3201c4f116100bd578063b3201c4f146105ff578063b64ff67d14610624578063cec10c111461063757600080fd5b8063a8ca2ed9146105d9578063a9059cbb146105ec57600080fd5b80638bf554091161012f57806395d89b411161011457806395d89b41146105ab57806399c8df18146105b3578063a457c2d7146105c657600080fd5b80638bf55409146105785780638da5cb5b1461058b57600080fd5b806379cc67901161016057806379cc6790146105225780637ecebe00146105355780637fef67891461055557600080fd5b80637419683c146104ec57806374dd34c3146104ff57600080fd5b80633644e515116102295780634af640d1116101dd57806350183fa9116101c257806350183fa9146104a6578063605629d6146104b957806370a08231146104cc57600080fd5b80634af640d11461048b5780634e71e0c81461049e57600080fd5b80633af32abf1161020e5780633af32abf1461041057806342966c6814610433578063469048401461044657600080fd5b80633644e515146103f557806339509351146103fd57600080fd5b806318160ddd1161028057806323b872dd1161026557806323b872dd1461038257806330adf81f14610395578063313ce567146103bc57600080fd5b806318160ddd146103665780631da267071461036f57600080fd5b8063078dfbe7116102b1578063078dfbe71461031b578063095ea7b3146103305780630c8d9d7b1461035357600080fd5b8062bf26f4146102cc57806306fdde0314610306575b600080fd5b6102f37f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd5981565b6040519081526020015b60405180910390f35b61030e6106ef565b6040516102fd919061319d565b61032e61032936600461324a565b61077d565b005b61034361033e366004613293565b61096f565b60405190151581526020016102fd565b61032e6103613660046132bd565b610985565b6102f360025481565b61032e61037d3660046132bd565b610b0e565b6103436103903660046132f4565b610c1e565b6102f37f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103e37f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016102fd565b6102f3610d33565b61034361040b366004613293565b610d42565b61034361041e366004613330565b60116020526000908152604090205460ff1681565b61034361044136600461334b565b610d86565b600d546104669073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102fd565b61032e610499366004613364565b610d9a565b61032e610ea5565b61032e6104b436600461334b565b610fbc565b6103436104c7366004613381565b61128e565b6102f36104da366004613330565b60036020526000908152604090205481565b61032e6104fa36600461334b565b611523565b61034361050d366004613330565b60096020526000908152604090205460ff1681565b610343610530366004613293565b611644565b6102f3610543366004613330565b60056020526000908152604090205481565b610343610563366004613330565b60086020526000908152604090205460ff1681565b61032e61058636600461334b565b611725565b6006546104669073ffffffffffffffffffffffffffffffffffffffff1681565b61030e6117db565b61032e6105c13660046132bd565b6117e8565b6103436105d4366004613293565b611969565b61032e6105e73660046132bd565b611a39565b6103436105fa366004613293565b611b41565b600d546103439074010000000000000000000000000000000000000000900460ff1681565b61032e6106323660046132bd565b611b4e565b61032e6106453660046133f4565b611c74565b61032e610658366004613381565b611dd2565b600a54600b54600c54604080519384526020840192909252908201526060016102fd565b61034361068f366004613330565b60126020526000908152604090205460ff1681565b6102f36106b2366004613420565b600460209081526000928352604080842090915290825290205481565b6007546104669073ffffffffffffffffffffffffffffffffffffffff1681565b600080546106fc90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461072890613453565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b505050505081565b60065473ffffffffffffffffffffffffffffffffffffffff163314610803576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064015b60405180910390fd5b81156109285773ffffffffffffffffffffffffffffffffffffffff831615158061082a5750805b610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b60065460405173ffffffffffffffffffffffffffffffffffffffff8086169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600780549091169055505050565b6007805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116179055505050565b600061097c33848461203d565b50600192915050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610a06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216610a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f191015b60405180910390a25050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f4ab224a24faa3ae570fbcfb18d5c5d0d5cf6bef703be69e5ca56d0ff45ec5ef791015b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020908152604080832033845290915281205482811015610cdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610d1b57610d1b8533610d1686856134d6565b61203d565b610d268585856121f1565b60019150505b9392505050565b6000610d3d612544565b905090565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161097c918590610d169086906134ed565b6000610d923383612637565b506001919050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d80547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff167601000000000000000000000000000000000000000000008315158102919091179182905560405160ff9190920416151581527ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa906020015b60405180910390a150565b60075473ffffffffffffffffffffffffffffffffffffffff16338114610f27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c657220213d2070656e64696e67206f776e657200000000000000000060448201526064016107fa565b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600780549091169055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d547501000000000000000000000000000000000000000000900460ff16156110c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f50726f74656374696f6e3a20416c726561647920696e697469616c697a65640060448201526064016107fa565b600d80547601010000000000000000000000000000000000000000007fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff909116178155600e829055690a968163f0a57b400000600f5560065473ffffffffffffffffffffffffffffffffffffffff166000908152601260205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055905490517ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa916111bd9176010000000000000000000000000000000000000000000090910460ff161515815260200190565b60405180910390a17feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec6600e546040516111f891815260200190565b60405180910390a17ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b3600f5460405161123391815260200190565b60405180910390a16006546040516001815273ffffffffffffffffffffffffffffffffffffffff909116907f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f19060200160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff8816158015906112ca575073ffffffffffffffffffffffffffffffffffffffff871615155b611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a207a65726f20616464726573730000000000000060448201526064016107fa565b8442111561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260056020526040812080547f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59918b918b918b9190866113f483613505565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120905060006114608261281c565b905060006114708288888861288b565b90508a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107fa565b6115128b8b8b6121f1565b5060019a9950505050505050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b42600e541161160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c6174650000000000000000000000000060448201526064016107fa565b600e8190556040518181527feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec690602001610e9a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020908152604080832033845290915281205482811015611704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016107fa565b611711843385840361203d565b61171b8484612637565b5060019392505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600f8190556040518181527ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b390602001610e9a565b600180546106fc90613453565b60065473ffffffffffffffffffffffffffffffffffffffff163314611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff82166118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce9101610b02565b33600090815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611a2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107fa565b61171b3385610d1686856134d6565b60065473ffffffffffffffffffffffffffffffffffffffff163314611aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527fbd3fa7a0b65fadfbc9fc0e47ed90fda7421b7a2860b0d918b9a5a2d54c8ffe0e9101610c12565b600061097c3384846121f1565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d8054821515740100000000000000000000000000000000000000009081027fffffffffffffffffffffff00000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff868116919091179290921792839055604080519284168352920460ff16151560208201527fc93d31b4ce0c1f38ee8bde2cb7d686fb6d3b9247cc136ca5023058750a169be49101610c12565b60065473ffffffffffffffffffffffffffffffffffffffff163314611cf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b6103e88311158015611d0957506103e88211155b8015611d1757506103e88111155b611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f466565206973206f757473696465206f662072616e676520302d31303030000060448201526064016107fa565b600a839055600b829055600c81905560408051848152602081018490529081018290527fe47e312e14ed22581dccdf9557c3dd18d0ef990e87fc3f6dcf6bcdde1d13d1e89060600160405180910390a1505050565b73ffffffffffffffffffffffffffffffffffffffff8716611e4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a207a65726f20616464726573730000000000000060448201526064016107fa565b83421115611eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260056020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a919086611f1383613505565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611f7f8261281c565b90506000611f8f8287878761288b565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107fa565b6120318a8a8a61203d565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166120df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b828282600d60169054906101000a900460ff168015612236575073ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff16155b8015612268575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff16155b1561253157600e544210156122d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50726f74656374696f6e3a205472616e73666572732064697361626c6564000060448201526064016107fa565b600f541561234d57600f5481111561234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f74656374696f6e3a204c696d697420657863656564656400000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526011602052604090205460ff1661243f5773ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090205442906123ae90601e906134ed565b1115612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f50726f74656374696f6e3a203330207365632f747820616c6c6f77656400000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff166125315773ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205442906124a090601e906134ed565b1115612508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f50726f74656374696f6e3a203330207365632f747820616c6c6f77656400000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090204290555b61253c868686612ae3565b505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561259357507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b73ffffffffffffffffffffffffffffffffffffffff82166126da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604090205481811015612790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208383039055600280548492906127cc9084906134d6565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016121e4565b6000612885612829612544565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b8360ff16601b148061295257508360ff16601c145b6129de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a32573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612ada576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107fa565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff8316612b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216612c29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604090205481811015612cdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526003602052604081208484039055600d54909116612d1b576000612d26565b612d26858585613050565b90508015612fa557612d3881846134d6565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054909190612d6d9084906134ed565b9091555050600d5473ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604081208054839290612da99084906134ed565b909155505073ffffffffffffffffffffffffffffffffffffffff8085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef612df484876134d6565b60405190815260200160405180910390a3600d5460405182815273ffffffffffffffffffffffffffffffffffffffff918216918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3600d5474010000000000000000000000000000000000000000900460ff168015612f185750600d546040517fb105cd5200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015286811660248301529091169063b105cd5290604401602060405180830381865afa158015612ef4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f18919061353e565b15612fa057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e605bca06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f8757600080fd5b505af1158015612f9b573d6000803e3d6000fd5b505050505b613049565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604081208054859290612fda9084906134ed565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161304091815260200190565b60405180910390a35b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff84161580159061308c575073ffffffffffffffffffffffffffffffffffffffff831615155b80156130be575073ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16155b80156130f0575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b15610d2c5773ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16156131365761312f82600a54613184565b9050610d2c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff16156131705761312f82600b54613184565b61317c82600c54613184565b949350505050565b6000612710613193838561355b565b610d2c9190613598565b600060208083528351808285015260005b818110156131ca578581018301518582016040015282016131ae565b818111156131dc576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461323457600080fd5b919050565b801515811461324757600080fd5b50565b60008060006060848603121561325f57600080fd5b61326884613210565b9250602084013561327881613239565b9150604084013561328881613239565b809150509250925092565b600080604083850312156132a657600080fd5b6132af83613210565b946020939093013593505050565b600080604083850312156132d057600080fd5b6132d983613210565b915060208301356132e981613239565b809150509250929050565b60008060006060848603121561330957600080fd5b61331284613210565b925061332060208501613210565b9150604084013590509250925092565b60006020828403121561334257600080fd5b610d2c82613210565b60006020828403121561335d57600080fd5b5035919050565b60006020828403121561337657600080fd5b8135610d2c81613239565b600080600080600080600060e0888a03121561339c57600080fd5b6133a588613210565b96506133b360208901613210565b95506040880135945060608801359350608088013560ff811681146133d757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060006060848603121561340957600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561343357600080fd5b61343c83613210565b915061344a60208401613210565b90509250929050565b600181811c9082168061346757607f821691505b602082108114156134a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156134e8576134e86134a7565b500390565b60008219821115613500576135006134a7565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613537576135376134a7565b5060010190565b60006020828403121561355057600080fd5b8151610d2c81613239565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613593576135936134a7565b500290565b6000826135ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea26469706673582212208fedcf2ca3ac4da5867913b94decaad9f9977518feb543b9842b625f8afd57e664736f6c634300080b0033000000000000000000000000e821c366f3091b09d5ab066ceef038df63c4781a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102c75760003560e01c80637419683c1161017b578063a8ca2ed9116100d8578063d505accf1161008c578063dc4aa05911610071578063dc4aa05914610681578063dd62ed3e146106a4578063e30c3978146106cf57600080fd5b8063d505accf1461064a578063db8d55f11461065d57600080fd5b8063b3201c4f116100bd578063b3201c4f146105ff578063b64ff67d14610624578063cec10c111461063757600080fd5b8063a8ca2ed9146105d9578063a9059cbb146105ec57600080fd5b80638bf554091161012f57806395d89b411161011457806395d89b41146105ab57806399c8df18146105b3578063a457c2d7146105c657600080fd5b80638bf55409146105785780638da5cb5b1461058b57600080fd5b806379cc67901161016057806379cc6790146105225780637ecebe00146105355780637fef67891461055557600080fd5b80637419683c146104ec57806374dd34c3146104ff57600080fd5b80633644e515116102295780634af640d1116101dd57806350183fa9116101c257806350183fa9146104a6578063605629d6146104b957806370a08231146104cc57600080fd5b80634af640d11461048b5780634e71e0c81461049e57600080fd5b80633af32abf1161020e5780633af32abf1461041057806342966c6814610433578063469048401461044657600080fd5b80633644e515146103f557806339509351146103fd57600080fd5b806318160ddd1161028057806323b872dd1161026557806323b872dd1461038257806330adf81f14610395578063313ce567146103bc57600080fd5b806318160ddd146103665780631da267071461036f57600080fd5b8063078dfbe7116102b1578063078dfbe71461031b578063095ea7b3146103305780630c8d9d7b1461035357600080fd5b8062bf26f4146102cc57806306fdde0314610306575b600080fd5b6102f37f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd5981565b6040519081526020015b60405180910390f35b61030e6106ef565b6040516102fd919061319d565b61032e61032936600461324a565b61077d565b005b61034361033e366004613293565b61096f565b60405190151581526020016102fd565b61032e6103613660046132bd565b610985565b6102f360025481565b61032e61037d3660046132bd565b610b0e565b6103436103903660046132f4565b610c1e565b6102f37f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103e37f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016102fd565b6102f3610d33565b61034361040b366004613293565b610d42565b61034361041e366004613330565b60116020526000908152604090205460ff1681565b61034361044136600461334b565b610d86565b600d546104669073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102fd565b61032e610499366004613364565b610d9a565b61032e610ea5565b61032e6104b436600461334b565b610fbc565b6103436104c7366004613381565b61128e565b6102f36104da366004613330565b60036020526000908152604090205481565b61032e6104fa36600461334b565b611523565b61034361050d366004613330565b60096020526000908152604090205460ff1681565b610343610530366004613293565b611644565b6102f3610543366004613330565b60056020526000908152604090205481565b610343610563366004613330565b60086020526000908152604090205460ff1681565b61032e61058636600461334b565b611725565b6006546104669073ffffffffffffffffffffffffffffffffffffffff1681565b61030e6117db565b61032e6105c13660046132bd565b6117e8565b6103436105d4366004613293565b611969565b61032e6105e73660046132bd565b611a39565b6103436105fa366004613293565b611b41565b600d546103439074010000000000000000000000000000000000000000900460ff1681565b61032e6106323660046132bd565b611b4e565b61032e6106453660046133f4565b611c74565b61032e610658366004613381565b611dd2565b600a54600b54600c54604080519384526020840192909252908201526060016102fd565b61034361068f366004613330565b60126020526000908152604090205460ff1681565b6102f36106b2366004613420565b600460209081526000928352604080842090915290825290205481565b6007546104669073ffffffffffffffffffffffffffffffffffffffff1681565b600080546106fc90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461072890613453565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b505050505081565b60065473ffffffffffffffffffffffffffffffffffffffff163314610803576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064015b60405180910390fd5b81156109285773ffffffffffffffffffffffffffffffffffffffff831615158061082a5750805b610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b60065460405173ffffffffffffffffffffffffffffffffffffffff8086169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600780549091169055505050565b6007805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116179055505050565b600061097c33848461203d565b50600192915050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610a06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216610a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f191015b60405180910390a25050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f4ab224a24faa3ae570fbcfb18d5c5d0d5cf6bef703be69e5ca56d0ff45ec5ef791015b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020908152604080832033845290915281205482811015610cdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016107fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610d1b57610d1b8533610d1686856134d6565b61203d565b610d268585856121f1565b60019150505b9392505050565b6000610d3d612544565b905090565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161097c918590610d169086906134ed565b6000610d923383612637565b506001919050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d80547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff167601000000000000000000000000000000000000000000008315158102919091179182905560405160ff9190920416151581527ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa906020015b60405180910390a150565b60075473ffffffffffffffffffffffffffffffffffffffff16338114610f27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c657220213d2070656e64696e67206f776e657200000000000000000060448201526064016107fa565b60065460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600780549091169055565b60065473ffffffffffffffffffffffffffffffffffffffff16331461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d547501000000000000000000000000000000000000000000900460ff16156110c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f50726f74656374696f6e3a20416c726561647920696e697469616c697a65640060448201526064016107fa565b600d80547601010000000000000000000000000000000000000000007fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff909116178155600e829055690a968163f0a57b400000600f5560065473ffffffffffffffffffffffffffffffffffffffff166000908152601260205260409081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055905490517ff19da345eb86d7718a0c6e1d1e68d0c70e9fb40e7f54bfaaa1110c5dd5942eaa916111bd9176010000000000000000000000000000000000000000000090910460ff161515815260200190565b60405180910390a17feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec6600e546040516111f891815260200190565b60405180910390a17ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b3600f5460405161123391815260200190565b60405180910390a16006546040516001815273ffffffffffffffffffffffffffffffffffffffff909116907f032b60b621d5620ebed4224d2af054acf250833415d69a1a90b9c0de47c951f19060200160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff8816158015906112ca575073ffffffffffffffffffffffffffffffffffffffff871615155b611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a207a65726f20616464726573730000000000000060448201526064016107fa565b8442111561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260056020526040812080547f42ce63790c28229c123925d83266e77c04d28784552ab68b350a9003226cbd59918b918b918b9190866113f483613505565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120905060006114608261281c565b905060006114708288888861288b565b90508a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107fa565b6115128b8b8b6121f1565b5060019a9950505050505050505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b42600e541161160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50726f74656374696f6e3a20546f206c6174650000000000000000000000000060448201526064016107fa565b600e8190556040518181527feb0dd367985442b0f5a817b2cee27fa94416adda70f365044808a6552418fec690602001610e9a565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020908152604080832033845290915281205482811015611704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016107fa565b611711843385840361203d565b61171b8484612637565b5060019392505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600f8190556040518181527ff81e49436a9468d4e5a18ec3a66d9a51fd5eb03de3ddddd43bd85f6ae1b072b390602001610e9a565b600180546106fc90613453565b60065473ffffffffffffffffffffffffffffffffffffffff163314611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff82166118e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f5a65726f2061646472657373000000000000000000000000000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527fc1f37bd5d85be2239236c010011c8837e596c2c28d94d45893872fb5064e75ce9101610b02565b33600090815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611a2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107fa565b61171b3385610d1686856134d6565b60065473ffffffffffffffffffffffffffffffffffffffff163314611aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660008181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527fbd3fa7a0b65fadfbc9fc0e47ed90fda7421b7a2860b0d918b9a5a2d54c8ffe0e9101610c12565b600061097c3384846121f1565b60065473ffffffffffffffffffffffffffffffffffffffff163314611bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b600d8054821515740100000000000000000000000000000000000000009081027fffffffffffffffffffffff00000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff868116919091179290921792839055604080519284168352920460ff16151560208201527fc93d31b4ce0c1f38ee8bde2cb7d686fb6d3b9247cc136ca5023058750a169be49101610c12565b60065473ffffffffffffffffffffffffffffffffffffffff163314611cf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f63616c6c6572206973206e6f7420746865206f776e657200000000000000000060448201526064016107fa565b6103e88311158015611d0957506103e88211155b8015611d1757506103e88111155b611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f466565206973206f757473696465206f662072616e676520302d31303030000060448201526064016107fa565b600a839055600b829055600c81905560408051848152602081018490529081018290527fe47e312e14ed22581dccdf9557c3dd18d0ef990e87fc3f6dcf6bcdde1d13d1e89060600160405180910390a1505050565b73ffffffffffffffffffffffffffffffffffffffff8716611e4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332305065726d69743a207a65726f20616464726573730000000000000060448201526064016107fa565b83421115611eb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260056020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a919086611f1383613505565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000611f7f8261281c565b90506000611f8f8287878761288b565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107fa565b6120318a8a8a61203d565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166120df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b828282600d60169054906101000a900460ff168015612236575073ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff16155b8015612268575073ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff16155b1561253157600e544210156122d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50726f74656374696f6e3a205472616e73666572732064697361626c6564000060448201526064016107fa565b600f541561234d57600f5481111561234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f50726f74656374696f6e3a204c696d697420657863656564656400000000000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526011602052604090205460ff1661243f5773ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090205442906123ae90601e906134ed565b1115612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f50726f74656374696f6e3a203330207365632f747820616c6c6f77656400000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526010602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff166125315773ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205442906124a090601e906134ed565b1115612508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f50726f74656374696f6e3a203330207365632f747820616c6c6f77656400000060448201526064016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090204290555b61253c868686612ae3565b505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000146141561259357507f1d7d865bd310105affd11467fcf8a6090b2f55948b28c848cce408b6c630e67590565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fb1fe574678f9d45a762912fb436b82a323258f5535fab3006593cf786f82ac07828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b73ffffffffffffffffffffffffffffffffffffffff82166126da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604090205481811015612790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208383039055600280548492906127cc9084906134d6565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016121e4565b6000612885612829612544565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b92915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561293d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b8360ff16601b148061295257508360ff16601c145b6129de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a32573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612ada576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107fa565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff8316612b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff8216612c29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604090205481811015612cdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107fa565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526003602052604081208484039055600d54909116612d1b576000612d26565b612d26858585613050565b90508015612fa557612d3881846134d6565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054909190612d6d9084906134ed565b9091555050600d5473ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604081208054839290612da99084906134ed565b909155505073ffffffffffffffffffffffffffffffffffffffff8085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef612df484876134d6565b60405190815260200160405180910390a3600d5460405182815273ffffffffffffffffffffffffffffffffffffffff918216918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3600d5474010000000000000000000000000000000000000000900460ff168015612f185750600d546040517fb105cd5200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015286811660248301529091169063b105cd5290604401602060405180830381865afa158015612ef4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f18919061353e565b15612fa057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e605bca06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612f8757600080fd5b505af1158015612f9b573d6000803e3d6000fd5b505050505b613049565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602052604081208054859290612fda9084906134ed565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161304091815260200190565b60405180910390a35b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff84161580159061308c575073ffffffffffffffffffffffffffffffffffffffff831615155b80156130be575073ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16155b80156130f0575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b15610d2c5773ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16156131365761312f82600a54613184565b9050610d2c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205460ff16156131705761312f82600b54613184565b61317c82600c54613184565b949350505050565b6000612710613193838561355b565b610d2c9190613598565b600060208083528351808285015260005b818110156131ca578581018301518582016040015282016131ae565b818111156131dc576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461323457600080fd5b919050565b801515811461324757600080fd5b50565b60008060006060848603121561325f57600080fd5b61326884613210565b9250602084013561327881613239565b9150604084013561328881613239565b809150509250925092565b600080604083850312156132a657600080fd5b6132af83613210565b946020939093013593505050565b600080604083850312156132d057600080fd5b6132d983613210565b915060208301356132e981613239565b809150509250929050565b60008060006060848603121561330957600080fd5b61331284613210565b925061332060208501613210565b9150604084013590509250925092565b60006020828403121561334257600080fd5b610d2c82613210565b60006020828403121561335d57600080fd5b5035919050565b60006020828403121561337657600080fd5b8135610d2c81613239565b600080600080600080600060e0888a03121561339c57600080fd5b6133a588613210565b96506133b360208901613210565b95506040880135945060608801359350608088013560ff811681146133d757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060006060848603121561340957600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561343357600080fd5b61343c83613210565b915061344a60208401613210565b90509250929050565b600181811c9082168061346757607f821691505b602082108114156134a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156134e8576134e86134a7565b500390565b60008219821115613500576135006134a7565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613537576135376134a7565b5060010190565b60006020828403121561355057600080fd5b8151610d2c81613239565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613593576135936134a7565b500290565b6000826135ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea26469706673582212208fedcf2ca3ac4da5867913b94decaad9f9977518feb543b9842b625f8afd57e664736f6c634300080b0033

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

000000000000000000000000e821c366f3091b09d5ab066ceef038df63c4781a

-----Decoded View---------------
Arg [0] : _owner (address): 0xe821C366F3091B09D5AB066ceEf038dF63c4781a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e821c366f3091b09d5ab066ceef038df63c4781a


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.