ETH Price: $3,063.35 (-4.61%)
 

Overview

Max Total Supply

250,000,000 SCOT

Holders

341

Transfers

-
1

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ScotcoinToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-08-24
*/

// SPDX-License-Identifier: MIT

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
    );
}

/**
 * @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);
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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() == msg.sender, "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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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 ScotcoinToken is Context, IERC20, IERC20Metadata, Ownable {
    
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;


    mapping(address => bool) public blackList;
    mapping(address => uint256) private lastTxTimestamp;
    bool private antibotPaused = true;

    struct WhitelistRound {
        uint256 duration;
        uint256 amountMax;
        mapping(address => bool) addresses;
        mapping(address => uint256) purchased;
    }

    WhitelistRound[] public _tgeWhitelistRounds;

    uint256 public _tgeTimestamp;
    address public _tgePairAddress;

    uint256 private maxTxPercent = 100;
    uint256 private transferDelay = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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() {
        _name = "Scotcoin Token";
        _symbol = "SCOT";
        _mint(msg.sender, 250000000 * (10**uint256(decimals())));
    }

    /**
     * @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"
        );
        _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"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }



    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        if (!antibotPaused) {
            if (sender != owner() && recipient != owner()) {
                require(
                    amount <= (totalSupply() * maxTxPercent) / 100,
                    "Overflow max transfer amount"
                );
            }
            require(!blackList[sender], "Blacklisted seller");
            _applyTGEWhitelist(sender, recipient, amount);
            lastTxTimestamp[recipient] = block.timestamp;
        }

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

        emit Transfer(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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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");

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

        emit Transfer(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);
    }

    /// @notice
    /// Anti bot

    /// @notice Add bot address to blacklist
    function addBlackList(address _bot) external onlyOwner {
        blackList[_bot] = true;
        emit AddedBlackList(_bot);
    }

    /// @notice Remove the address from blacklist
    function removeBlackList(address _addr) external onlyOwner {
        blackList[_addr] = false;
        emit RemovedBlackList(_addr);
    }

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);


    /*
     * createTGEWhitelist - Call this after initial Token Generation Event (TGE)
     *
     * pairAddress - address generated from createPair() event on DEX
     * durations - array of durations (seconds) for each whitelist rounds
     * amountsMax - array of max amounts (TOKEN decimals) for each whitelist round
     *
     */

    function createTGEWhitelist(address pairAddress, uint256[] calldata durations, uint256[] calldata amountsMax) external onlyOwner {
        require(durations.length == amountsMax.length, "Invalid whitelist(s)");

        _tgePairAddress = pairAddress;

        if(durations.length > 0) {

            delete _tgeWhitelistRounds;
            
            for (uint256 i = 0; i < durations.length; i++) {
                _tgeWhitelistRounds.push();
                WhitelistRound storage wlRound = _tgeWhitelistRounds[i];
                wlRound.duration = durations[i];
                wlRound.amountMax = amountsMax[i];
            }

        }
    }

    /*
     * modifyTGEWhitelistAddresses - Define what addresses are included/excluded from a whitelist round
     *
     * index - 0-based index of round to modify whitelist
     * duration - period in seconds from TGE event or previous whitelist round
     * amountMax - max amount (TOKEN decimals) for each whitelist round
     *
     */

    function modifyTGEWhitelist(uint256 index, uint256 duration, uint256 amountMax, address[] calldata addresses, bool enabled) external onlyOwner {
        require(index < _tgeWhitelistRounds.length, "Invalid index");
        require(amountMax > 0, "Invalid amountMax");

        if(duration != _tgeWhitelistRounds[index].duration)
            _tgeWhitelistRounds[index].duration = duration;

        if(amountMax != _tgeWhitelistRounds[index].amountMax)
            _tgeWhitelistRounds[index].amountMax = amountMax;

        for (uint256 i = 0; i < addresses.length; i++) {
            _tgeWhitelistRounds[index].addresses[addresses[i]] = enabled;
        }
    }

    /*
     *  getTGEWhitelistRound
     *
     *  returns:
     *
     *  1. whitelist round number ( 0 = no active round now )
     *  2. duration, in seconds, current whitelist round is active for
     *  3. timestamp current whitelist round closes at
     *  4. maximum amount a whitelister can purchase in this round
     *  5. is caller whitelisted
     *  6. how much caller has purchased in current whitelist round
     *
     */

    function getTGEWhitelistRound() public view returns (uint256, uint256, uint256, uint256, bool, uint256) {

        if(_tgeTimestamp > 0) {

            uint256 wlCloseTimestampLast = _tgeTimestamp;

            for (uint256 i = 0; i < _tgeWhitelistRounds.length; i++) {

                WhitelistRound storage wlRound = _tgeWhitelistRounds[i];

                wlCloseTimestampLast = wlCloseTimestampLast + wlRound.duration;
                if(block.timestamp <= wlCloseTimestampLast)
                    return (i+1, wlRound.duration, wlCloseTimestampLast, wlRound.amountMax, wlRound.addresses[_msgSender()], wlRound.purchased[_msgSender()]);
            }

        }

        return (0, 0, 0, 0, false, 0);
    }

    /*
     * _applyTGEWhitelist - internal function to be called initially before any transfers
     *
     */

    function _applyTGEWhitelist(address sender, address recipient, uint256 amount) internal {

        if(_tgePairAddress == address(0) || _tgeWhitelistRounds.length == 0)
            return;

        if(_tgeTimestamp == 0 && sender != _tgePairAddress && recipient == _tgePairAddress && amount > 0)
            _tgeTimestamp = block.timestamp;

        if(sender == _tgePairAddress && recipient != _tgePairAddress) {
            //buying

            (uint256 wlRoundNumber,,,,,) = getTGEWhitelistRound();

            if(wlRoundNumber > 0) {

                WhitelistRound storage wlRound = _tgeWhitelistRounds[wlRoundNumber-1];

                require(wlRound.addresses[recipient], "TGE - Buyer is not whitelisted");

                uint256 amountRemaining = 0;

                if(wlRound.purchased[recipient] < wlRound.amountMax)
                    amountRemaining = wlRound.amountMax - wlRound.purchased[recipient];

                require(amount <= amountRemaining, "TGE - Amount exceeds whitelist maximum");
                wlRound.purchased[recipient] = wlRound.purchased[recipient] + amount;

            }

        }

    }


    /// @notice Set max transaction percent
    function setMaxTxPercent(uint256 _maxTxPercent) external onlyOwner {
        maxTxPercent = _maxTxPercent;
    }

    /// @notice Set transaction time delay
    function setTransferDelay(uint256 _transferDelay) external onlyOwner {
        transferDelay = _transferDelay;
    }

    /// @notice Set antibot status
    function setAntibotPaused(bool _antibotPaused) external onlyOwner {
        antibotPaused = _antibotPaused;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":"_tgePairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tgeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tgeWhitelistRounds","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bot","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"},{"internalType":"uint256[]","name":"amountsMax","type":"uint256[]"}],"name":"createTGEWhitelist","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":"getTGEWhitelistRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","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":"index","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"modifyTGEWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_antibotPaused","type":"bool"}],"name":"setAntibotPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferDelay","type":"uint256"}],"name":"setTransferDelay","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"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860006101000a81548160ff0219169083151502179055506064600c556000600d553480156200003657600080fd5b506000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600e81526020017f53636f74636f696e20546f6b656e000000000000000000000000000000000000815250600490805190602001906200012592919062000318565b506040518060400160405280600481526020017f53434f5400000000000000000000000000000000000000000000000000000000815250600590805190602001906200017392919062000318565b50620001b73362000189620001bd60201b60201c565b60ff16600a6200019a919062000523565b630ee6b280620001ab919062000660565b620001c660201b60201c565b6200076c565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000230906200041b565b60405180910390fd5b80600360008282546200024d91906200046b565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002a591906200046b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030c91906200043d565b60405180910390a35050565b8280546200032690620006cb565b90600052602060002090601f0160209004810192826200034a576000855562000396565b82601f106200036557805160ff191683800117855562000396565b8280016001018555821562000396579182015b828111156200039557825182559160200191906001019062000378565b5b509050620003a59190620003a9565b5090565b5b80821115620003c4576000816000905550600101620003aa565b5090565b6000620003d7601f836200045a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200041581620006c1565b82525050565b600060208201905081810360008301526200043681620003c8565b9050919050565b60006020820190506200045460008301846200040a565b92915050565b600082825260208201905092915050565b60006200047882620006c1565b91506200048583620006c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004bd57620004bc62000701565b5b828201905092915050565b6000808291508390505b60018511156200051a57808604811115620004f257620004f162000701565b5b6001851615620005025780820291505b808102905062000512856200075f565b9450620004d2565b94509492505050565b60006200053082620006c1565b91506200053d83620006c1565b92506200056c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000574565b905092915050565b60008262000586576001905062000659565b8162000596576000905062000659565b8160018114620005af5760028114620005ba57620005f0565b600191505062000659565b60ff841115620005cf57620005ce62000701565b5b8360020a915084821115620005e957620005e862000701565b5b5062000659565b5060208310610133831016604e8410600b84101617156200062a5782820a90508381111562000624576200062362000701565b5b62000659565b620006398484846001620004c8565b9250905081840481111562000653576200065262000701565b5b81810290505b9392505050565b60006200066d82620006c1565b91506200067a83620006c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006b657620006b562000701565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006e457607f821691505b60208210811415620006fb57620006fa62000730565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b613282806200077c6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a9059cbb11610097578063deb7696511610071578063deb76965146104b3578063e4997dc5146104cf578063f2fde38b146104eb578063fe72423f146105075761018e565b8063a9059cbb14610437578063d543dbeb14610467578063dd62ed3e146104835761018e565b806370a082311461036e578063715018a61461039e5780638da5cb5b146103a857806395d89b41146103c65780639ae407e8146103e4578063a457c2d7146104075761018e565b8063313ce5671161014b578063395093511161012557806339509351146102bf5780633ecea6b2146102ef5780634838d1651461030d578063617d7ec21461033d5761018e565b8063313ce56714610267578063325eaac11461028557806336e8c9b3146102a35761018e565b806306fdde0314610193578063095ea7b3146101b15780630ecb93c0146101e157806318160ddd146101fd57806323b872dd1461021b5780632c0c74aa1461024b575b600080fd5b61019b610523565b6040516101a89190612c53565b60405180910390f35b6101cb60048036038101906101c69190612532565b6105b5565b6040516101d89190612c38565b60405180910390f35b6101fb60048036038101906101f691906123f5565b6105d3565b005b6102056106da565b6040516102129190612e75565b60405180910390f35b6102356004803603810190610230919061245a565b6106e4565b6040516102429190612c38565b60405180910390f35b610265600480360381019061026091906124a9565b6107e5565b005b61026f610a22565b60405161027c9190612f1a565b60405180910390f35b61028d610a2b565b60405161029a9190612e75565b60405180910390f35b6102bd60048036038101906102b89190612597565b610a31565b005b6102d960048036038101906102d49190612532565b610ab0565b6040516102e69190612c38565b60405180910390f35b6102f7610b5c565b6040516103049190612c1d565b60405180910390f35b610327600480360381019061032291906123f5565b610b82565b6040516103349190612c38565b60405180910390f35b61035760048036038101906103529190612597565b610ba2565b604051610365929190612e90565b60405180910390f35b610388600480360381019061038391906123f5565b610bd6565b6040516103959190612e75565b60405180910390f35b6103a6610c1f565b005b6103b0610d52565b6040516103bd9190612c1d565b60405180910390f35b6103ce610d7b565b6040516103db9190612c53565b60405180910390f35b6103ec610e0d565b6040516103fe96959493929190612eb9565b60405180910390f35b610421600480360381019061041c9190612532565b610f9d565b60405161042e9190612c38565b60405180910390f35b610451600480360381019061044c9190612532565b611091565b60405161045e9190612c38565b60405180910390f35b610481600480360381019061047c9190612597565b6110af565b005b61049d6004803603810190610498919061241e565b61112e565b6040516104aa9190612e75565b60405180910390f35b6104cd60048036038101906104c891906125c0565b6111b5565b005b6104e960048036038101906104e491906123f5565b611511565b005b610505600480360381019061050091906123f5565b611618565b005b610521600480360381019061051c919061256e565b6117ba565b005b606060048054610532906130ee565b80601f016020809104026020016040519081016040528092919081815260200182805461055e906130ee565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c96105c261184c565b8484611854565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166105f2610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90612d75565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc816040516106cf9190612c1d565b60405180910390a150565b6000600354905090565b60006106f1848484611a1f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061073c61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390612d55565b60405180910390fd5b6107d9856107c861184c565b85846107d49190613032565b611854565b60019150509392505050565b3373ffffffffffffffffffffffffffffffffffffffff16610804610d52565b73ffffffffffffffffffffffffffffffffffffffff161461085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190612d75565b60405180910390fd5b8181905084849050146108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089990612e35565b60405180910390fd5b84600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000848490501115610a1b57600960006108fd91906122d7565b60005b84849050811015610a1957600960018160018154018082558091505003906000526020600020905050600060098281548110610965577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906004020190508585838181106109ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581600001819055508383838181106109f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358160010181905550508080610a1190613120565b915050610900565b505b5050505050565b60006012905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16610a50610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612d75565b60405180910390fd5b80600d8190555050565b6000610b52610abd61184c565b848460026000610acb61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4d9190612f51565b611854565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b60098181548110610bb257600080fd5b90600052602060002090600402016000915090508060000154908060010154905082565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610c3e610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d8a906130ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906130ee565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000806000806000806000600a541115610f7f576000600a54905060005b600980549050811015610f7c57600060098281548110610e74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600402019050806000015483610e949190612f51565b9250824211610f6857600182610eaa9190612f51565b8160000154848360010154846002016000610ec361184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16856003016000610f1961184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054985098509850985098509850505050610f95565b508080610f7490613120565b915050610e2b565b50505b6000806000806000809550955095509550955095505b909192939495565b60008060026000610fac61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612e55565b60405180910390fd5b61108661107461184c565b8585846110819190613032565b611854565b600191505092915050565b60006110a561109e61184c565b8484611a1f565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166110ce610d52565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90612d75565b60405180910390fd5b80600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166111d4610d52565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190612d75565b60405180910390fd5b6009805490508610611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612d15565b60405180910390fd5b600084116112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612db5565b60405180910390fd5b600986815481106112ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600001548514611357578460098781548110611341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600001819055505b60098681548110611391577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600402016001015484146113fa5783600987815481106113e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600101819055505b60005b83839050811015611508578160098881548110611443577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600201600086868581811061148f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114a491906123f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150090613120565b9150506113fd565b50505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16611530610d52565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90612d75565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c8160405161160d9190612c1d565b60405180910390a150565b3373ffffffffffffffffffffffffffffffffffffffff16611637610d52565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490612d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612cd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117d9610d52565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690612d75565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90612cf5565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a129190612e75565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690612df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690612c95565b60405180910390fd5b600860009054906101000a900460ff16611ccf57611b1b610d52565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b895750611b59610d52565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611bf2576064600c54611b9b6106da565b611ba59190612fd8565b611baf9190612fa7565b811115611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890612d95565b60405180910390fd5b5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690612dd5565b60405180910390fd5b611c8a838383611e66565b42600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90612d35565b60405180910390fd5b8181611d629190613032565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df49190612f51565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e589190612e75565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611ec857506000600980549050145b15611ed2576122d2565b6000600a54148015611f325750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611f8b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611f975750600081115b15611fa45742600a819055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561204f5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122d157600061205e610e0d565b5050505050905060008111156122cf576000600960018361207f9190613032565b815481106120b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906004020190508060020160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90612c75565b60405180910390fd5b600081600101548260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156121f7578160030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482600101546121f49190613032565b90505b8084111561223a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223190612cb5565b60405180910390fd5b838260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122879190612f51565b8260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505b505b5b505050565b50805460008255600402906000526020600020908101906122f891906122fb565b50565b5b8082111561231e576000808201600090556001820160009055506004016122fc565b5090565b60008135905061233181613207565b92915050565b60008083601f84011261234957600080fd5b8235905067ffffffffffffffff81111561236257600080fd5b60208301915083602082028301111561237a57600080fd5b9250929050565b60008083601f84011261239357600080fd5b8235905067ffffffffffffffff8111156123ac57600080fd5b6020830191508360208202830111156123c457600080fd5b9250929050565b6000813590506123da8161321e565b92915050565b6000813590506123ef81613235565b92915050565b60006020828403121561240757600080fd5b600061241584828501612322565b91505092915050565b6000806040838503121561243157600080fd5b600061243f85828601612322565b925050602061245085828601612322565b9150509250929050565b60008060006060848603121561246f57600080fd5b600061247d86828701612322565b935050602061248e86828701612322565b925050604061249f868287016123e0565b9150509250925092565b6000806000806000606086880312156124c157600080fd5b60006124cf88828901612322565b955050602086013567ffffffffffffffff8111156124ec57600080fd5b6124f888828901612381565b9450945050604086013567ffffffffffffffff81111561251757600080fd5b61252388828901612381565b92509250509295509295909350565b6000806040838503121561254557600080fd5b600061255385828601612322565b9250506020612564858286016123e0565b9150509250929050565b60006020828403121561258057600080fd5b600061258e848285016123cb565b91505092915050565b6000602082840312156125a957600080fd5b60006125b7848285016123e0565b91505092915050565b60008060008060008060a087890312156125d957600080fd5b60006125e789828a016123e0565b96505060206125f889828a016123e0565b955050604061260989828a016123e0565b945050606087013567ffffffffffffffff81111561262657600080fd5b61263289828a01612337565b9350935050608061264589828a016123cb565b9150509295509295509295565b61265b81613066565b82525050565b61266a81613078565b82525050565b600061267b82612f35565b6126858185612f40565b93506126958185602086016130bb565b61269e816131f6565b840191505092915050565b60006126b6601e83612f40565b91507f544745202d204275796572206973206e6f742077686974656c697374656400006000830152602082019050919050565b60006126f6602383612f40565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061275c602683612f40565b91507f544745202d20416d6f756e7420657863656564732077686974656c697374206d60008301527f6178696d756d00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127c2602683612f40565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612828602283612f40565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061288e600d83612f40565b91507f496e76616c696420696e646578000000000000000000000000000000000000006000830152602082019050919050565b60006128ce602683612f40565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612934602883612f40565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299a602083612f40565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006129da601c83612f40565b91507f4f766572666c6f77206d6178207472616e7366657220616d6f756e74000000006000830152602082019050919050565b6000612a1a601183612f40565b91507f496e76616c696420616d6f756e744d61780000000000000000000000000000006000830152602082019050919050565b6000612a5a601283612f40565b91507f426c61636b6c69737465642073656c6c657200000000000000000000000000006000830152602082019050919050565b6000612a9a602583612f40565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b00602483612f40565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b66601483612f40565b91507f496e76616c69642077686974656c6973742873290000000000000000000000006000830152602082019050919050565b6000612ba6602583612f40565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612c08816130a4565b82525050565b612c17816130ae565b82525050565b6000602082019050612c326000830184612652565b92915050565b6000602082019050612c4d6000830184612661565b92915050565b60006020820190508181036000830152612c6d8184612670565b905092915050565b60006020820190508181036000830152612c8e816126a9565b9050919050565b60006020820190508181036000830152612cae816126e9565b9050919050565b60006020820190508181036000830152612cce8161274f565b9050919050565b60006020820190508181036000830152612cee816127b5565b9050919050565b60006020820190508181036000830152612d0e8161281b565b9050919050565b60006020820190508181036000830152612d2e81612881565b9050919050565b60006020820190508181036000830152612d4e816128c1565b9050919050565b60006020820190508181036000830152612d6e81612927565b9050919050565b60006020820190508181036000830152612d8e8161298d565b9050919050565b60006020820190508181036000830152612dae816129cd565b9050919050565b60006020820190508181036000830152612dce81612a0d565b9050919050565b60006020820190508181036000830152612dee81612a4d565b9050919050565b60006020820190508181036000830152612e0e81612a8d565b9050919050565b60006020820190508181036000830152612e2e81612af3565b9050919050565b60006020820190508181036000830152612e4e81612b59565b9050919050565b60006020820190508181036000830152612e6e81612b99565b9050919050565b6000602082019050612e8a6000830184612bff565b92915050565b6000604082019050612ea56000830185612bff565b612eb26020830184612bff565b9392505050565b600060c082019050612ece6000830189612bff565b612edb6020830188612bff565b612ee86040830187612bff565b612ef56060830186612bff565b612f026080830185612661565b612f0f60a0830184612bff565b979650505050505050565b6000602082019050612f2f6000830184612c0e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612f5c826130a4565b9150612f67836130a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9c57612f9b613169565b5b828201905092915050565b6000612fb2826130a4565b9150612fbd836130a4565b925082612fcd57612fcc613198565b5b828204905092915050565b6000612fe3826130a4565b9150612fee836130a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561302757613026613169565b5b828202905092915050565b600061303d826130a4565b9150613048836130a4565b92508282101561305b5761305a613169565b5b828203905092915050565b600061307182613084565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156130d95780820151818401526020810190506130be565b838111156130e8576000848401525b50505050565b6000600282049050600182168061310657607f821691505b6020821081141561311a576131196131c7565b5b50919050565b600061312b826130a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315e5761315d613169565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61321081613066565b811461321b57600080fd5b50565b61322781613078565b811461323257600080fd5b50565b61323e816130a4565b811461324957600080fd5b5056fea2646970667358221220a133741584ead57547e4a7ee99c7e70ff15d6e1d21dbacbd913e5797dc17779a64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063a9059cbb11610097578063deb7696511610071578063deb76965146104b3578063e4997dc5146104cf578063f2fde38b146104eb578063fe72423f146105075761018e565b8063a9059cbb14610437578063d543dbeb14610467578063dd62ed3e146104835761018e565b806370a082311461036e578063715018a61461039e5780638da5cb5b146103a857806395d89b41146103c65780639ae407e8146103e4578063a457c2d7146104075761018e565b8063313ce5671161014b578063395093511161012557806339509351146102bf5780633ecea6b2146102ef5780634838d1651461030d578063617d7ec21461033d5761018e565b8063313ce56714610267578063325eaac11461028557806336e8c9b3146102a35761018e565b806306fdde0314610193578063095ea7b3146101b15780630ecb93c0146101e157806318160ddd146101fd57806323b872dd1461021b5780632c0c74aa1461024b575b600080fd5b61019b610523565b6040516101a89190612c53565b60405180910390f35b6101cb60048036038101906101c69190612532565b6105b5565b6040516101d89190612c38565b60405180910390f35b6101fb60048036038101906101f691906123f5565b6105d3565b005b6102056106da565b6040516102129190612e75565b60405180910390f35b6102356004803603810190610230919061245a565b6106e4565b6040516102429190612c38565b60405180910390f35b610265600480360381019061026091906124a9565b6107e5565b005b61026f610a22565b60405161027c9190612f1a565b60405180910390f35b61028d610a2b565b60405161029a9190612e75565b60405180910390f35b6102bd60048036038101906102b89190612597565b610a31565b005b6102d960048036038101906102d49190612532565b610ab0565b6040516102e69190612c38565b60405180910390f35b6102f7610b5c565b6040516103049190612c1d565b60405180910390f35b610327600480360381019061032291906123f5565b610b82565b6040516103349190612c38565b60405180910390f35b61035760048036038101906103529190612597565b610ba2565b604051610365929190612e90565b60405180910390f35b610388600480360381019061038391906123f5565b610bd6565b6040516103959190612e75565b60405180910390f35b6103a6610c1f565b005b6103b0610d52565b6040516103bd9190612c1d565b60405180910390f35b6103ce610d7b565b6040516103db9190612c53565b60405180910390f35b6103ec610e0d565b6040516103fe96959493929190612eb9565b60405180910390f35b610421600480360381019061041c9190612532565b610f9d565b60405161042e9190612c38565b60405180910390f35b610451600480360381019061044c9190612532565b611091565b60405161045e9190612c38565b60405180910390f35b610481600480360381019061047c9190612597565b6110af565b005b61049d6004803603810190610498919061241e565b61112e565b6040516104aa9190612e75565b60405180910390f35b6104cd60048036038101906104c891906125c0565b6111b5565b005b6104e960048036038101906104e491906123f5565b611511565b005b610505600480360381019061050091906123f5565b611618565b005b610521600480360381019061051c919061256e565b6117ba565b005b606060048054610532906130ee565b80601f016020809104026020016040519081016040528092919081815260200182805461055e906130ee565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c96105c261184c565b8484611854565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166105f2610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90612d75565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc816040516106cf9190612c1d565b60405180910390a150565b6000600354905090565b60006106f1848484611a1f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061073c61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390612d55565b60405180910390fd5b6107d9856107c861184c565b85846107d49190613032565b611854565b60019150509392505050565b3373ffffffffffffffffffffffffffffffffffffffff16610804610d52565b73ffffffffffffffffffffffffffffffffffffffff161461085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190612d75565b60405180910390fd5b8181905084849050146108a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089990612e35565b60405180910390fd5b84600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000848490501115610a1b57600960006108fd91906122d7565b60005b84849050811015610a1957600960018160018154018082558091505003906000526020600020905050600060098281548110610965577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906004020190508585838181106109ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581600001819055508383838181106109f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358160010181905550508080610a1190613120565b915050610900565b505b5050505050565b60006012905090565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16610a50610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612d75565b60405180910390fd5b80600d8190555050565b6000610b52610abd61184c565b848460026000610acb61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4d9190612f51565b611854565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b60098181548110610bb257600080fd5b90600052602060002090600402016000915090508060000154908060010154905082565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610c3e610d52565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d8a906130ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906130ee565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000806000806000806000600a541115610f7f576000600a54905060005b600980549050811015610f7c57600060098281548110610e74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600402019050806000015483610e949190612f51565b9250824211610f6857600182610eaa9190612f51565b8160000154848360010154846002016000610ec361184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16856003016000610f1961184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054985098509850985098509850505050610f95565b508080610f7490613120565b915050610e2b565b50505b6000806000806000809550955095509550955095505b909192939495565b60008060026000610fac61184c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612e55565b60405180910390fd5b61108661107461184c565b8585846110819190613032565b611854565b600191505092915050565b60006110a561109e61184c565b8484611a1f565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166110ce610d52565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90612d75565b60405180910390fd5b80600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166111d4610d52565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190612d75565b60405180910390fd5b6009805490508610611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612d15565b60405180910390fd5b600084116112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90612db5565b60405180910390fd5b600986815481106112ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600001548514611357578460098781548110611341577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600001819055505b60098681548110611391577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600402016001015484146113fa5783600987815481106113e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600101819055505b60005b83839050811015611508578160098881548110611443577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060040201600201600086868581811061148f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114a491906123f5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150090613120565b9150506113fd565b50505050505050565b3373ffffffffffffffffffffffffffffffffffffffff16611530610d52565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90612d75565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c8160405161160d9190612c1d565b60405180910390a150565b3373ffffffffffffffffffffffffffffffffffffffff16611637610d52565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490612d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612cd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117d9610d52565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690612d75565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90612cf5565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a129190612e75565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690612df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690612c95565b60405180910390fd5b600860009054906101000a900460ff16611ccf57611b1b610d52565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b895750611b59610d52565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611bf2576064600c54611b9b6106da565b611ba59190612fd8565b611baf9190612fa7565b811115611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890612d95565b60405180910390fd5b5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7690612dd5565b60405180910390fd5b611c8a838383611e66565b42600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90612d35565b60405180910390fd5b8181611d629190613032565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df49190612f51565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e589190612e75565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480611ec857506000600980549050145b15611ed2576122d2565b6000600a54148015611f325750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611f8b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611f975750600081115b15611fa45742600a819055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561204f5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156122d157600061205e610e0d565b5050505050905060008111156122cf576000600960018361207f9190613032565b815481106120b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906004020190508060020160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90612c75565b60405180910390fd5b600081600101548260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156121f7578160030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482600101546121f49190613032565b90505b8084111561223a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223190612cb5565b60405180910390fd5b838260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122879190612f51565b8260030160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505b505b5b505050565b50805460008255600402906000526020600020908101906122f891906122fb565b50565b5b8082111561231e576000808201600090556001820160009055506004016122fc565b5090565b60008135905061233181613207565b92915050565b60008083601f84011261234957600080fd5b8235905067ffffffffffffffff81111561236257600080fd5b60208301915083602082028301111561237a57600080fd5b9250929050565b60008083601f84011261239357600080fd5b8235905067ffffffffffffffff8111156123ac57600080fd5b6020830191508360208202830111156123c457600080fd5b9250929050565b6000813590506123da8161321e565b92915050565b6000813590506123ef81613235565b92915050565b60006020828403121561240757600080fd5b600061241584828501612322565b91505092915050565b6000806040838503121561243157600080fd5b600061243f85828601612322565b925050602061245085828601612322565b9150509250929050565b60008060006060848603121561246f57600080fd5b600061247d86828701612322565b935050602061248e86828701612322565b925050604061249f868287016123e0565b9150509250925092565b6000806000806000606086880312156124c157600080fd5b60006124cf88828901612322565b955050602086013567ffffffffffffffff8111156124ec57600080fd5b6124f888828901612381565b9450945050604086013567ffffffffffffffff81111561251757600080fd5b61252388828901612381565b92509250509295509295909350565b6000806040838503121561254557600080fd5b600061255385828601612322565b9250506020612564858286016123e0565b9150509250929050565b60006020828403121561258057600080fd5b600061258e848285016123cb565b91505092915050565b6000602082840312156125a957600080fd5b60006125b7848285016123e0565b91505092915050565b60008060008060008060a087890312156125d957600080fd5b60006125e789828a016123e0565b96505060206125f889828a016123e0565b955050604061260989828a016123e0565b945050606087013567ffffffffffffffff81111561262657600080fd5b61263289828a01612337565b9350935050608061264589828a016123cb565b9150509295509295509295565b61265b81613066565b82525050565b61266a81613078565b82525050565b600061267b82612f35565b6126858185612f40565b93506126958185602086016130bb565b61269e816131f6565b840191505092915050565b60006126b6601e83612f40565b91507f544745202d204275796572206973206e6f742077686974656c697374656400006000830152602082019050919050565b60006126f6602383612f40565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061275c602683612f40565b91507f544745202d20416d6f756e7420657863656564732077686974656c697374206d60008301527f6178696d756d00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127c2602683612f40565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612828602283612f40565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061288e600d83612f40565b91507f496e76616c696420696e646578000000000000000000000000000000000000006000830152602082019050919050565b60006128ce602683612f40565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612934602883612f40565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061299a602083612f40565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006129da601c83612f40565b91507f4f766572666c6f77206d6178207472616e7366657220616d6f756e74000000006000830152602082019050919050565b6000612a1a601183612f40565b91507f496e76616c696420616d6f756e744d61780000000000000000000000000000006000830152602082019050919050565b6000612a5a601283612f40565b91507f426c61636b6c69737465642073656c6c657200000000000000000000000000006000830152602082019050919050565b6000612a9a602583612f40565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b00602483612f40565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b66601483612f40565b91507f496e76616c69642077686974656c6973742873290000000000000000000000006000830152602082019050919050565b6000612ba6602583612f40565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612c08816130a4565b82525050565b612c17816130ae565b82525050565b6000602082019050612c326000830184612652565b92915050565b6000602082019050612c4d6000830184612661565b92915050565b60006020820190508181036000830152612c6d8184612670565b905092915050565b60006020820190508181036000830152612c8e816126a9565b9050919050565b60006020820190508181036000830152612cae816126e9565b9050919050565b60006020820190508181036000830152612cce8161274f565b9050919050565b60006020820190508181036000830152612cee816127b5565b9050919050565b60006020820190508181036000830152612d0e8161281b565b9050919050565b60006020820190508181036000830152612d2e81612881565b9050919050565b60006020820190508181036000830152612d4e816128c1565b9050919050565b60006020820190508181036000830152612d6e81612927565b9050919050565b60006020820190508181036000830152612d8e8161298d565b9050919050565b60006020820190508181036000830152612dae816129cd565b9050919050565b60006020820190508181036000830152612dce81612a0d565b9050919050565b60006020820190508181036000830152612dee81612a4d565b9050919050565b60006020820190508181036000830152612e0e81612a8d565b9050919050565b60006020820190508181036000830152612e2e81612af3565b9050919050565b60006020820190508181036000830152612e4e81612b59565b9050919050565b60006020820190508181036000830152612e6e81612b99565b9050919050565b6000602082019050612e8a6000830184612bff565b92915050565b6000604082019050612ea56000830185612bff565b612eb26020830184612bff565b9392505050565b600060c082019050612ece6000830189612bff565b612edb6020830188612bff565b612ee86040830187612bff565b612ef56060830186612bff565b612f026080830185612661565b612f0f60a0830184612bff565b979650505050505050565b6000602082019050612f2f6000830184612c0e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612f5c826130a4565b9150612f67836130a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9c57612f9b613169565b5b828201905092915050565b6000612fb2826130a4565b9150612fbd836130a4565b925082612fcd57612fcc613198565b5b828204905092915050565b6000612fe3826130a4565b9150612fee836130a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561302757613026613169565b5b828202905092915050565b600061303d826130a4565b9150613048836130a4565b92508282101561305b5761305a613169565b5b828203905092915050565b600061307182613084565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156130d95780820151818401526020810190506130be565b838111156130e8576000848401525b50505050565b6000600282049050600182168061310657607f821691505b6020821081141561311a576131196131c7565b5b50919050565b600061312b826130a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315e5761315d613169565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61321081613066565b811461321b57600080fd5b50565b61322781613078565b811461323257600080fd5b50565b61323e816130a4565b811461324957600080fd5b5056fea2646970667358221220a133741584ead57547e4a7ee99c7e70ff15d6e1d21dbacbd913e5797dc17779a64736f6c63430008000033

