Contract Address Details

0x77B5c56D36FD0E9B40D2E9Efa26D072C128b3F74

Token
BANKSY V2 (BANKSY)
Creator
0xf9e78c–318f5b at 0x17623b–cc7c00
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
163 Transactions
Transfers
0 Transfers
Gas Used
7,198,936
Last Balance Update
27562790
Contract name:
BanksyToken




Optimization enabled
false
Compiler version
v0.8.9+commit.e5eed63a




EVM Version
default




Verified at
2022-09-28T01:04:48.826988Z

Constructor Arguments

0000000000000000000000004a78a6a8f8b3773f7a78befd106f280403eea807

Arg [0] (address) : 0x4a78a6a8f8b3773f7a78befd106f280403eea807

              

Contract source code

// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.11.1 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.2.0

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/Context.sol@v4.2.0

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.2.0

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/ERC20.sol@v4.2.0

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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


// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol@v1.0.1

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File @openzeppelin/contracts/access/Ownable.sol@v4.2.0

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/BanksyToken.sol

/*
     ,-""""-.
   ,'      _ `.
  /       )_)  \
 :              :
 \              /
  \            /
   `.        ,'
     `.    ,'
       `.,'
        /\`.   ,-._
            `-'         BanksyDao.finance
 */
// Kurama protocol License Identifier:  62b9ff30-1008-4e02-893d-971dd776fe08

pragma solidity ^0.8.9;



/*
 * TABLE ERROR REFERENCE:
 * E1: The sender is on the blacklist. Please contact to support.
 * E2: The recipient is on the blacklist. Please contact to support.
 * E3: User cannot send more than allowed.
 * E4: User is not operator.
 * E5: User is excluded from antibot system.
 * E6: Bot address is already on the blacklist.
 * E7: The expiration time has to be greater than 0.
 * E8: Bot address is not found on the blacklist.
 * E9: Address cant be 0.
 * E10: newMaxUserTransferAmountRate must be greather than 50 (0.05%)
 * E11: newMaxUserTransferAmountRate must be less than or equal to 10000 (100%)
 * E12: newTransferTax sum must be less than MAX
 * E13: transferTax can't be higher than amount
 */
contract BanksyToken is ERC20, Ownable {
    ///@dev Max transfer amount rate. (default is 3% of total supply)
    uint16 public maxUserTransferAmountRate = 300;

    ///@dev Exclude operators from antiBot system
    mapping(address => bool) private _excludedOperators;

    ///@dev mapping store blacklist. address => ExpirationTime 
    mapping(address => uint256) private _blacklist;

    ///@dev Length of blacklist addressess
    uint256 public blacklistLength;

    // Banksy Treasury
    address public treasuryDAOAddress;

    // Burnd Address
    address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

    // Operator Role
    address internal _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);
    event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
    event SetMaxUserTransferAmountRate(address indexed operator, uint256 previousRate, uint256 newRate);
    event AddBotAddress(address indexed botAddress);
    event RemoveBotAddress(address indexed botAddress);
    event SetOperators(address indexed operatorAddress, bool previousStatus, bool newStatus);

    constructor(address _treasuryDAOAddress)
        ERC20('BANKSY V2', 'BANKSY')
    {
        // Exclude operator addresses: lps, burn, treasury, admin, etc from antibot system
        _excludedOperators[msg.sender] = true;
        _excludedOperators[address(0)] = true;
        _excludedOperators[address(this)] = true;
        _excludedOperators[BURN_ADDRESS] = true;
        _excludedOperators[_treasuryDAOAddress] = true;

        treasuryDAOAddress = _treasuryDAOAddress;

        _operator = _msgSender();
    }

    /// Modifiers ///
    modifier antiBot(address sender, address recipient, uint256 amount) {
        //check blacklist
        require(!blacklistCheck(sender), "E1");
        require(!blacklistCheck(recipient), "E2");

        // check  if sender|recipient has a tx amount is within the allowed limits
        if (!isExcludedOperator(sender)) {
            if (!isExcludedOperator(recipient))
                require(amount <= maxUserTransferAmount(), "E3");
        }

        _;
    }

    modifier onlyOperator() {
        require(_operator == _msgSender(), "E4");
        _;
    }

    /// External functions ///
    function burn(uint256 amount) external onlyOwner {
        _burn(msg.sender, amount);
    }

    /// @dev internal function to add address to blacklist.
    function addBotAddressToBlackList(address botAddress, uint256 expirationTime) external onlyOwner {
        require(!isExcludedOperator(botAddress), "E5");
        require(_blacklist[botAddress] == 0, "E6");
        require(expirationTime > 0, "E7");

        _blacklist[botAddress] = expirationTime;
        blacklistLength = blacklistLength + 1;

        emit AddBotAddress(botAddress);
    }
    
    ///@dev internal function to remove address from blacklist.
    function removeBotAddressToBlackList(address botAddress) external onlyOperator {
        require(_blacklist[botAddress] > 0, "E8");

        delete _blacklist[botAddress];
        blacklistLength = blacklistLength - 1;

        emit RemoveBotAddress(botAddress);
    }

    ///@dev Update operator address
    function transferOperator(address newOperator) external onlyOperator {
        require(newOperator != address(0), "E9");

        _operator = newOperator;

        emit OperatorTransferred(_operator, newOperator);
    }

    ///@dev Update operator address status
    function setOperators(address operatorAddress, bool status) external onlyOperator {
        require(operatorAddress != address(0), "E9");

        emit SetOperators(operatorAddress, _excludedOperators[operatorAddress], status);

        _excludedOperators[operatorAddress] = status;
    }

    /*
     * Updates the max user transfer amount.
     * @dev set it to 10000 in order to turn off anti whale system (anti bot)
     */
    function setMaxUserTransferAmountRate(uint16 newMaxUserTransferAmountRate) external onlyOperator {
        require(newMaxUserTransferAmountRate >= 50, "E10");
        require(newMaxUserTransferAmountRate <= 10000, "E11");

        emit SetMaxUserTransferAmountRate(_msgSender(), maxUserTransferAmountRate, newMaxUserTransferAmountRate);

        maxUserTransferAmountRate = newMaxUserTransferAmountRate;
    }

    /// External functions that are view ///
    ///@dev check if the address is in the blacklist or not
    function blacklistCheckExpirationTime(address botAddress) external view returns(uint256) {
        return _blacklist[botAddress];
    }

    function operator() external view returns (address) {
        return _operator;
    }

    ///@dev Check if the address is excluded from antibot system.
    function isExcludedOperator(address userAddress) public view returns(bool) {
        return _excludedOperators[userAddress];
    }

    /// Public functions ///
    /// @notice Creates `amount` token to `to`. Must only be called by the owner (MasterChef).
    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    ///@dev Max user transfer allowed
    function maxUserTransferAmount() public view returns (uint256) {
        return (totalSupply() * maxUserTransferAmountRate) / 10000;
    }

    ///@dev check if the address is in the blacklist or expired
    function blacklistCheck(address _botAddress) public view returns(bool) {
        return _blacklist[_botAddress] > block.timestamp;
    }

    /// Internal functions ///
    /// @dev overrides transfer function to meet tokenomics of BANKSY
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override antiBot(sender, recipient, amount) {
        super._transfer(sender, recipient, amount);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_treasuryDAOAddress","internalType":"address"}]},{"type":"event","name":"AddBotAddress","inputs":[{"type":"address","name":"botAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OperatorTransferred","inputs":[{"type":"address","name":"previousOperator","internalType":"address","indexed":true},{"type":"address","name":"newOperator","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RemoveBotAddress","inputs":[{"type":"address","name":"botAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetMaxUserTransferAmountRate","inputs":[{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"uint256","name":"previousRate","internalType":"uint256","indexed":false},{"type":"uint256","name":"newRate","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SetOperators","inputs":[{"type":"address","name":"operatorAddress","internalType":"address","indexed":true},{"type":"bool","name":"previousStatus","internalType":"bool","indexed":false},{"type":"bool","name":"newStatus","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TransferTaxRateUpdated","inputs":[{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"uint256","name":"previousRate","internalType":"uint256","indexed":false},{"type":"uint256","name":"newRate","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"BURN_ADDRESS","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addBotAddressToBlackList","inputs":[{"type":"address","name":"botAddress","internalType":"address"},{"type":"uint256","name":"expirationTime","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"blacklistCheck","inputs":[{"type":"address","name":"_botAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"blacklistCheckExpirationTime","inputs":[{"type":"address","name":"botAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"blacklistLength","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedOperator","inputs":[{"type":"address","name":"userAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxUserTransferAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"maxUserTransferAmountRate","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeBotAddressToBlackList","inputs":[{"type":"address","name":"botAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxUserTransferAmountRate","inputs":[{"type":"uint16","name":"newMaxUserTransferAmountRate","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOperators","inputs":[{"type":"address","name":"operatorAddress","internalType":"address"},{"type":"bool","name":"status","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOperator","inputs":[{"type":"address","name":"newOperator","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasuryDAOAddress","inputs":[]}]
            

Contract Creation Code

0x608060405261012c600560146101000a81548161ffff021916908361ffff1602179055503480156200003057600080fd5b50604051620039d1380380620039d1833981810160405281019062000056919062000550565b6040518060400160405280600981526020017f42414e4b535920563200000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f42414e4b535900000000000000000000000000000000000000000000000000008152508160039080519060200190620000da92919062000436565b508060049080519060200190620000f392919062000436565b505050620001166200010a6200036860201b60201c565b6200037060201b60201c565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016006600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003216200036860201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620005e7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200044490620005b1565b90600052602060002090601f016020900481019282620004685760008555620004b4565b82601f106200048357805160ff1916838001178555620004b4565b82800160010185558215620004b4579182015b82811115620004b357825182559160200191906001019062000496565b5b509050620004c39190620004c7565b5090565b5b80821115620004e2576000816000905550600101620004c8565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200051882620004eb565b9050919050565b6200052a816200050b565b81146200053657600080fd5b50565b6000815190506200054a816200051f565b92915050565b600060208284031215620005695762000568620004e6565b5b6000620005798482850162000539565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ca57607f821691505b60208210811415620005e157620005e062000582565b5b50919050565b6133da80620005f76000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80635dbcfc8f11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461056b578063e912d5d01461059b578063f2fde38b146105b9578063fccc2813146105d5576101da565b8063a9059cbb146104cf578063ab871e39146104ff578063b8de216a1461051d578063be75d5631461054d576101da565b80638da5cb5b116100de5780638da5cb5b146104455780639346afac1461046357806395d89b4114610481578063a457c2d71461049f576101da565b80635dbcfc8f146103ef57806370a082311461040b578063715018a61461043b576101da565b806332bbaffb1161017c5780634c4ec7bd1161014b5780634c4ec7bd1461037d578063570ca735146103995780635b9920f0146103b75780635cfbfc6d146103d3576101da565b806332bbaffb146102e5578063395093511461031557806340c10f191461034557806342966c6814610361576101da565b806323b872dd116101b857806323b872dd1461024b578063240879a61461027b57806329605e77146102ab578063313ce567146102c7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105f3565b6040516101f4919061226d565b60405180910390f35b61021760048036038101906102129190612328565b610685565b6040516102249190612383565b60405180910390f35b6102356106a3565b60405161024291906123ad565b60405180910390f35b610265600480360381019061026091906123c8565b6106ad565b6040516102729190612383565b60405180910390f35b6102956004803603810190610290919061241b565b6107a5565b6040516102a291906123ad565b60405180910390f35b6102c560048036038101906102c0919061241b565b6107ee565b005b6102cf6109b5565b6040516102dc9190612464565b60405180910390f35b6102ff60048036038101906102fa919061241b565b6109be565b60405161030c9190612383565b60405180910390f35b61032f600480360381019061032a9190612328565b610a14565b60405161033c9190612383565b60405180910390f35b61035f600480360381019061035a9190612328565b610ac0565b005b61037b6004803603810190610376919061247f565b610b4a565b005b610397600480360381019061039291906124e6565b610bd3565b005b6103a1610d82565b6040516103ae9190612522565b60405180910390f35b6103d160048036038101906103cc9190612328565b610dac565b005b6103ed60048036038101906103e89190612569565b610fd6565b005b6104096004803603810190610404919061241b565b6111d4565b005b6104256004803603810190610420919061241b565b61138b565b60405161043291906123ad565b60405180910390f35b6104436113d3565b005b61044d61145b565b60405161045a9190612522565b60405180910390f35b61046b611485565b60405161047891906123ad565b60405180910390f35b61048961148b565b604051610496919061226d565b60405180910390f35b6104b960048036038101906104b49190612328565b61151d565b6040516104c69190612383565b60405180910390f35b6104e960048036038101906104e49190612328565b611608565b6040516104f69190612383565b60405180910390f35b610507611626565b60405161051491906123ad565b60405180910390f35b6105376004803603810190610532919061241b565b611661565b6040516105449190612383565b60405180910390f35b6105556116ac565b6040516105629190612522565b60405180910390f35b610585600480360381019061058091906125a9565b6116d2565b60405161059291906123ad565b60405180910390f35b6105a3611759565b6040516105b091906125f8565b60405180910390f35b6105d360048036038101906105ce919061241b565b61176d565b005b6105dd611865565b6040516105ea9190612522565b60405180910390f35b60606003805461060290612642565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90612642565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b600061069961069261186b565b8484611873565b6001905092915050565b6000600254905090565b60006106ba848484611a3e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061070561186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906126e6565b60405180910390fd5b6107998561079161186b565b858403611873565b60019150509392505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f661186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90612752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906127be565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a350565b60006012905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610ab6610a2161186b565b848460016000610a2f61186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ab1919061280d565b611873565b6001905092915050565b610ac861186b565b73ffffffffffffffffffffffffffffffffffffffff16610ae661145b565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906128af565b60405180910390fd5b610b468282611b4c565b5050565b610b5261186b565b73ffffffffffffffffffffffffffffffffffffffff16610b7061145b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906128af565b60405180910390fd5b610bd03382611cac565b50565b610bdb61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190612752565b60405180910390fd5b60328161ffff161015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061291b565b60405180910390fd5b6127108161ffff161115610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612987565b60405180910390fd5b610d0361186b565b73ffffffffffffffffffffffffffffffffffffffff167ffc761a288b3bebdfbb15cbbc5a2687a0073b2f42c3a123a498779190c28f3d2c600560149054906101000a900461ffff1683604051610d5a9291906129e2565b60405180910390a280600560146101000a81548161ffff021916908361ffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db461186b565b73ffffffffffffffffffffffffffffffffffffffff16610dd261145b565b73ffffffffffffffffffffffffffffffffffffffff1614610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f906128af565b60405180910390fd5b610e31826109be565b15610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890612a57565b60405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612ac3565b60405180910390fd5b60008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612b2f565b60405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600854610f89919061280d565b6008819055508173ffffffffffffffffffffffffffffffffffffffff167f740abab4fbb839e2d91ef17f9d4457b7c73c0923b94db70c82b2d235fc9acbba60405160405180910390a25050565b610fde61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490612752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906127be565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f11538d05e3c0b6f8fb3a3b89d6d28f1d651865f617eda5ca1a5db3a3cb6692fa600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683604051611171929190612b4f565b60405180910390a280600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111dc61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612752565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490612bc4565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009055600160085461133f9190612be4565b6008819055508073ffffffffffffffffffffffffffffffffffffffff167f063b75f31173405e3368ee31dcd46f9fcad55506fe60df52822ea3de911250ca60405160405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113db61186b565b73ffffffffffffffffffffffffffffffffffffffff166113f961145b565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906128af565b60405180910390fd5b6114596000611e83565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60606004805461149a90612642565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690612642565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050905090565b6000806001600061152c61186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612c8a565b60405180910390fd5b6115fd6115f461186b565b85858403611873565b600191505092915050565b600061161c61161561186b565b8484611a3e565b6001905092915050565b6000612710600560149054906101000a900461ffff1661ffff166116486106a3565b6116529190612caa565b61165c9190612d33565b905090565b600042600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560149054906101000a900461ffff1681565b61177561186b565b73ffffffffffffffffffffffffffffffffffffffff1661179361145b565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906128af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090612dd6565b60405180910390fd5b61186281611e83565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90612efa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a3191906123ad565b60405180910390a3505050565b828282611a4a83611661565b15611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190612f66565b60405180910390fd5b611a9382611661565b15611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90612fd2565b60405180910390fd5b611adc836109be565b611b3957611ae9826109be565b611b3857611af5611626565b811115611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061303e565b60405180910390fd5b5b5b611b44868686611f49565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906130aa565b60405180910390fd5b611bc8600083836121ca565b8060026000828254611bda919061280d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2f919061280d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9491906123ad565b60405180910390a3611ca8600083836121cf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d139061313c565b60405180910390fd5b611d28826000836121ca565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906131ce565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e059190612be4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e6a91906123ad565b60405180910390a3611e7e836000846121cf565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090613260565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612020906132f2565b60405180910390fd5b6120348383836121ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613384565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214d919061280d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121b191906123ad565b60405180910390a36121c48484846121cf565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561220e5780820151818401526020810190506121f3565b8381111561221d576000848401525b50505050565b6000601f19601f8301169050919050565b600061223f826121d4565b61224981856121df565b93506122598185602086016121f0565b61226281612223565b840191505092915050565b600060208201905081810360008301526122878184612234565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122bf82612294565b9050919050565b6122cf816122b4565b81146122da57600080fd5b50565b6000813590506122ec816122c6565b92915050565b6000819050919050565b612305816122f2565b811461231057600080fd5b50565b600081359050612322816122fc565b92915050565b6000806040838503121561233f5761233e61228f565b5b600061234d858286016122dd565b925050602061235e85828601612313565b9150509250929050565b60008115159050919050565b61237d81612368565b82525050565b60006020820190506123986000830184612374565b92915050565b6123a7816122f2565b82525050565b60006020820190506123c2600083018461239e565b92915050565b6000806000606084860312156123e1576123e061228f565b5b60006123ef868287016122dd565b9350506020612400868287016122dd565b925050604061241186828701612313565b9150509250925092565b6000602082840312156124315761243061228f565b5b600061243f848285016122dd565b91505092915050565b600060ff82169050919050565b61245e81612448565b82525050565b60006020820190506124796000830184612455565b92915050565b6000602082840312156124955761249461228f565b5b60006124a384828501612313565b91505092915050565b600061ffff82169050919050565b6124c3816124ac565b81146124ce57600080fd5b50565b6000813590506124e0816124ba565b92915050565b6000602082840312156124fc576124fb61228f565b5b600061250a848285016124d1565b91505092915050565b61251c816122b4565b82525050565b60006020820190506125376000830184612513565b92915050565b61254681612368565b811461255157600080fd5b50565b6000813590506125638161253d565b92915050565b600080604083850312156125805761257f61228f565b5b600061258e858286016122dd565b925050602061259f85828601612554565b9150509250929050565b600080604083850312156125c0576125bf61228f565b5b60006125ce858286016122dd565b92505060206125df858286016122dd565b9150509250929050565b6125f2816124ac565b82525050565b600060208201905061260d60008301846125e9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265a57607f821691505b6020821081141561266e5761266d612613565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006126d06028836121df565b91506126db82612674565b604082019050919050565b600060208201905081810360008301526126ff816126c3565b9050919050565b7f4534000000000000000000000000000000000000000000000000000000000000600082015250565b600061273c6002836121df565b915061274782612706565b602082019050919050565b6000602082019050818103600083015261276b8161272f565b9050919050565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b60006127a86002836121df565b91506127b382612772565b602082019050919050565b600060208201905081810360008301526127d78161279b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612818826122f2565b9150612823836122f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612858576128576127de565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128996020836121df565b91506128a482612863565b602082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b60006129056003836121df565b9150612910826128cf565b602082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f4531310000000000000000000000000000000000000000000000000000000000600082015250565b60006129716003836121df565b915061297c8261293b565b602082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b6000819050919050565b60006129cc6129c76129c2846124ac565b6129a7565b6122f2565b9050919050565b6129dc816129b1565b82525050565b60006040820190506129f760008301856129d3565b612a0460208301846129d3565b9392505050565b7f4535000000000000000000000000000000000000000000000000000000000000600082015250565b6000612a416002836121df565b9150612a4c82612a0b565b602082019050919050565b60006020820190508181036000830152612a7081612a34565b9050919050565b7f4536000000000000000000000000000000000000000000000000000000000000600082015250565b6000612aad6002836121df565b9150612ab882612a77565b602082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b7f4537000000000000000000000000000000000000000000000000000000000000600082015250565b6000612b196002836121df565b9150612b2482612ae3565b602082019050919050565b60006020820190508181036000830152612b4881612b0c565b9050919050565b6000604082019050612b646000830185612374565b612b716020830184612374565b9392505050565b7f4538000000000000000000000000000000000000000000000000000000000000600082015250565b6000612bae6002836121df565b9150612bb982612b78565b602082019050919050565b60006020820190508181036000830152612bdd81612ba1565b9050919050565b6000612bef826122f2565b9150612bfa836122f2565b925082821015612c0d57612c0c6127de565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c746025836121df565b9150612c7f82612c18565b604082019050919050565b60006020820190508181036000830152612ca381612c67565b9050919050565b6000612cb5826122f2565b9150612cc0836122f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf957612cf86127de565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d3e826122f2565b9150612d49836122f2565b925082612d5957612d58612d04565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dc06026836121df565b9150612dcb82612d64565b604082019050919050565b60006020820190508181036000830152612def81612db3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e526024836121df565b9150612e5d82612df6565b604082019050919050565b60006020820190508181036000830152612e8181612e45565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee46022836121df565b9150612eef82612e88565b604082019050919050565b60006020820190508181036000830152612f1381612ed7565b9050919050565b7f4531000000000000000000000000000000000000000000000000000000000000600082015250565b6000612f506002836121df565b9150612f5b82612f1a565b602082019050919050565b60006020820190508181036000830152612f7f81612f43565b9050919050565b7f4532000000000000000000000000000000000000000000000000000000000000600082015250565b6000612fbc6002836121df565b9150612fc782612f86565b602082019050919050565b60006020820190508181036000830152612feb81612faf565b9050919050565b7f4533000000000000000000000000000000000000000000000000000000000000600082015250565b60006130286002836121df565b915061303382612ff2565b602082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613094601f836121df565b915061309f8261305e565b602082019050919050565b600060208201905081810360008301526130c381613087565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131266021836121df565b9150613131826130ca565b604082019050919050565b6000602082019050818103600083015261315581613119565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b86022836121df565b91506131c38261315c565b604082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324a6025836121df565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132dc6023836121df565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061336e6026836121df565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b905091905056fea264697066735822122088a720faa1b911b8ea533cc10deeaf13f4ae290aac825e290cc134001c5feb8b64736f6c634300080900330000000000000000000000004a78a6a8f8b3773f7a78befd106f280403eea807

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80635dbcfc8f11610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461056b578063e912d5d01461059b578063f2fde38b146105b9578063fccc2813146105d5576101da565b8063a9059cbb146104cf578063ab871e39146104ff578063b8de216a1461051d578063be75d5631461054d576101da565b80638da5cb5b116100de5780638da5cb5b146104455780639346afac1461046357806395d89b4114610481578063a457c2d71461049f576101da565b80635dbcfc8f146103ef57806370a082311461040b578063715018a61461043b576101da565b806332bbaffb1161017c5780634c4ec7bd1161014b5780634c4ec7bd1461037d578063570ca735146103995780635b9920f0146103b75780635cfbfc6d146103d3576101da565b806332bbaffb146102e5578063395093511461031557806340c10f191461034557806342966c6814610361576101da565b806323b872dd116101b857806323b872dd1461024b578063240879a61461027b57806329605e77146102ab578063313ce567146102c7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e76105f3565b6040516101f4919061226d565b60405180910390f35b61021760048036038101906102129190612328565b610685565b6040516102249190612383565b60405180910390f35b6102356106a3565b60405161024291906123ad565b60405180910390f35b610265600480360381019061026091906123c8565b6106ad565b6040516102729190612383565b60405180910390f35b6102956004803603810190610290919061241b565b6107a5565b6040516102a291906123ad565b60405180910390f35b6102c560048036038101906102c0919061241b565b6107ee565b005b6102cf6109b5565b6040516102dc9190612464565b60405180910390f35b6102ff60048036038101906102fa919061241b565b6109be565b60405161030c9190612383565b60405180910390f35b61032f600480360381019061032a9190612328565b610a14565b60405161033c9190612383565b60405180910390f35b61035f600480360381019061035a9190612328565b610ac0565b005b61037b6004803603810190610376919061247f565b610b4a565b005b610397600480360381019061039291906124e6565b610bd3565b005b6103a1610d82565b6040516103ae9190612522565b60405180910390f35b6103d160048036038101906103cc9190612328565b610dac565b005b6103ed60048036038101906103e89190612569565b610fd6565b005b6104096004803603810190610404919061241b565b6111d4565b005b6104256004803603810190610420919061241b565b61138b565b60405161043291906123ad565b60405180910390f35b6104436113d3565b005b61044d61145b565b60405161045a9190612522565b60405180910390f35b61046b611485565b60405161047891906123ad565b60405180910390f35b61048961148b565b604051610496919061226d565b60405180910390f35b6104b960048036038101906104b49190612328565b61151d565b6040516104c69190612383565b60405180910390f35b6104e960048036038101906104e49190612328565b611608565b6040516104f69190612383565b60405180910390f35b610507611626565b60405161051491906123ad565b60405180910390f35b6105376004803603810190610532919061241b565b611661565b6040516105449190612383565b60405180910390f35b6105556116ac565b6040516105629190612522565b60405180910390f35b610585600480360381019061058091906125a9565b6116d2565b60405161059291906123ad565b60405180910390f35b6105a3611759565b6040516105b091906125f8565b60405180910390f35b6105d360048036038101906105ce919061241b565b61176d565b005b6105dd611865565b6040516105ea9190612522565b60405180910390f35b60606003805461060290612642565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90612642565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b600061069961069261186b565b8484611873565b6001905092915050565b6000600254905090565b60006106ba848484611a3e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061070561186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c906126e6565b60405180910390fd5b6107998561079161186b565b858403611873565b60019150509392505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f661186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90612752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906127be565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a350565b60006012905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610ab6610a2161186b565b848460016000610a2f61186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ab1919061280d565b611873565b6001905092915050565b610ac861186b565b73ffffffffffffffffffffffffffffffffffffffff16610ae661145b565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906128af565b60405180910390fd5b610b468282611b4c565b5050565b610b5261186b565b73ffffffffffffffffffffffffffffffffffffffff16610b7061145b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906128af565b60405180910390fd5b610bd03382611cac565b50565b610bdb61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190612752565b60405180910390fd5b60328161ffff161015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061291b565b60405180910390fd5b6127108161ffff161115610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290612987565b60405180910390fd5b610d0361186b565b73ffffffffffffffffffffffffffffffffffffffff167ffc761a288b3bebdfbb15cbbc5a2687a0073b2f42c3a123a498779190c28f3d2c600560149054906101000a900461ffff1683604051610d5a9291906129e2565b60405180910390a280600560146101000a81548161ffff021916908361ffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db461186b565b73ffffffffffffffffffffffffffffffffffffffff16610dd261145b565b73ffffffffffffffffffffffffffffffffffffffff1614610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f906128af565b60405180910390fd5b610e31826109be565b15610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890612a57565b60405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612ac3565b60405180910390fd5b60008111610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90612b2f565b60405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600854610f89919061280d565b6008819055508173ffffffffffffffffffffffffffffffffffffffff167f740abab4fbb839e2d91ef17f9d4457b7c73c0923b94db70c82b2d235fc9acbba60405160405180910390a25050565b610fde61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490612752565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906127be565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f11538d05e3c0b6f8fb3a3b89d6d28f1d651865f617eda5ca1a5db3a3cb6692fa600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683604051611171929190612b4f565b60405180910390a280600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111dc61186b565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612752565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e490612bc4565b60405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009055600160085461133f9190612be4565b6008819055508073ffffffffffffffffffffffffffffffffffffffff167f063b75f31173405e3368ee31dcd46f9fcad55506fe60df52822ea3de911250ca60405160405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113db61186b565b73ffffffffffffffffffffffffffffffffffffffff166113f961145b565b73ffffffffffffffffffffffffffffffffffffffff161461144f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611446906128af565b60405180910390fd5b6114596000611e83565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b60606004805461149a90612642565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690612642565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050905090565b6000806001600061152c61186b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612c8a565b60405180910390fd5b6115fd6115f461186b565b85858403611873565b600191505092915050565b600061161c61161561186b565b8484611a3e565b6001905092915050565b6000612710600560149054906101000a900461ffff1661ffff166116486106a3565b6116529190612caa565b61165c9190612d33565b905090565b600042600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560149054906101000a900461ffff1681565b61177561186b565b73ffffffffffffffffffffffffffffffffffffffff1661179361145b565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906128af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090612dd6565b60405180910390fd5b61186281611e83565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90612efa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a3191906123ad565b60405180910390a3505050565b828282611a4a83611661565b15611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190612f66565b60405180910390fd5b611a9382611661565b15611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90612fd2565b60405180910390fd5b611adc836109be565b611b3957611ae9826109be565b611b3857611af5611626565b811115611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e9061303e565b60405180910390fd5b5b5b611b44868686611f49565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906130aa565b60405180910390fd5b611bc8600083836121ca565b8060026000828254611bda919061280d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2f919061280d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9491906123ad565b60405180910390a3611ca8600083836121cf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d139061313c565b60405180910390fd5b611d28826000836121ca565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906131ce565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e059190612be4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e6a91906123ad565b60405180910390a3611e7e836000846121cf565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090613260565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612020906132f2565b60405180910390fd5b6120348383836121ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613384565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214d919061280d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121b191906123ad565b60405180910390a36121c48484846121cf565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561220e5780820151818401526020810190506121f3565b8381111561221d576000848401525b50505050565b6000601f19601f8301169050919050565b600061223f826121d4565b61224981856121df565b93506122598185602086016121f0565b61226281612223565b840191505092915050565b600060208201905081810360008301526122878184612234565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122bf82612294565b9050919050565b6122cf816122b4565b81146122da57600080fd5b50565b6000813590506122ec816122c6565b92915050565b6000819050919050565b612305816122f2565b811461231057600080fd5b50565b600081359050612322816122fc565b92915050565b6000806040838503121561233f5761233e61228f565b5b600061234d858286016122dd565b925050602061235e85828601612313565b9150509250929050565b60008115159050919050565b61237d81612368565b82525050565b60006020820190506123986000830184612374565b92915050565b6123a7816122f2565b82525050565b60006020820190506123c2600083018461239e565b92915050565b6000806000606084860312156123e1576123e061228f565b5b60006123ef868287016122dd565b9350506020612400868287016122dd565b925050604061241186828701612313565b9150509250925092565b6000602082840312156124315761243061228f565b5b600061243f848285016122dd565b91505092915050565b600060ff82169050919050565b61245e81612448565b82525050565b60006020820190506124796000830184612455565b92915050565b6000602082840312156124955761249461228f565b5b60006124a384828501612313565b91505092915050565b600061ffff82169050919050565b6124c3816124ac565b81146124ce57600080fd5b50565b6000813590506124e0816124ba565b92915050565b6000602082840312156124fc576124fb61228f565b5b600061250a848285016124d1565b91505092915050565b61251c816122b4565b82525050565b60006020820190506125376000830184612513565b92915050565b61254681612368565b811461255157600080fd5b50565b6000813590506125638161253d565b92915050565b600080604083850312156125805761257f61228f565b5b600061258e858286016122dd565b925050602061259f85828601612554565b9150509250929050565b600080604083850312156125c0576125bf61228f565b5b60006125ce858286016122dd565b92505060206125df858286016122dd565b9150509250929050565b6125f2816124ac565b82525050565b600060208201905061260d60008301846125e9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265a57607f821691505b6020821081141561266e5761266d612613565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006126d06028836121df565b91506126db82612674565b604082019050919050565b600060208201905081810360008301526126ff816126c3565b9050919050565b7f4534000000000000000000000000000000000000000000000000000000000000600082015250565b600061273c6002836121df565b915061274782612706565b602082019050919050565b6000602082019050818103600083015261276b8161272f565b9050919050565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b60006127a86002836121df565b91506127b382612772565b602082019050919050565b600060208201905081810360008301526127d78161279b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612818826122f2565b9150612823836122f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612858576128576127de565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128996020836121df565b91506128a482612863565b602082019050919050565b600060208201905081810360008301526128c88161288c565b9050919050565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b60006129056003836121df565b9150612910826128cf565b602082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f4531310000000000000000000000000000000000000000000000000000000000600082015250565b60006129716003836121df565b915061297c8261293b565b602082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b6000819050919050565b60006129cc6129c76129c2846124ac565b6129a7565b6122f2565b9050919050565b6129dc816129b1565b82525050565b60006040820190506129f760008301856129d3565b612a0460208301846129d3565b9392505050565b7f4535000000000000000000000000000000000000000000000000000000000000600082015250565b6000612a416002836121df565b9150612a4c82612a0b565b602082019050919050565b60006020820190508181036000830152612a7081612a34565b9050919050565b7f4536000000000000000000000000000000000000000000000000000000000000600082015250565b6000612aad6002836121df565b9150612ab882612a77565b602082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b7f4537000000000000000000000000000000000000000000000000000000000000600082015250565b6000612b196002836121df565b9150612b2482612ae3565b602082019050919050565b60006020820190508181036000830152612b4881612b0c565b9050919050565b6000604082019050612b646000830185612374565b612b716020830184612374565b9392505050565b7f4538000000000000000000000000000000000000000000000000000000000000600082015250565b6000612bae6002836121df565b9150612bb982612b78565b602082019050919050565b60006020820190508181036000830152612bdd81612ba1565b9050919050565b6000612bef826122f2565b9150612bfa836122f2565b925082821015612c0d57612c0c6127de565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c746025836121df565b9150612c7f82612c18565b604082019050919050565b60006020820190508181036000830152612ca381612c67565b9050919050565b6000612cb5826122f2565b9150612cc0836122f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf957612cf86127de565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d3e826122f2565b9150612d49836122f2565b925082612d5957612d58612d04565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dc06026836121df565b9150612dcb82612d64565b604082019050919050565b60006020820190508181036000830152612def81612db3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e526024836121df565b9150612e5d82612df6565b604082019050919050565b60006020820190508181036000830152612e8181612e45565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee46022836121df565b9150612eef82612e88565b604082019050919050565b60006020820190508181036000830152612f1381612ed7565b9050919050565b7f4531000000000000000000000000000000000000000000000000000000000000600082015250565b6000612f506002836121df565b9150612f5b82612f1a565b602082019050919050565b60006020820190508181036000830152612f7f81612f43565b9050919050565b7f4532000000000000000000000000000000000000000000000000000000000000600082015250565b6000612fbc6002836121df565b9150612fc782612f86565b602082019050919050565b60006020820190508181036000830152612feb81612faf565b9050919050565b7f4533000000000000000000000000000000000000000000000000000000000000600082015250565b60006130286002836121df565b915061303382612ff2565b602082019050919050565b600060208201905081810360008301526130578161301b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613094601f836121df565b915061309f8261305e565b602082019050919050565b600060208201905081810360008301526130c381613087565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131266021836121df565b9150613131826130ca565b604082019050919050565b6000602082019050818103600083015261315581613119565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b86022836121df565b91506131c38261315c565b604082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324a6025836121df565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132dc6023836121df565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061336e6026836121df565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b905091905056fea264697066735822122088a720faa1b911b8ea533cc10deeaf13f4ae290aac825e290cc134001c5feb8b64736f6c63430008090033