Deployed Bytecode Sourcemap

7768:15800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9146:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11454:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18104:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10266:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12146:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18883:666;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10108:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8457:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23288:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13048:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8492:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8071:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8405:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;10437:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5988:148;;;:::i;:::-;;5339:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9365:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21044:732;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;13848:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10827:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23122:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11106:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19909:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18295:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6291:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23450:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9146:100;9200:13;9233:5;9226:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9146:100;:::o;11454:210::-;11573:4;11595:39;11604:12;:10;:12::i;:::-;11618:7;11627:6;11595:8;:39::i;:::-;11652:4;11645:11;;11454:210;;;;:::o;18104:132::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;18188:4:::1;18170:9;:15;18180:4;18170:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;18208:20;18223:4;18208:20;;;;;;:::i;:::-;;;;;;;;18104:132:::0;:::o;10266:108::-;10327:7;10354:12;;10347:19;;10266:108;:::o;12146:493::-;12286:4;12303:36;12313:6;12321:9;12332:6;12303:9;:36::i;:::-;12352:24;12379:11;:19;12391:6;12379:19;;;;;;;;;;;;;;;:33;12399:12;:10;:12::i;:::-;12379:33;;;;;;;;;;;;;;;;12352:60;;12465:6;12445:16;:26;;12423:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12550:57;12559:6;12567:12;:10;:12::i;:::-;12600:6;12581:16;:25;;;;:::i;:::-;12550:8;:57::i;:::-;12627:4;12620:11;;;12146:493;;;;;:::o;18883:666::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;19051:10:::1;;:17;;19031:9;;:16;;:37;19023:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19124:11;19106:15;;:29;;;;;;;;;;;;;;;;;;19170:1;19151:9;;:16;;:20;19148:394;;;19197:19;;19190:26;;;;:::i;:::-;19250:9;19245:284;19269:9;;:16;;19265:1;:20;19245:284;;;19311:19;:26;;;;;;;;;;;;;;;;;;;;;::::0;;19356:30:::1;19389:19;19409:1;19389:22;;;;;;;;;;;;;;;;;;;;;;;;;;19356:55;;19449:9;;19459:1;19449:12;;;;;;;;;;;;;;;;;;;;;19430:7;:16;;:31;;;;19500:10;;19511:1;19500:13;;;;;;;;;;;;;;;;;;;;;19480:7;:17;;:33;;;;19245:284;19287:3;;;;;:::i;:::-;;;;19245:284;;;;19148:394;18883:666:::0;;;;;:::o;10108:93::-;10166:5;10191:2;10184:9;;10108:93;:::o;8457:28::-;;;;:::o;23288:118::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23384:14:::1;23368:13;:30;;;;23288:118:::0;:::o;13048:297::-;13163:4;13185:130;13208:12;:10;:12::i;:::-;13235:7;13294:10;13257:11;:25;13269:12;:10;:12::i;:::-;13257:25;;;;;;;;;;;;;;;:34;13283:7;13257:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13185:8;:130::i;:::-;13333:4;13326:11;;13048:297;;;;:::o;8492:30::-;;;;;;;;;;;;;:::o;8071:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;8405:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10437:177::-;10556:7;10588:9;:18;10598:7;10588:18;;;;;;;;;;;;;;;;10581:25;;10437:177;;;:::o;5988:148::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6095:1:::1;6058:40;;6079:6;::::0;::::1;;;;;;;;6058:40;;;;;;;;;;;;6126:1;6109:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;5988:148::o:0;5339:87::-;5385:7;5412:6;;;;;;;;;;;5405:13;;5339:87;:::o;9365:104::-;9421:13;9454:7;9447:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9365:104;:::o;21044:732::-;21097:7;21106;21115;21124;21133:4;21139:7;21180:1;21164:13;;:17;21161:566;;;21200:28;21231:13;;21200:44;;21266:9;21261:453;21285:19;:26;;;;21281:1;:30;21261:453;;;21339:30;21372:19;21392:1;21372:22;;;;;;;;;;;;;;;;;;;;;;;;;;21339:55;;21461:7;:16;;;21438:20;:39;;;;:::i;:::-;21415:62;;21518:20;21499:15;:39;21496:202;;21571:1;21569;:3;;;;:::i;:::-;21574:7;:16;;;21592:20;21614:7;:17;;;21633:7;:17;;:31;21651:12;:10;:12::i;:::-;21633:31;;;;;;;;;;;;;;;;;;;;;;;;;21666:7;:17;;:31;21684:12;:10;:12::i;:::-;21666:31;;;;;;;;;;;;;;;;21561:137;;;;;;;;;;;;;;;;;21496:202;21261:453;21313:3;;;;;:::i;:::-;;;;21261:453;;;;21161:566;;21747:1;21750;21753;21756;21759:5;21766:1;21739:29;;;;;;;;;;;;21044:732;;;;;;;:::o;13848:446::-;13968:4;13990:24;14017:11;:25;14029:12;:10;:12::i;:::-;14017:25;;;;;;;;;;;;;;;:34;14043:7;14017:34;;;;;;;;;;;;;;;;13990:61;;14104:15;14084:16;:35;;14062:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14195:67;14204:12;:10;:12::i;:::-;14218:7;14246:15;14227:16;:34;;;;:::i;:::-;14195:8;:67::i;:::-;14282:4;14275:11;;;13848:446;;;;:::o;10827:216::-;10949:4;10971:42;10981:12;:10;:12::i;:::-;10995:9;11006:6;10971:9;:42::i;:::-;11031:4;11024:11;;10827:216;;;;:::o;23122:114::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23215:13:::1;23200:12;:28;;;;23122:114:::0;:::o;11106:201::-;11240:7;11272:11;:18;11284:5;11272:18;;;;;;;;;;;;;;;:27;11291:7;11272:27;;;;;;;;;;;;;;;;11265:34;;11106:201;;;;:::o;19909:674::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;20079:19:::1;:26;;;;20071:5;:34;20063:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20154:1;20142:9;:13;20134:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;20205:19;20225:5;20205:26;;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;20193:8;:47;20190:111;;20293:8;20255:19;20275:5;20255:26;;;;;;;;;;;;;;;;;;;;;;;;;;:35;;:46;;;;20190:111;20330:19;20350:5;20330:26;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;20317:9;:49;20314:115;;20420:9;20381:19;20401:5;20381:26;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;:48;;;;20314:115;20447:9;20442:134;20466:9;;:16;;20462:1;:20;20442:134;;;20557:7;20504:19;20524:5;20504:26;;;;;;;;;;;;;;;;;;;;;;;;;;:36;;:50;20541:9;;20551:1;20541:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20504:50;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20484:3;;;;;:::i;:::-;;;;20442:134;;;;19909:674:::0;;;;;;:::o;18295:141::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;18384:5:::1;18365:9;:16;18375:5;18365:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;18405:23;18422:5;18405:23;;;;;;:::i;:::-;;;;;;;;18295:141:::0;:::o;6291:281::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:1:::1;6394:22;;:8;:22;;;;6372:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6527:8;6498:38;;6519:6;::::0;::::1;;;;;;;;6498:38;;;;;;;;;;;;6556:8;6547:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6291:281:::0;:::o;23450:115::-;5570:10;5559:21;;:7;:5;:7::i;:::-;:21;;;5551:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23543:14:::1;23527:13;;:30;;;;;;;;;;;;;;;;;;23450:115:::0;:::o;3972:98::-;4025:7;4052:10;4045:17;;3972:98;:::o;17633:380::-;17786:1;17769:19;;:5;:19;;;;17761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17867:1;17848:21;;:7;:21;;;;17840:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17951:6;17921:11;:18;17933:5;17921:18;;;;;;;;;;;;;;;:27;17940:7;17921:27;;;;;;;;;;;;;;;:36;;;;17989:7;17973:32;;17982:5;17973:32;;;17998:6;17973:32;;;;;;:::i;:::-;;;;;;;;17633:380;;;:::o;14788:1084::-;14946:1;14928:20;;:6;:20;;;;14920:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15030:1;15009:23;;:9;:23;;;;15001:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15088:13;;;;;;;;;;;15083:459;;15132:7;:5;:7::i;:::-;15122:17;;:6;:17;;;;:41;;;;;15156:7;:5;:7::i;:::-;15143:20;;:9;:20;;;;15122:41;15118:230;;;15257:3;15241:12;;15225:13;:11;:13::i;:::-;:28;;;;:::i;:::-;15224:36;;;;:::i;:::-;15214:6;:46;;15184:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;15118:230;15371:9;:17;15381:6;15371:17;;;;;;;;;;;;;;;;;;;;;;;;;15370:18;15362:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;15426:45;15445:6;15453:9;15464:6;15426:18;:45::i;:::-;15515:15;15486;:26;15502:9;15486:26;;;;;;;;;;;;;;;:44;;;;15083:459;15554:21;15578:9;:17;15588:6;15578:17;;;;;;;;;;;;;;;;15554:41;;15645:6;15628:13;:23;;15606:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15764:6;15748:13;:22;;;;:::i;:::-;15728:9;:17;15738:6;15728:17;;;;;;;;;;;;;;;:42;;;;15805:6;15781:9;:20;15791:9;15781:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15846:9;15829:35;;15838:6;15829:35;;;15857:6;15829:35;;;;;;:::i;:::-;;;;;;;;14788:1084;;;;:::o;21902:1165::-;22033:1;22006:29;;:15;;;;;;;;;;;:29;;;:64;;;;22069:1;22039:19;:26;;;;:31;22006:64;22003:89;;;22085:7;;22003:89;22124:1;22107:13;;:18;:47;;;;;22139:15;;;;;;;;;;;22129:25;;:6;:25;;;;22107:47;:79;;;;;22171:15;;;;;;;;;;;22158:28;;:9;:28;;;22107:79;:93;;;;;22199:1;22190:6;:10;22107:93;22104:142;;;22231:15;22215:13;:31;;;;22104:142;22272:15;;;;;;;;;;;22262:25;;:6;:25;;;:57;;;;;22304:15;;;;;;;;;;;22291:28;;:9;:28;;;;22262:57;22259:799;;;22361:21;22391:22;:20;:22::i;:::-;22360:53;;;;;;;22449:1;22433:13;:17;22430:615;;;22473:30;22506:19;22540:1;22526:13;:15;;;;:::i;:::-;22506:36;;;;;;;;;;;;;;;;;;;;;;;;;;22473:69;;22571:7;:17;;:28;22589:9;22571:28;;;;;;;;;;;;;;;;;;;;;;;;;22563:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22655:23;22737:7;:17;;;22706:7;:17;;:28;22724:9;22706:28;;;;;;;;;;;;;;;;:48;22703:140;;;22815:7;:17;;:28;22833:9;22815:28;;;;;;;;;;;;;;;;22795:7;:17;;;:48;;;;:::i;:::-;22777:66;;22703:140;22882:15;22872:6;:25;;22864:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23021:6;22990:7;:17;;:28;23008:9;22990:28;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;22959:7;:17;;:28;22977:9;22959:28;;;;;;;;;;;;;;;:68;;;;22430:615;;;22259:799;;21902:1165;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;559:367::-;;;692:3;685:4;677:6;673:17;669:27;659:2;;710:1;707;700:12;659:2;746:6;733:20;723:30;;776:18;768:6;765:30;762:2;;;808:1;805;798:12;762:2;845:4;837:6;833:17;821:29;;899:3;891:4;883:6;879:17;869:8;865:32;862:41;859:2;;;916:1;913;906:12;859:2;649:277;;;;;:::o;932:133::-;;1013:6;1000:20;991:29;;1029:30;1053:5;1029:30;:::i;:::-;981:84;;;;:::o;1071:139::-;;1155:6;1142:20;1133:29;;1171:33;1198:5;1171:33;:::i;:::-;1123:87;;;;:::o;1216:262::-;;1324:2;1312:9;1303:7;1299:23;1295:32;1292:2;;;1340:1;1337;1330:12;1292:2;1383:1;1408:53;1453:7;1444:6;1433:9;1429:22;1408:53;:::i;:::-;1398:63;;1354:117;1282:196;;;;:::o;1484:407::-;;;1609:2;1597:9;1588:7;1584:23;1580:32;1577:2;;;1625:1;1622;1615:12;1577:2;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1567:324;;;;;:::o;1897:552::-;;;;2039:2;2027:9;2018:7;2014:23;2010:32;2007:2;;;2055:1;2052;2045:12;2007:2;2098:1;2123:53;2168:7;2159:6;2148:9;2144:22;2123:53;:::i;:::-;2113:63;;2069:117;2225:2;2251:53;2296:7;2287:6;2276:9;2272:22;2251:53;:::i;:::-;2241:63;;2196:118;2353:2;2379:53;2424:7;2415:6;2404:9;2400:22;2379:53;:::i;:::-;2369:63;;2324:118;1997:452;;;;;:::o;2455:878::-;;;;;;2667:2;2655:9;2646:7;2642:23;2638:32;2635:2;;;2683:1;2680;2673:12;2635:2;2726:1;2751:53;2796:7;2787:6;2776:9;2772:22;2751:53;:::i;:::-;2741:63;;2697:117;2881:2;2870:9;2866:18;2853:32;2912:18;2904:6;2901:30;2898:2;;;2944:1;2941;2934:12;2898:2;2980:80;3052:7;3043:6;3032:9;3028:22;2980:80;:::i;:::-;2962:98;;;;2824:246;3137:2;3126:9;3122:18;3109:32;3168:18;3160:6;3157:30;3154:2;;;3200:1;3197;3190:12;3154:2;3236:80;3308:7;3299:6;3288:9;3284:22;3236:80;:::i;:::-;3218:98;;;;3080:246;2625:708;;;;;;;;:::o;3339:407::-;;;3464:2;3452:9;3443:7;3439:23;3435:32;3432:2;;;3480:1;3477;3470:12;3432:2;3523:1;3548:53;3593:7;3584:6;3573:9;3569:22;3548:53;:::i;:::-;3538:63;;3494:117;3650:2;3676:53;3721:7;3712:6;3701:9;3697:22;3676:53;:::i;:::-;3666:63;;3621:118;3422:324;;;;;:::o;3752:256::-;;3857:2;3845:9;3836:7;3832:23;3828:32;3825:2;;;3873:1;3870;3863:12;3825:2;3916:1;3941:50;3983:7;3974:6;3963:9;3959:22;3941:50;:::i;:::-;3931:60;;3887:114;3815:193;;;;:::o;4014:262::-;;4122:2;4110:9;4101:7;4097:23;4093:32;4090:2;;;4138:1;4135;4128:12;4090:2;4181:1;4206:53;4251:7;4242:6;4231:9;4227:22;4206:53;:::i;:::-;4196:63;;4152:117;4080:196;;;;:::o;4282:1001::-;;;;;;;4490:3;4478:9;4469:7;4465:23;4461:33;4458:2;;;4507:1;4504;4497:12;4458:2;4550:1;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4521:117;4677:2;4703:53;4748:7;4739:6;4728:9;4724:22;4703:53;:::i;:::-;4693:63;;4648:118;4805:2;4831:53;4876:7;4867:6;4856:9;4852:22;4831:53;:::i;:::-;4821:63;;4776:118;4961:2;4950:9;4946:18;4933:32;4992:18;4984:6;4981:30;4978:2;;;5024:1;5021;5014:12;4978:2;5060:80;5132:7;5123:6;5112:9;5108:22;5060:80;:::i;:::-;5042:98;;;;4904:246;5189:3;5216:50;5258:7;5249:6;5238:9;5234:22;5216:50;:::i;:::-;5206:60;;5160:116;4448:835;;;;;;;;:::o;5289:118::-;5376:24;5394:5;5376:24;:::i;:::-;5371:3;5364:37;5354:53;;:::o;5413:109::-;5494:21;5509:5;5494:21;:::i;:::-;5489:3;5482:34;5472:50;;:::o;5528:364::-;;5644:39;5677:5;5644:39;:::i;:::-;5699:71;5763:6;5758:3;5699:71;:::i;:::-;5692:78;;5779:52;5824:6;5819:3;5812:4;5805:5;5801:16;5779:52;:::i;:::-;5856:29;5878:6;5856:29;:::i;:::-;5851:3;5847:39;5840:46;;5620:272;;;;;:::o;5898:328::-;;6061:67;6125:2;6120:3;6061:67;:::i;:::-;6054:74;;6158:32;6154:1;6149:3;6145:11;6138:53;6217:2;6212:3;6208:12;6201:19;;6044:182;;;:::o;6232:367::-;;6395:67;6459:2;6454:3;6395:67;:::i;:::-;6388:74;;6492:34;6488:1;6483:3;6479:11;6472:55;6558:5;6553:2;6548:3;6544:12;6537:27;6590:2;6585:3;6581:12;6574:19;;6378:221;;;:::o;6605:370::-;;6768:67;6832:2;6827:3;6768:67;:::i;:::-;6761:74;;6865:34;6861:1;6856:3;6852:11;6845:55;6931:8;6926:2;6921:3;6917:12;6910:30;6966:2;6961:3;6957:12;6950:19;;6751:224;;;:::o;6981:370::-;;7144:67;7208:2;7203:3;7144:67;:::i;:::-;7137:74;;7241:34;7237:1;7232:3;7228:11;7221:55;7307:8;7302:2;7297:3;7293:12;7286:30;7342:2;7337:3;7333:12;7326:19;;7127:224;;;:::o;7357:366::-;;7520:67;7584:2;7579:3;7520:67;:::i;:::-;7513:74;;7617:34;7613:1;7608:3;7604:11;7597:55;7683:4;7678:2;7673:3;7669:12;7662:26;7714:2;7709:3;7705:12;7698:19;;7503:220;;;:::o;7729:311::-;;7892:67;7956:2;7951:3;7892:67;:::i;:::-;7885:74;;7989:15;7985:1;7980:3;7976:11;7969:36;8031:2;8026:3;8022:12;8015:19;;7875:165;;;:::o;8046:370::-;;8209:67;8273:2;8268:3;8209:67;:::i;:::-;8202:74;;8306:34;8302:1;8297:3;8293:11;8286:55;8372:8;8367:2;8362:3;8358:12;8351:30;8407:2;8402:3;8398:12;8391:19;;8192:224;;;:::o;8422:372::-;;8585:67;8649:2;8644:3;8585:67;:::i;:::-;8578:74;;8682:34;8678:1;8673:3;8669:11;8662:55;8748:10;8743:2;8738:3;8734:12;8727:32;8785:2;8780:3;8776:12;8769:19;;8568:226;;;:::o;8800:330::-;;8963:67;9027:2;9022:3;8963:67;:::i;:::-;8956:74;;9060:34;9056:1;9051:3;9047:11;9040:55;9121:2;9116:3;9112:12;9105:19;;8946:184;;;:::o;9136:326::-;;9299:67;9363:2;9358:3;9299:67;:::i;:::-;9292:74;;9396:30;9392:1;9387:3;9383:11;9376:51;9453:2;9448:3;9444:12;9437:19;;9282:180;;;:::o;9468:315::-;;9631:67;9695:2;9690:3;9631:67;:::i;:::-;9624:74;;9728:19;9724:1;9719:3;9715:11;9708:40;9774:2;9769:3;9765:12;9758:19;;9614:169;;;:::o;9789:316::-;;9952:67;10016:2;10011:3;9952:67;:::i;:::-;9945:74;;10049:20;10045:1;10040:3;10036:11;10029:41;10096:2;10091:3;10087:12;10080:19;;9935:170;;;:::o;10111:369::-;;10274:67;10338:2;10333:3;10274:67;:::i;:::-;10267:74;;10371:34;10367:1;10362:3;10358:11;10351:55;10437:7;10432:2;10427:3;10423:12;10416:29;10471:2;10466:3;10462:12;10455:19;;10257:223;;;:::o;10486:368::-;;10649:67;10713:2;10708:3;10649:67;:::i;:::-;10642:74;;10746:34;10742:1;10737:3;10733:11;10726:55;10812:6;10807:2;10802:3;10798:12;10791:28;10845:2;10840:3;10836:12;10829:19;;10632:222;;;:::o;10860:318::-;;11023:67;11087:2;11082:3;11023:67;:::i;:::-;11016:74;;11120:22;11116:1;11111:3;11107:11;11100:43;11169:2;11164:3;11160:12;11153:19;;11006:172;;;:::o;11184:369::-;;11347:67;11411:2;11406:3;11347:67;:::i;:::-;11340:74;;11444:34;11440:1;11435:3;11431:11;11424:55;11510:7;11505:2;11500:3;11496:12;11489:29;11544:2;11539:3;11535:12;11528:19;;11330:223;;;:::o;11559:118::-;11646:24;11664:5;11646:24;:::i;:::-;11641:3;11634:37;11624:53;;:::o;11683:112::-;11766:22;11782:5;11766:22;:::i;:::-;11761:3;11754:35;11744:51;;:::o;11801:222::-;;11932:2;11921:9;11917:18;11909:26;;11945:71;12013:1;12002:9;11998:17;11989:6;11945:71;:::i;:::-;11899:124;;;;:::o;12029:210::-;;12154:2;12143:9;12139:18;12131:26;;12167:65;12229:1;12218:9;12214:17;12205:6;12167:65;:::i;:::-;12121:118;;;;:::o;12245:313::-;;12396:2;12385:9;12381:18;12373:26;;12445:9;12439:4;12435:20;12431:1;12420:9;12416:17;12409:47;12473:78;12546:4;12537:6;12473:78;:::i;:::-;12465:86;;12363:195;;;;:::o;12564:419::-;;12768:2;12757:9;12753:18;12745:26;;12817:9;12811:4;12807:20;12803:1;12792:9;12788:17;12781:47;12845:131;12971:4;12845:131;:::i;:::-;12837:139;;12735:248;;;:::o;12989:419::-;;13193:2;13182:9;13178:18;13170:26;;13242:9;13236:4;13232:20;13228:1;13217:9;13213:17;13206:47;13270:131;13396:4;13270:131;:::i;:::-;13262:139;;13160:248;;;:::o;13414:419::-;;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13585:248;;;:::o;13839:419::-;;14043:2;14032:9;14028:18;14020:26;;14092:9;14086:4;14082:20;14078:1;14067:9;14063:17;14056:47;14120:131;14246:4;14120:131;:::i;:::-;14112:139;;14010:248;;;:::o;14264:419::-;;14468:2;14457:9;14453:18;14445:26;;14517:9;14511:4;14507:20;14503:1;14492:9;14488:17;14481:47;14545:131;14671:4;14545:131;:::i;:::-;14537:139;;14435:248;;;:::o;14689:419::-;;14893:2;14882:9;14878:18;14870:26;;14942:9;14936:4;14932:20;14928:1;14917:9;14913:17;14906:47;14970:131;15096:4;14970:131;:::i;:::-;14962:139;;14860:248;;;:::o;15114:419::-;;15318:2;15307:9;15303:18;15295:26;;15367:9;15361:4;15357:20;15353:1;15342:9;15338:17;15331:47;15395:131;15521:4;15395:131;:::i;:::-;15387:139;;15285:248;;;:::o;15539:419::-;;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15710:248;;;:::o;15964:419::-;;16168:2;16157:9;16153:18;16145:26;;16217:9;16211:4;16207:20;16203:1;16192:9;16188:17;16181:47;16245:131;16371:4;16245:131;:::i;:::-;16237:139;;16135:248;;;:::o;16389:419::-;;16593:2;16582:9;16578:18;16570:26;;16642:9;16636:4;16632:20;16628:1;16617:9;16613:17;16606:47;16670:131;16796:4;16670:131;:::i;:::-;16662:139;;16560:248;;;:::o;16814:419::-;;17018:2;17007:9;17003:18;16995:26;;17067:9;17061:4;17057:20;17053:1;17042:9;17038:17;17031:47;17095:131;17221:4;17095:131;:::i;:::-;17087:139;;16985:248;;;:::o;17239:419::-;;17443:2;17432:9;17428:18;17420:26;;17492:9;17486:4;17482:20;17478:1;17467:9;17463:17;17456:47;17520:131;17646:4;17520:131;:::i;:::-;17512:139;;17410:248;;;:::o;17664:419::-;;17868:2;17857:9;17853:18;17845:26;;17917:9;17911:4;17907:20;17903:1;17892:9;17888:17;17881:47;17945:131;18071:4;17945:131;:::i;:::-;17937:139;;17835:248;;;:::o;18089:419::-;;18293:2;18282:9;18278:18;18270:26;;18342:9;18336:4;18332:20;18328:1;18317:9;18313:17;18306:47;18370:131;18496:4;18370:131;:::i;:::-;18362:139;;18260:248;;;:::o;18514:419::-;;18718:2;18707:9;18703:18;18695:26;;18767:9;18761:4;18757:20;18753:1;18742:9;18738:17;18731:47;18795:131;18921:4;18795:131;:::i;:::-;18787:139;;18685:248;;;:::o;18939:419::-;;19143:2;19132:9;19128:18;19120:26;;19192:9;19186:4;19182:20;19178:1;19167:9;19163:17;19156:47;19220:131;19346:4;19220:131;:::i;:::-;19212:139;;19110:248;;;:::o;19364:222::-;;19495:2;19484:9;19480:18;19472:26;;19508:71;19576:1;19565:9;19561:17;19552:6;19508:71;:::i;:::-;19462:124;;;;:::o;19592:332::-;;19751:2;19740:9;19736:18;19728:26;;19764:71;19832:1;19821:9;19817:17;19808:6;19764:71;:::i;:::-;19845:72;19913:2;19902:9;19898:18;19889:6;19845:72;:::i;:::-;19718:206;;;;;:::o;19930:763::-;;20195:3;20184:9;20180:19;20172:27;;20209:71;20277:1;20266:9;20262:17;20253:6;20209:71;:::i;:::-;20290:72;20358:2;20347:9;20343:18;20334:6;20290:72;:::i;:::-;20372;20440:2;20429:9;20425:18;20416:6;20372:72;:::i;:::-;20454;20522:2;20511:9;20507:18;20498:6;20454:72;:::i;:::-;20536:67;20598:3;20587:9;20583:19;20574:6;20536:67;:::i;:::-;20613:73;20681:3;20670:9;20666:19;20657:6;20613:73;:::i;:::-;20162:531;;;;;;;;;:::o;20699:214::-;;20826:2;20815:9;20811:18;20803:26;;20839:67;20903:1;20892:9;20888:17;20879:6;20839:67;:::i;:::-;20793:120;;;;:::o;20919:99::-;;21005:5;20999:12;20989:22;;20978:40;;;:::o;21024:169::-;;21142:6;21137:3;21130:19;21182:4;21177:3;21173:14;21158:29;;21120:73;;;;:::o;21199:305::-;;21258:20;21276:1;21258:20;:::i;:::-;21253:25;;21292:20;21310:1;21292:20;:::i;:::-;21287:25;;21446:1;21378:66;21374:74;21371:1;21368:81;21365:2;;;21452:18;;:::i;:::-;21365:2;21496:1;21493;21489:9;21482:16;;21243:261;;;;:::o;21510:185::-;;21567:20;21585:1;21567:20;:::i;:::-;21562:25;;21601:20;21619:1;21601:20;:::i;:::-;21596:25;;21640:1;21630:2;;21645:18;;:::i;:::-;21630:2;21687:1;21684;21680:9;21675:14;;21552:143;;;;:::o;21701:348::-;;21764:20;21782:1;21764:20;:::i;:::-;21759:25;;21798:20;21816:1;21798:20;:::i;:::-;21793:25;;21986:1;21918:66;21914:74;21911:1;21908:81;21903:1;21896:9;21889:17;21885:105;21882:2;;;21993:18;;:::i;:::-;21882:2;22041:1;22038;22034:9;22023:20;;21749:300;;;;:::o;22055:191::-;;22115:20;22133:1;22115:20;:::i;:::-;22110:25;;22149:20;22167:1;22149:20;:::i;:::-;22144:25;;22188:1;22185;22182:8;22179:2;;;22193:18;;:::i;:::-;22179:2;22238:1;22235;22231:9;22223:17;;22100:146;;;;:::o;22252:96::-;;22318:24;22336:5;22318:24;:::i;:::-;22307:35;;22297:51;;;:::o;22354:90::-;;22431:5;22424:13;22417:21;22406:32;;22396:48;;;:::o;22450:126::-;;22527:42;22520:5;22516:54;22505:65;;22495:81;;;:::o;22582:77::-;;22648:5;22637:16;;22627:32;;;:::o;22665:86::-;;22740:4;22733:5;22729:16;22718:27;;22708:43;;;:::o;22757:307::-;22825:1;22835:113;22849:6;22846:1;22843:13;22835:113;;;22934:1;22929:3;22925:11;22919:18;22915:1;22910:3;22906:11;22899:39;22871:2;22868:1;22864:10;22859:15;;22835:113;;;22966:6;22963:1;22960:13;22957:2;;;23046:1;23037:6;23032:3;23028:16;23021:27;22957:2;22806:258;;;;:::o;23070:320::-;;23151:1;23145:4;23141:12;23131:22;;23198:1;23192:4;23188:12;23219:18;23209:2;;23275:4;23267:6;23263:17;23253:27;;23209:2;23337;23329:6;23326:14;23306:18;23303:38;23300:2;;;23356:18;;:::i;:::-;23300:2;23121:269;;;;:::o;23396:233::-;;23458:24;23476:5;23458:24;:::i;:::-;23449:33;;23504:66;23497:5;23494:77;23491:2;;;23574:18;;:::i;:::-;23491:2;23621:1;23614:5;23610:13;23603:20;;23439:190;;;:::o;23635:180::-;23683:77;23680:1;23673:88;23780:4;23777:1;23770:15;23804:4;23801:1;23794:15;23821:180;23869:77;23866:1;23859:88;23966:4;23963:1;23956:15;23990:4;23987:1;23980:15;24007:180;24055:77;24052:1;24045:88;24152:4;24149:1;24142:15;24176:4;24173:1;24166:15;24193:102;;24285:2;24281:7;24276:2;24269:5;24265:14;24261:28;24251:38;;24241:54;;;:::o;24301:122::-;24374:24;24392:5;24374:24;:::i;:::-;24367:5;24364:35;24354:2;;24413:1;24410;24403:12;24354:2;24344:79;:::o;24429:116::-;24499:21;24514:5;24499:21;:::i;:::-;24492:5;24489:32;24479:2;;24535:1;24532;24525:12;24479:2;24469:76;:::o;24551:122::-;24624:24;24642:5;24624:24;:::i;:::-;24617:5;24614:35;24604:2;;24663:1;24660;24653:12;24604:2;24594:79;:::o

Swarm Source

ipfs://a133741584ead57547e4a7ee99c7e70ff15d6e1d21dbacbd913e5797dc17779a
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.