ETH Price: $2,453.66 (+0.58%)

Token

Half Cult DAO (Cult0.5)
 

Overview

Max Total Supply

1,000,000 Cult0.5

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,186.714911235660325515 Cult0.5

Value
$0.00
0xd402ab39faebd368eb4f3f5920b5657e165325fc
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:
HalfCultDAO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-08
*/

// SPDX-License-Identifier: MIT
/*

 https://t.me/HalfCultDAO

*/
pragma solidity ^0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract HalfCultDAO is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public CULT = 0xf0f9D895aCa5c8678f706FB8216fa22957685A13;

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Half Cult DAO", "Cult0.5") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), CULT);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buyDevFee = 5;

        uint256 _sellDevFee = 5;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyTotalFees = buyDevFee;

        sellDevFee = _sellDevFee;
        sellTotalFees = sellDevFee;

        devWallet = address(0x5BF09C92F156b340CE8588c41aDF3e7fF4f227FB);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        buyDevFee = 85;
        buyTotalFees = buyDevFee;
         sellDevFee = 90;
        sellTotalFees = sellDevFee;
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyTotalFees = buyDevFee;
        require(buyTotalFees <= 100, "");
    }

    function updateSellFees(
        uint256 _devFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellTotalFees = sellDevFee;
        require(sellTotalFees <= 100, "");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForCULT(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = CULT;

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CULT
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForCULT(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"CULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273f0f9d895aca5c8678f706fb8216fa22957685a13600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600d81526020017f48616c662043756c742044414f000000000000000000000000000000000000008152506040518060400160405280600781526020017f43756c74302e3500000000000000000000000000000000000000000000000000815250816003908162000135919062000bea565b50806004908162000147919062000bea565b5050506200016a6200015e620004d260201b60201c565b620004da60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620005a060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000d3b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000d7e565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000d3b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a0516001620005a060201b60201c565b600060059050600060059050600069d3c21bcecceda10000009050606460028262000354919062000dda565b62000360919062000e54565b600881905550606460028262000377919062000dda565b62000383919062000e54565b600a819055506127106005826200039b919062000dda565b620003a7919062000e54565b60098190555082600d81905550600d54600c8190555081600f81905550600f54600e81905550735bf09c92f156b340ce8588c41adf3e7ff4f227fb600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000444620004366200068a60201b60201c565b6001620006b460201b60201c565b62000457306001620006b460201b60201c565b6200046c61dead6001620006b460201b60201c565b6200048e620004806200068a60201b60201c565b6001620005a060201b60201c565b620004a1306001620005a060201b60201c565b620004b661dead6001620005a060201b60201c565b620004c83382620007ee60201b60201c565b5050505062001024565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005b0620004d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005d66200068a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200062f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006269062000eed565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006c4620004d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006ea6200068a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073a9062000eed565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007e2919062000f2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008579062000f99565b60405180910390fd5b62000874600083836200096660201b60201c565b806002600082825462000888919062000fbb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008df919062000fbb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000946919062001007565b60405180910390a362000962600083836200096b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009f257607f821691505b60208210810362000a085762000a07620009aa565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a33565b62000a7e868362000a33565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000acb62000ac562000abf8462000a96565b62000aa0565b62000a96565b9050919050565b6000819050919050565b62000ae78362000aaa565b62000aff62000af68262000ad2565b84845462000a40565b825550505050565b600090565b62000b1662000b07565b62000b2381848462000adc565b505050565b5b8181101562000b4b5762000b3f60008262000b0c565b60018101905062000b29565b5050565b601f82111562000b9a5762000b648162000a0e565b62000b6f8462000a23565b8101602085101562000b7f578190505b62000b9762000b8e8562000a23565b83018262000b28565b50505b505050565b600082821c905092915050565b600062000bbf6000198460080262000b9f565b1980831691505092915050565b600062000bda838362000bac565b9150826002028217905092915050565b62000bf58262000970565b67ffffffffffffffff81111562000c115762000c106200097b565b5b62000c1d8254620009d9565b62000c2a82828562000b4f565b600060209050601f83116001811462000c62576000841562000c4d578287015190505b62000c59858262000bcc565b86555062000cc9565b601f19841662000c728662000a0e565b60005b8281101562000c9c5784890151825560018201915060208501945060208101905062000c75565b8683101562000cbc578489015162000cb8601f89168262000bac565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d038262000cd6565b9050919050565b62000d158162000cf6565b811462000d2157600080fd5b50565b60008151905062000d358162000d0a565b92915050565b60006020828403121562000d545762000d5362000cd1565b5b600062000d648482850162000d24565b91505092915050565b62000d788162000cf6565b82525050565b600060408201905062000d95600083018562000d6d565b62000da4602083018462000d6d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000de78262000a96565b915062000df48362000a96565b925082820262000e048162000a96565b9150828204841483151762000e1e5762000e1d62000dab565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e618262000a96565b915062000e6e8362000a96565b92508262000e815762000e8062000e25565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ed560208362000e8c565b915062000ee28262000e9d565b602082019050919050565b6000602082019050818103600083015262000f088162000ec6565b9050919050565b60008115159050919050565b62000f268162000f0f565b82525050565b600060208201905062000f43600083018462000f1b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f81601f8362000e8c565b915062000f8e8262000f49565b602082019050919050565b6000602082019050818103600083015262000fb48162000f72565b9050919050565b600062000fc88262000a96565b915062000fd58362000a96565b925082820190508082111562000ff05762000fef62000dab565b5b92915050565b620010018162000a96565b82525050565b60006020820190506200101e600083018462000ff6565b92915050565b60805160a051613abd6200107460003960008181610dab01528181611eee015281816121370152818161234001526123ee015260008181610a2b015281816129b001526129d70152613abd6000f3fe60806040526004361061023f5760003560e01c80637571336a1161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610874578063e2f45605146108b1578063eba4c333146108dc578063f2fde38b14610905578063f8b45b051461092e57610246565b8063c02466681461078f578063c18bc195146107b8578063c8c8ebe4146107e1578063d257b34f1461080c578063d85ba0631461084957610246565b806395d89b41116100f257806395d89b41146106a65780639c3b4fdc146106d1578063a0d82dc5146106fc578063a9059cbb14610727578063bbc0c7421461076457610246565b80637571336a146105e75780638a8c523c146106105780638da5cb5b146106275780638ea5220f14610652578063924de9b71461067d57610246565b806349bd5a5e116101bc57806370a082311161018057806370a082311461051457806370ab41ad14610551578063715018a61461057c57806371fc468814610593578063751039fc146105bc57610246565b806349bd5a5e1461042b5780634a62bb65146104565780634fbee193146104815780636a486a8e146104be5780636ddd1713146104e957610246565b80631816467f116102035780631816467f14610346578063203e727e1461036f57806323b872dd1461039857806327c8f835146103d5578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b31461027657806310d5de53146102b35780631694505e146102f057806318160ddd1461031b57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610959565b60405161026d9190612b1f565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612bda565b6109eb565b6040516102aa9190612c35565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612c50565b610a09565b6040516102e79190612c35565b60405180910390f35b3480156102fc57600080fd5b50610305610a29565b6040516103129190612cdc565b60405180910390f35b34801561032757600080fd5b50610330610a4d565b60405161033d9190612d06565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612c50565b610a57565b005b34801561037b57600080fd5b5061039660048036038101906103919190612d21565b610b93565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d4e565b610ca2565b6040516103cc9190612c35565b60405180910390f35b3480156103e157600080fd5b506103ea610d9a565b6040516103f79190612db0565b60405180910390f35b34801561040c57600080fd5b50610415610da0565b6040516104229190612de7565b60405180910390f35b34801561043757600080fd5b50610440610da9565b60405161044d9190612db0565b60405180910390f35b34801561046257600080fd5b5061046b610dcd565b6040516104789190612c35565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612c50565b610de0565b6040516104b59190612c35565b60405180910390f35b3480156104ca57600080fd5b506104d3610e36565b6040516104e09190612d06565b60405180910390f35b3480156104f557600080fd5b506104fe610e3c565b60405161050b9190612c35565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612c50565b610e4f565b6040516105489190612d06565b60405180910390f35b34801561055d57600080fd5b50610566610e97565b6040516105739190612db0565b60405180910390f35b34801561058857600080fd5b50610591610ebd565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612d21565b610f45565b005b3480156105c857600080fd5b506105d161101a565b6040516105de9190612c35565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612e2e565b6110ba565b005b34801561061c57600080fd5b50610625611191565b005b34801561063357600080fd5b5061063c611267565b6040516106499190612db0565b60405180910390f35b34801561065e57600080fd5b50610667611291565b6040516106749190612db0565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612e6e565b6112b7565b005b3480156106b257600080fd5b506106bb611350565b6040516106c89190612b1f565b60405180910390f35b3480156106dd57600080fd5b506106e66113e2565b6040516106f39190612d06565b60405180910390f35b34801561070857600080fd5b506107116113e8565b60405161071e9190612d06565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612bda565b6113ee565b60405161075b9190612c35565b60405180910390f35b34801561077057600080fd5b5061077961140c565b6040516107869190612c35565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612e2e565b61141f565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612d21565b611544565b005b3480156107ed57600080fd5b506107f6611653565b6040516108039190612d06565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612d21565b611659565b6040516108409190612c35565b60405180910390f35b34801561085557600080fd5b5061085e6117ae565b60405161086b9190612d06565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190612e9b565b6117b4565b6040516108a89190612d06565b60405180910390f35b3480156108bd57600080fd5b506108c661183b565b6040516108d39190612d06565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612d21565b611841565b005b34801561091157600080fd5b5061092c60048036038101906109279190612c50565b611916565b005b34801561093a57600080fd5b50610943611a0d565b6040516109509190612d06565b60405180910390f35b60606003805461096890612f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461099490612f0a565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109ff6109f8611a13565b8484611a1b565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610a5f611a13565b73ffffffffffffffffffffffffffffffffffffffff16610a7d611267565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612f87565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b9b611a13565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611267565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690612f87565b60405180910390fd5b670de0b6b3a76400006103e86001610c25610a4d565b610c2f9190612fd6565b610c399190613047565b610c439190613047565b811015610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130ea565b60405180910390fd5b670de0b6b3a764000081610c999190612fd6565b60088190555050565b6000610caf848484611be4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cfa611a13565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061317c565b60405180910390fd5b610d8e85610d86611a13565b858403611a1b565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ec5611a13565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611267565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612f87565b60405180910390fd5b610f4360006124d1565b565b610f4d611a13565b73ffffffffffffffffffffffffffffffffffffffff16610f6b611267565b73ffffffffffffffffffffffffffffffffffffffff1614610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890612f87565b60405180910390fd5b80600d81905550600d54600c819055506064600c541115611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906131c2565b60405180910390fd5b50565b6000611024611a13565b73ffffffffffffffffffffffffffffffffffffffff16611042611267565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90612f87565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c2611a13565b73ffffffffffffffffffffffffffffffffffffffff166110e0611267565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90612f87565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611199611a13565b73ffffffffffffffffffffffffffffffffffffffff166111b7611267565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612f87565b60405180910390fd5b6055600d81905550600d54600c81905550605a600f81905550600f54600e819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112bf611a13565b73ffffffffffffffffffffffffffffffffffffffff166112dd611267565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90612f87565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461135f90612f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461138b90612f0a565b80156113d85780601f106113ad576101008083540402835291602001916113d8565b820191906000526020600020905b8154815290600101906020018083116113bb57829003601f168201915b5050505050905090565b600d5481565b600f5481565b60006114026113fb611a13565b8484611be4565b6001905092915050565b600b60019054906101000a900460ff1681565b611427611a13565b73ffffffffffffffffffffffffffffffffffffffff16611445611267565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290612f87565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115389190612c35565b60405180910390a25050565b61154c611a13565b73ffffffffffffffffffffffffffffffffffffffff1661156a611267565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612f87565b60405180910390fd5b670de0b6b3a76400006103e860056115d6610a4d565b6115e09190612fd6565b6115ea9190613047565b6115f49190613047565b811015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613254565b60405180910390fd5b670de0b6b3a76400008161164a9190612fd6565b600a8190555050565b60085481565b6000611663611a13565b73ffffffffffffffffffffffffffffffffffffffff16611681611267565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612f87565b60405180910390fd5b620186a060016116e5610a4d565b6116ef9190612fd6565b6116f99190613047565b82101561173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906132e6565b60405180910390fd5b6103e86005611748610a4d565b6117529190612fd6565b61175c9190613047565b82111561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590613378565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611849611a13565b73ffffffffffffffffffffffffffffffffffffffff16611867611267565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612f87565b60405180910390fd5b80600f81905550600f54600e819055506064600e541115611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906131c2565b60405180910390fd5b50565b61191e611a13565b73ffffffffffffffffffffffffffffffffffffffff1661193c611267565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061340a565b60405180910390fd5b611a0a816124d1565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a819061349c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af09061352e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bd79190612d06565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613652565b60405180910390fd5b60008103611cdb57611cd683836000612597565b6124cc565b600b60009054906101000a900460ff16156120e557611cf8611267565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d665750611d36611267565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611df25750600660149054906101000a900460ff16155b156120e457600b60019054906101000a900460ff16611eec57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eac5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906136be565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f915750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561203857600854811115611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613750565b60405180910390fd5b600a54611fe783610e4f565b82611ff29190613770565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906137f0565b60405180910390fd5b6120e3565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120e257600a5461209583610e4f565b826120a09190613770565b11156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906137f0565b60405180910390fd5b5b5b5b5b60006120f030610e4f565b9050600060095482101590508080156121155750600b60029054906101000a900460ff165b801561212e5750600660149054906101000a900460ff16155b801561218557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121db5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122315750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612275576001600660146101000a81548160ff021916908315150217905550612259612816565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061232b5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561233557600090505b60008082156124bb577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561239b57506000600e54115b156123ec576123c860646123ba600e548961286690919063ffffffff16565b61287c90919063ffffffff16565b9150600e54600f54836123db9190612fd6565b6123e59190613047565b9050612497565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561244957506000600c54115b15612496576124766064612468600c548961286690919063ffffffff16565b61287c90919063ffffffff16565b9150600c54600d54836124899190612fd6565b6124939190613047565b90505b5b60008211156124ac576124ab883084612597565b5b81866124b89190613810565b95505b6124c6888888612597565b50505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90613652565b60405180910390fd5b612680838383612892565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd906138b6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127999190613770565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127fd9190612d06565b60405180910390a3612810848484612897565b50505050565b600061282130610e4f565b9050600081036128315750612864565b60146009546128409190612fd6565b8111156128595760146009546128569190612fd6565b90505b6128628161289c565b505b565b600081836128749190612fd6565b905092915050565b6000818361288a9190613047565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156128b9576128b86138d6565b5b6040519080825280602002602001820160405280156128e75781602001602082028036833780820191505090505b50905030816000815181106128ff576128fe613905565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106129705761296f613905565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129d5307f000000000000000000000000000000000000000000000000000000000000000084611a1b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612a59959493929190613a2d565b600060405180830381600087803b158015612a7357600080fd5b505af1158015612a87573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ac9578082015181840152602081019050612aae565b60008484015250505050565b6000601f19601f8301169050919050565b6000612af182612a8f565b612afb8185612a9a565b9350612b0b818560208601612aab565b612b1481612ad5565b840191505092915050565b60006020820190508181036000830152612b398184612ae6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7182612b46565b9050919050565b612b8181612b66565b8114612b8c57600080fd5b50565b600081359050612b9e81612b78565b92915050565b6000819050919050565b612bb781612ba4565b8114612bc257600080fd5b50565b600081359050612bd481612bae565b92915050565b60008060408385031215612bf157612bf0612b41565b5b6000612bff85828601612b8f565b9250506020612c1085828601612bc5565b9150509250929050565b60008115159050919050565b612c2f81612c1a565b82525050565b6000602082019050612c4a6000830184612c26565b92915050565b600060208284031215612c6657612c65612b41565b5b6000612c7484828501612b8f565b91505092915050565b6000819050919050565b6000612ca2612c9d612c9884612b46565b612c7d565b612b46565b9050919050565b6000612cb482612c87565b9050919050565b6000612cc682612ca9565b9050919050565b612cd681612cbb565b82525050565b6000602082019050612cf16000830184612ccd565b92915050565b612d0081612ba4565b82525050565b6000602082019050612d1b6000830184612cf7565b92915050565b600060208284031215612d3757612d36612b41565b5b6000612d4584828501612bc5565b91505092915050565b600080600060608486031215612d6757612d66612b41565b5b6000612d7586828701612b8f565b9350506020612d8686828701612b8f565b9250506040612d9786828701612bc5565b9150509250925092565b612daa81612b66565b82525050565b6000602082019050612dc56000830184612da1565b92915050565b600060ff82169050919050565b612de181612dcb565b82525050565b6000602082019050612dfc6000830184612dd8565b92915050565b612e0b81612c1a565b8114612e1657600080fd5b50565b600081359050612e2881612e02565b92915050565b60008060408385031215612e4557612e44612b41565b5b6000612e5385828601612b8f565b9250506020612e6485828601612e19565b9150509250929050565b600060208284031215612e8457612e83612b41565b5b6000612e9284828501612e19565b91505092915050565b60008060408385031215612eb257612eb1612b41565b5b6000612ec085828601612b8f565b9250506020612ed185828601612b8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2257607f821691505b602082108103612f3557612f34612edb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f71602083612a9a565b9150612f7c82612f3b565b602082019050919050565b60006020820190508181036000830152612fa081612f64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe182612ba4565b9150612fec83612ba4565b9250828202612ffa81612ba4565b9150828204841483151761301157613010612fa7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305282612ba4565b915061305d83612ba4565b92508261306d5761306c613018565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006130d4602f83612a9a565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613166602883612a9a565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b50565b60006131ac600083612a9a565b91506131b78261319c565b600082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061323e602483612a9a565b9150613249826131e2565b604082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006132d0603583612a9a565b91506132db82613274565b604082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613362603483612a9a565b915061336d82613306565b604082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133f4602683612a9a565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613486602483612a9a565b91506134918261342a565b604082019050919050565b600060208201905081810360008301526134b581613479565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613518602283612a9a565b9150613523826134bc565b604082019050919050565b600060208201905081810360008301526135478161350b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135aa602583612a9a565b91506135b58261354e565b604082019050919050565b600060208201905081810360008301526135d98161359d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061363c602383612a9a565b9150613647826135e0565b604082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136a8601683612a9a565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061373a603583612a9a565b9150613745826136de565b604082019050919050565b600060208201905081810360008301526137698161372d565b9050919050565b600061377b82612ba4565b915061378683612ba4565b925082820190508082111561379e5761379d612fa7565b5b92915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006137da601383612a9a565b91506137e5826137a4565b602082019050919050565b60006020820190508181036000830152613809816137cd565b9050919050565b600061381b82612ba4565b915061382683612ba4565b925082820390508181111561383e5761383d612fa7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138a0602683612a9a565b91506138ab82613844565b604082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061395961395461394f84613934565b612c7d565b612ba4565b9050919050565b6139698161393e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a481612b66565b82525050565b60006139b6838361399b565b60208301905092915050565b6000602082019050919050565b60006139da8261396f565b6139e4818561397a565b93506139ef8361398b565b8060005b83811015613a20578151613a0788826139aa565b9750613a12836139c2565b9250506001810190506139f3565b5085935050505092915050565b600060a082019050613a426000830188612cf7565b613a4f6020830187613960565b8181036040830152613a6181866139cf565b9050613a706060830185612da1565b613a7d6080830184612cf7565b969550505050505056fea2646970667358221220da7a8032a67d1871728ca91b450682dc766ec798f5d9e761cd5144c00d85dff164736f6c63430008110033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80637571336a1161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610874578063e2f45605146108b1578063eba4c333146108dc578063f2fde38b14610905578063f8b45b051461092e57610246565b8063c02466681461078f578063c18bc195146107b8578063c8c8ebe4146107e1578063d257b34f1461080c578063d85ba0631461084957610246565b806395d89b41116100f257806395d89b41146106a65780639c3b4fdc146106d1578063a0d82dc5146106fc578063a9059cbb14610727578063bbc0c7421461076457610246565b80637571336a146105e75780638a8c523c146106105780638da5cb5b146106275780638ea5220f14610652578063924de9b71461067d57610246565b806349bd5a5e116101bc57806370a082311161018057806370a082311461051457806370ab41ad14610551578063715018a61461057c57806371fc468814610593578063751039fc146105bc57610246565b806349bd5a5e1461042b5780634a62bb65146104565780634fbee193146104815780636a486a8e146104be5780636ddd1713146104e957610246565b80631816467f116102035780631816467f14610346578063203e727e1461036f57806323b872dd1461039857806327c8f835146103d5578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b31461027657806310d5de53146102b35780631694505e146102f057806318160ddd1461031b57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610959565b60405161026d9190612b1f565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612bda565b6109eb565b6040516102aa9190612c35565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612c50565b610a09565b6040516102e79190612c35565b60405180910390f35b3480156102fc57600080fd5b50610305610a29565b6040516103129190612cdc565b60405180910390f35b34801561032757600080fd5b50610330610a4d565b60405161033d9190612d06565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612c50565b610a57565b005b34801561037b57600080fd5b5061039660048036038101906103919190612d21565b610b93565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612d4e565b610ca2565b6040516103cc9190612c35565b60405180910390f35b3480156103e157600080fd5b506103ea610d9a565b6040516103f79190612db0565b60405180910390f35b34801561040c57600080fd5b50610415610da0565b6040516104229190612de7565b60405180910390f35b34801561043757600080fd5b50610440610da9565b60405161044d9190612db0565b60405180910390f35b34801561046257600080fd5b5061046b610dcd565b6040516104789190612c35565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612c50565b610de0565b6040516104b59190612c35565b60405180910390f35b3480156104ca57600080fd5b506104d3610e36565b6040516104e09190612d06565b60405180910390f35b3480156104f557600080fd5b506104fe610e3c565b60405161050b9190612c35565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612c50565b610e4f565b6040516105489190612d06565b60405180910390f35b34801561055d57600080fd5b50610566610e97565b6040516105739190612db0565b60405180910390f35b34801561058857600080fd5b50610591610ebd565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612d21565b610f45565b005b3480156105c857600080fd5b506105d161101a565b6040516105de9190612c35565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190612e2e565b6110ba565b005b34801561061c57600080fd5b50610625611191565b005b34801561063357600080fd5b5061063c611267565b6040516106499190612db0565b60405180910390f35b34801561065e57600080fd5b50610667611291565b6040516106749190612db0565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612e6e565b6112b7565b005b3480156106b257600080fd5b506106bb611350565b6040516106c89190612b1f565b60405180910390f35b3480156106dd57600080fd5b506106e66113e2565b6040516106f39190612d06565b60405180910390f35b34801561070857600080fd5b506107116113e8565b60405161071e9190612d06565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612bda565b6113ee565b60405161075b9190612c35565b60405180910390f35b34801561077057600080fd5b5061077961140c565b6040516107869190612c35565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612e2e565b61141f565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612d21565b611544565b005b3480156107ed57600080fd5b506107f6611653565b6040516108039190612d06565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612d21565b611659565b6040516108409190612c35565b60405180910390f35b34801561085557600080fd5b5061085e6117ae565b60405161086b9190612d06565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190612e9b565b6117b4565b6040516108a89190612d06565b60405180910390f35b3480156108bd57600080fd5b506108c661183b565b6040516108d39190612d06565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612d21565b611841565b005b34801561091157600080fd5b5061092c60048036038101906109279190612c50565b611916565b005b34801561093a57600080fd5b50610943611a0d565b6040516109509190612d06565b60405180910390f35b60606003805461096890612f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461099490612f0a565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109ff6109f8611a13565b8484611a1b565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610a5f611a13565b73ffffffffffffffffffffffffffffffffffffffff16610a7d611267565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612f87565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b9b611a13565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611267565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690612f87565b60405180910390fd5b670de0b6b3a76400006103e86001610c25610a4d565b610c2f9190612fd6565b610c399190613047565b610c439190613047565b811015610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c906130ea565b60405180910390fd5b670de0b6b3a764000081610c999190612fd6565b60088190555050565b6000610caf848484611be4565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cfa611a13565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061317c565b60405180910390fd5b610d8e85610d86611a13565b858403611a1b565b60019150509392505050565b61dead81565b60006012905090565b7f0000000000000000000000009b497880ad6fa674959e352c5e54d8b31d526e6481565b600b60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ec5611a13565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611267565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612f87565b60405180910390fd5b610f4360006124d1565b565b610f4d611a13565b73ffffffffffffffffffffffffffffffffffffffff16610f6b611267565b73ffffffffffffffffffffffffffffffffffffffff1614610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890612f87565b60405180910390fd5b80600d81905550600d54600c819055506064600c541115611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906131c2565b60405180910390fd5b50565b6000611024611a13565b73ffffffffffffffffffffffffffffffffffffffff16611042611267565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90612f87565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110c2611a13565b73ffffffffffffffffffffffffffffffffffffffff166110e0611267565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90612f87565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611199611a13565b73ffffffffffffffffffffffffffffffffffffffff166111b7611267565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612f87565b60405180910390fd5b6055600d81905550600d54600c81905550605a600f81905550600f54600e819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112bf611a13565b73ffffffffffffffffffffffffffffffffffffffff166112dd611267565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90612f87565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461135f90612f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461138b90612f0a565b80156113d85780601f106113ad576101008083540402835291602001916113d8565b820191906000526020600020905b8154815290600101906020018083116113bb57829003601f168201915b5050505050905090565b600d5481565b600f5481565b60006114026113fb611a13565b8484611be4565b6001905092915050565b600b60019054906101000a900460ff1681565b611427611a13565b73ffffffffffffffffffffffffffffffffffffffff16611445611267565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290612f87565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115389190612c35565b60405180910390a25050565b61154c611a13565b73ffffffffffffffffffffffffffffffffffffffff1661156a611267565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612f87565b60405180910390fd5b670de0b6b3a76400006103e860056115d6610a4d565b6115e09190612fd6565b6115ea9190613047565b6115f49190613047565b811015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613254565b60405180910390fd5b670de0b6b3a76400008161164a9190612fd6565b600a8190555050565b60085481565b6000611663611a13565b73ffffffffffffffffffffffffffffffffffffffff16611681611267565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612f87565b60405180910390fd5b620186a060016116e5610a4d565b6116ef9190612fd6565b6116f99190613047565b82101561173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906132e6565b60405180910390fd5b6103e86005611748610a4d565b6117529190612fd6565b61175c9190613047565b82111561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590613378565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611849611a13565b73ffffffffffffffffffffffffffffffffffffffff16611867611267565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612f87565b60405180910390fd5b80600f81905550600f54600e819055506064600e541115611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a906131c2565b60405180910390fd5b50565b61191e611a13565b73ffffffffffffffffffffffffffffffffffffffff1661193c611267565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990612f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061340a565b60405180910390fd5b611a0a816124d1565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a819061349c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af09061352e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bd79190612d06565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb990613652565b60405180910390fd5b60008103611cdb57611cd683836000612597565b6124cc565b600b60009054906101000a900460ff16156120e557611cf8611267565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d665750611d36611267565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611df25750600660149054906101000a900460ff16155b156120e457600b60019054906101000a900460ff16611eec57601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eac5750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906136be565b60405180910390fd5b5b7f0000000000000000000000009b497880ad6fa674959e352c5e54d8b31d526e6473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f915750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561203857600854811115611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613750565b60405180910390fd5b600a54611fe783610e4f565b82611ff29190613770565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906137f0565b60405180910390fd5b6120e3565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120e257600a5461209583610e4f565b826120a09190613770565b11156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906137f0565b60405180910390fd5b5b5b5b5b60006120f030610e4f565b9050600060095482101590508080156121155750600b60029054906101000a900460ff165b801561212e5750600660149054906101000a900460ff16155b801561218557507f0000000000000000000000009b497880ad6fa674959e352c5e54d8b31d526e6473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121db5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122315750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612275576001600660146101000a81548160ff021916908315150217905550612259612816565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061232b5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561233557600090505b60008082156124bb577f0000000000000000000000009b497880ad6fa674959e352c5e54d8b31d526e6473ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561239b57506000600e54115b156123ec576123c860646123ba600e548961286690919063ffffffff16565b61287c90919063ffffffff16565b9150600e54600f54836123db9190612fd6565b6123e59190613047565b9050612497565b7f0000000000000000000000009b497880ad6fa674959e352c5e54d8b31d526e6473ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561244957506000600c54115b15612496576124766064612468600c548961286690919063ffffffff16565b61287c90919063ffffffff16565b9150600c54600d54836124899190612fd6565b6124939190613047565b90505b5b60008211156124ac576124ab883084612597565b5b81866124b89190613810565b95505b6124c6888888612597565b50505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90613652565b60405180910390fd5b612680838383612892565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd906138b6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127999190613770565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127fd9190612d06565b60405180910390a3612810848484612897565b50505050565b600061282130610e4f565b9050600081036128315750612864565b60146009546128409190612fd6565b8111156128595760146009546128569190612fd6565b90505b6128628161289c565b505b565b600081836128749190612fd6565b905092915050565b6000818361288a9190613047565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156128b9576128b86138d6565b5b6040519080825280602002602001820160405280156128e75781602001602082028036833780820191505090505b50905030816000815181106128ff576128fe613905565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106129705761296f613905565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129d5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a1b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612a59959493929190613a2d565b600060405180830381600087803b158015612a7357600080fd5b505af1158015612a87573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ac9578082015181840152602081019050612aae565b60008484015250505050565b6000601f19601f8301169050919050565b6000612af182612a8f565b612afb8185612a9a565b9350612b0b818560208601612aab565b612b1481612ad5565b840191505092915050565b60006020820190508181036000830152612b398184612ae6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b7182612b46565b9050919050565b612b8181612b66565b8114612b8c57600080fd5b50565b600081359050612b9e81612b78565b92915050565b6000819050919050565b612bb781612ba4565b8114612bc257600080fd5b50565b600081359050612bd481612bae565b92915050565b60008060408385031215612bf157612bf0612b41565b5b6000612bff85828601612b8f565b9250506020612c1085828601612bc5565b9150509250929050565b60008115159050919050565b612c2f81612c1a565b82525050565b6000602082019050612c4a6000830184612c26565b92915050565b600060208284031215612c6657612c65612b41565b5b6000612c7484828501612b8f565b91505092915050565b6000819050919050565b6000612ca2612c9d612c9884612b46565b612c7d565b612b46565b9050919050565b6000612cb482612c87565b9050919050565b6000612cc682612ca9565b9050919050565b612cd681612cbb565b82525050565b6000602082019050612cf16000830184612ccd565b92915050565b612d0081612ba4565b82525050565b6000602082019050612d1b6000830184612cf7565b92915050565b600060208284031215612d3757612d36612b41565b5b6000612d4584828501612bc5565b91505092915050565b600080600060608486031215612d6757612d66612b41565b5b6000612d7586828701612b8f565b9350506020612d8686828701612b8f565b9250506040612d9786828701612bc5565b9150509250925092565b612daa81612b66565b82525050565b6000602082019050612dc56000830184612da1565b92915050565b600060ff82169050919050565b612de181612dcb565b82525050565b6000602082019050612dfc6000830184612dd8565b92915050565b612e0b81612c1a565b8114612e1657600080fd5b50565b600081359050612e2881612e02565b92915050565b60008060408385031215612e4557612e44612b41565b5b6000612e5385828601612b8f565b9250506020612e6485828601612e19565b9150509250929050565b600060208284031215612e8457612e83612b41565b5b6000612e9284828501612e19565b91505092915050565b60008060408385031215612eb257612eb1612b41565b5b6000612ec085828601612b8f565b9250506020612ed185828601612b8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f2257607f821691505b602082108103612f3557612f34612edb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f71602083612a9a565b9150612f7c82612f3b565b602082019050919050565b60006020820190508181036000830152612fa081612f64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe182612ba4565b9150612fec83612ba4565b9250828202612ffa81612ba4565b9150828204841483151761301157613010612fa7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305282612ba4565b915061305d83612ba4565b92508261306d5761306c613018565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006130d4602f83612a9a565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613166602883612a9a565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b50565b60006131ac600083612a9a565b91506131b78261319c565b600082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061323e602483612a9a565b9150613249826131e2565b604082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006132d0603583612a9a565b91506132db82613274565b604082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613362603483612a9a565b915061336d82613306565b604082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133f4602683612a9a565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613486602483612a9a565b91506134918261342a565b604082019050919050565b600060208201905081810360008301526134b581613479565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613518602283612a9a565b9150613523826134bc565b604082019050919050565b600060208201905081810360008301526135478161350b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135aa602583612a9a565b91506135b58261354e565b604082019050919050565b600060208201905081810360008301526135d98161359d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061363c602383612a9a565b9150613647826135e0565b604082019050919050565b6000602082019050818103600083015261366b8161362f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136a8601683612a9a565b91506136b382613672565b602082019050919050565b600060208201905081810360008301526136d78161369b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061373a603583612a9a565b9150613745826136de565b604082019050919050565b600060208201905081810360008301526137698161372d565b9050919050565b600061377b82612ba4565b915061378683612ba4565b925082820190508082111561379e5761379d612fa7565b5b92915050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006137da601383612a9a565b91506137e5826137a4565b602082019050919050565b60006020820190508181036000830152613809816137cd565b9050919050565b600061381b82612ba4565b915061382683612ba4565b925082820390508181111561383e5761383d612fa7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138a0602683612a9a565b91506138ab82613844565b604082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061395961395461394f84613934565b612c7d565b612ba4565b9050919050565b6139698161393e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139a481612b66565b82525050565b60006139b6838361399b565b60208301905092915050565b6000602082019050919050565b60006139da8261396f565b6139e4818561397a565b93506139ef8361398b565b8060005b83811015613a20578151613a0788826139aa565b9750613a12836139c2565b9250506001810190506139f3565b5085935050505092915050565b600060a082019050613a426000830188612cf7565b613a4f6020830187613960565b8181036040830152613a6181866139cf565b9050613a706060830185612da1565b613a7d6080830184612cf7565b969550505050505056fea2646970667358221220da7a8032a67d1871728ca91b450682dc766ec798f5d9e761cd5144c00d85dff164736f6c63430008110033

Deployed Bytecode Sourcemap

23321:9980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8177:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10344:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24211:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23402:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9297:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28700:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27189:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10995:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23505:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9139:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23460:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23816:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28899:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24002:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23896:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9468:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23565:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1412:103;;;;;;;;;;;;;:::i;:::-;;28107:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26493:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27736:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26205:236;;;;;;;;;;;;;:::i;:::-;;761:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23668:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27999:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8396:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23969:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24037:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9808:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23856:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28510:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27472:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23701:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26684:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23935:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10046:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23743:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28306:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1670:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23783:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8177:100;8231:13;8264:5;8257:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8177:100;:::o;10344:169::-;10427:4;10444:39;10453:12;:10;:12::i;:::-;10467:7;10476:6;10444:8;:39::i;:::-;10501:4;10494:11;;10344:169;;;;:::o;24211:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23402:51::-;;;:::o;9297:108::-;9358:7;9385:12;;9378:19;;9297:108;:::o;28700:189::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28836:9:::1;;;;;;;;;;;28805:41;;28822:12;28805:41;;;;;;;;;;;;28869:12;28857:9;;:24;;;;;;;;;;;;;;;;;;28700:189:::0;:::o;27189:275::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27326:4:::1;27318;27313:1;27297:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27296:26;;;;:::i;:::-;27295:35;;;;:::i;:::-;27285:6;:45;;27263:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;27449:6;27439;:17;;;;:::i;:::-;27416:20;:40;;;;27189:275:::0;:::o;10995:492::-;11135:4;11152:36;11162:6;11170:9;11181:6;11152:9;:36::i;:::-;11201:24;11228:11;:19;11240:6;11228:19;;;;;;;;;;;;;;;:33;11248:12;:10;:12::i;:::-;11228:33;;;;;;;;;;;;;;;;11201:60;;11300:6;11280:16;:26;;11272:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11387:57;11396:6;11404:12;:10;:12::i;:::-;11437:6;11418:16;:25;11387:8;:57::i;:::-;11475:4;11468:11;;;10995:492;;;;;:::o;23505:53::-;23551:6;23505:53;:::o;9139:93::-;9197:5;9222:2;9215:9;;9139:93;:::o;23460:38::-;;;:::o;23816:33::-;;;;;;;;;;;;;:::o;28899:126::-;28965:4;28989:19;:28;29009:7;28989:28;;;;;;;;;;;;;;;;;;;;;;;;;28982:35;;28899:126;;;:::o;24002:28::-;;;;:::o;23896:30::-;;;;;;;;;;;;;:::o;9468:127::-;9542:7;9569:9;:18;9579:7;9569:18;;;;;;;;;;;;;;;;9562:25;;9468:127;;;:::o;23565:64::-;;;;;;;;;;;;;:::o;1412:103::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1477:30:::1;1504:1;1477:18;:30::i;:::-;1412:103::o:0;28107:191::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28205:7:::1;28193:9;:19;;;;28238:9;;28223:12;:24;;;;28282:3;28266:12;;:19;;28258:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;28107:191:::0;:::o;26493:121::-;26545:4;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26579:5:::1;26562:14;;:22;;;;;;;;;;;;;;;;;;26602:4;26595:11;;26493:121:::0;:::o;27736:167::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27891:4:::1;27849:31;:39;27881:6;27849:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27736:167:::0;;:::o;26205:236::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26272:2:::1;26260:9;:14;;;;26300:9;;26285:12;:24;;;;26334:2;26321:10;:15;;;;26363:10;;26347:13;:26;;;;26400:4;26384:13;;:20;;;;;;;;;;;;;;;;;;26429:4;26415:11;;:18;;;;;;;;;;;;;;;;;;26205:236::o:0;761:87::-;807:7;834:6;;;;;;;;;;;827:13;;761:87;:::o;23668:24::-;;;;;;;;;;;;;:::o;27999:100::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28084:7:::1;28070:11;;:21;;;;;;;;;;;;;;;;;;27999:100:::0;:::o;8396:104::-;8452:13;8485:7;8478:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8396:104;:::o;23969:24::-;;;;:::o;24037:25::-;;;;:::o;9808:175::-;9894:4;9911:42;9921:12;:10;:12::i;:::-;9935:9;9946:6;9911:9;:42::i;:::-;9971:4;9964:11;;9808:175;;;;:::o;23856:33::-;;;;;;;;;;;;;:::o;28510:182::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28626:8:::1;28595:19;:28;28615:7;28595:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;28666:7;28650:34;;;28675:8;28650:34;;;;;;:::i;:::-;;;;;;;;28510:182:::0;;:::o;27472:256::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27612:4:::1;27604;27599:1;27583:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27582:26;;;;:::i;:::-;27581:35;;;;:::i;:::-;27571:6;:45;;27549:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;27713:6;27703;:17;;;;:::i;:::-;27691:9;:29;;;;27472:256:::0;:::o;23701:35::-;;;;:::o;26684:497::-;26792:4;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26871:6:::1;26866:1;26850:13;:11;:13::i;:::-;:17;;;;:::i;:::-;26849:28;;;;:::i;:::-;26836:9;:41;;26814:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27026:4;27021:1;27005:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27004:26;;;;:::i;:::-;26991:9;:39;;26969:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27142:9;27121:18;:30;;;;27169:4;27162:11;;26684:497:::0;;;:::o;23935:27::-;;;;:::o;10046:151::-;10135:7;10162:11;:18;10174:5;10162:18;;;;;;;;;;;;;;;:27;10181:7;10162:27;;;;;;;;;;;;;;;;10155:34;;10046:151;;;;:::o;23743:33::-;;;;:::o;28306:196::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28406:7:::1;28393:10;:20;;;;28440:10;;28424:13;:26;;;;28486:3;28469:13;;:20;;28461:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;28306:196:::0;:::o;1670:201::-;992:12;:10;:12::i;:::-;981:23;;:7;:5;:7::i;:::-;:23;;;973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:1:::1;1759:22;;:8;:22;;::::0;1751:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1835:28;1854:8;1835:18;:28::i;:::-;1670:201:::0;:::o;23783:24::-;;;;:::o;133:98::-;186:7;213:10;206:17;;133:98;:::o;13836:380::-;13989:1;13972:19;;:5;:19;;;13964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14070:1;14051:21;;:7;:21;;;14043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14154:6;14124:11;:18;14136:5;14124:18;;;;;;;;;;;;;;;:27;14143:7;14124:27;;;;;;;;;;;;;;;:36;;;;14192:7;14176:32;;14185:5;14176:32;;;14201:6;14176:32;;;;;;:::i;:::-;;;;;;;;13836:380;;;:::o;29033:3335::-;29181:1;29165:18;;:4;:18;;;29157:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29258:1;29244:16;;:2;:16;;;29236:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29327:1;29317:6;:11;29313:93;;29345:28;29361:4;29367:2;29371:1;29345:15;:28::i;:::-;29388:7;;29313:93;29422:14;;;;;;;;;;;29418:1430;;;29483:7;:5;:7::i;:::-;29475:15;;:4;:15;;;;:49;;;;;29517:7;:5;:7::i;:::-;29511:13;;:2;:13;;;;29475:49;:86;;;;;29559:1;29545:16;;:2;:16;;;;29475:86;:128;;;;;29596:6;29582:21;;:2;:21;;;;29475:128;:158;;;;;29625:8;;;;;;;;;;;29624:9;29475:158;29453:1384;;;29673:13;;;;;;;;;;;29668:223;;29745:19;:25;29765:4;29745:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;29774:19;:23;29794:2;29774:23;;;;;;;;;;;;;;;;;;;;;;;;;29745:52;29711:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;29668:223;30105:13;30097:21;;:4;:21;;;:82;;;;;30144:31;:35;30176:2;30144:35;;;;;;;;;;;;;;;;;;;;;;;;;30143:36;30097:82;30071:751;;;30266:20;;30256:6;:30;;30222:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30474:9;;30457:13;30467:2;30457:9;:13::i;:::-;30448:6;:22;;;;:::i;:::-;:35;;30414:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30071:751;;;30602:31;:35;30634:2;30602:35;;;;;;;;;;;;;;;;;;;;;;;;;30597:225;;30722:9;;30705:13;30715:2;30705:9;:13::i;:::-;30696:6;:22;;;;:::i;:::-;:35;;30662:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30597:225;30071:751;29453:1384;29418:1430;30860:28;30891:24;30909:4;30891:9;:24::i;:::-;30860:55;;30928:12;30967:18;;30943:20;:42;;30928:57;;31016:7;:35;;;;;31040:11;;;;;;;;;;;31016:35;:61;;;;;31069:8;;;;;;;;;;;31068:9;31016:61;:97;;;;;31100:13;31094:19;;:2;:19;;;31016:97;:140;;;;;31131:19;:25;31151:4;31131:25;;;;;;;;;;;;;;;;;;;;;;;;;31130:26;31016:140;:181;;;;;31174:19;:23;31194:2;31174:23;;;;;;;;;;;;;;;;;;;;;;;;;31173:24;31016:181;30998:313;;;31235:4;31224:8;;:15;;;;;;;;;;;;;;;;;;31256:10;:8;:10::i;:::-;31294:5;31283:8;;:16;;;;;;;;;;;;;;;;;;30998:313;31323:12;31339:8;;;;;;;;;;;31338:9;31323:24;;31449:19;:25;31469:4;31449:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31478:19;:23;31498:2;31478:23;;;;;;;;;;;;;;;;;;;;;;;;;31449:52;31445:100;;;31528:5;31518:15;;31445:100;31557:12;31584:20;31697:7;31693:622;;;31755:13;31749:19;;:2;:19;;;:40;;;;;31788:1;31772:13;;:17;31749:40;31745:422;;;31817:34;31847:3;31817:25;31828:13;;31817:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;31810:41;;31907:13;;31893:10;;31886:4;:17;;;;:::i;:::-;31885:35;;;;:::i;:::-;31870:50;;31745:422;;;31990:13;31982:21;;:4;:21;;;:41;;;;;32022:1;32007:12;;:16;31982:41;31978:189;;;32051:33;32080:3;32051:24;32062:12;;32051:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32044:40;;32139:12;;32126:9;;32119:4;:16;;;;:::i;:::-;32118:33;;;;:::i;:::-;32103:48;;31978:189;31745:422;32193:1;32187:4;:7;32183:90;;;32215:42;32231:4;32245;32252;32215:15;:42::i;:::-;32183:90;32299:4;32289:14;;;;;:::i;:::-;;;31693:622;32327:33;32343:4;32349:2;32353:6;32327:15;:33::i;:::-;29146:3222;;;;;29033:3335;;;;:::o;2031:191::-;2105:16;2124:6;;;;;;;;;;;2105:25;;2150:8;2141:6;;:17;;;;;;;;;;;;;;;;;;2205:8;2174:40;;2195:8;2174:40;;;;;;;;;;;;2094:128;2031:191;:::o;11977:733::-;12135:1;12117:20;;:6;:20;;;12109:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12219:1;12198:23;;:9;:23;;;12190:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12274:47;12295:6;12303:9;12314:6;12274:20;:47::i;:::-;12334:21;12358:9;:17;12368:6;12358:17;;;;;;;;;;;;;;;;12334:41;;12411:6;12394:13;:23;;12386:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12532:6;12516:13;:22;12496:9;:17;12506:6;12496:17;;;;;;;;;;;;;;;:42;;;;12584:6;12560:9;:20;12570:9;12560:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12625:9;12608:35;;12617:6;12608:35;;;12636:6;12608:35;;;;;;:::i;:::-;;;;;;;;12656:46;12676:6;12684:9;12695:6;12656:19;:46::i;:::-;12098:612;11977:733;;;:::o;32956:340::-;32995:23;33021:24;33039:4;33021:9;:24::i;:::-;32995:50;;33079:1;33060:15;:20;33056:59;;33097:7;;;33056:59;33170:2;33149:18;;:23;;;;:::i;:::-;33131:15;:41;33127:115;;;33228:2;33207:18;;:23;;;;:::i;:::-;33189:41;;33127:115;33254:34;33272:15;33254:17;:34::i;:::-;32984:312;32956:340;:::o;19289:98::-;19347:7;19378:1;19374;:5;;;;:::i;:::-;19367:12;;19289:98;;;;:::o;19688:::-;19746:7;19777:1;19773;:5;;;;:::i;:::-;19766:12;;19688:98;;;;:::o;14816:125::-;;;;:::o;15545:124::-;;;;:::o;32376:572::-;32503:21;32541:1;32527:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32503:40;;32572:4;32554;32559:1;32554:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32598:4;;;;;;;;;;;32588;32593:1;32588:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;32615:62;32632:4;32647:15;32665:11;32615:8;:62::i;:::-;32716:15;:69;;;32800:11;32826:1;32871:4;32890:9;;;;;;;;;;;32914:15;32716:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32432:516;32376:572;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:152::-;4203:9;4236:37;4267:5;4236:37;:::i;:::-;4223:50;;4127:152;;;:::o;4285:183::-;4398:63;4455:5;4398:63;:::i;:::-;4393:3;4386:76;4285:183;;:::o;4474:274::-;4593:4;4631:2;4620:9;4616:18;4608:26;;4644:97;4738:1;4727:9;4723:17;4714:6;4644:97;:::i;:::-;4474:274;;;;:::o;4754:118::-;4841:24;4859:5;4841:24;:::i;:::-;4836:3;4829:37;4754:118;;:::o;4878:222::-;4971:4;5009:2;4998:9;4994:18;4986:26;;5022:71;5090:1;5079:9;5075:17;5066:6;5022:71;:::i;:::-;4878:222;;;;:::o;5106:329::-;5165:6;5214:2;5202:9;5193:7;5189:23;5185:32;5182:119;;;5220:79;;:::i;:::-;5182:119;5340:1;5365:53;5410:7;5401:6;5390:9;5386:22;5365:53;:::i;:::-;5355:63;;5311:117;5106:329;;;;:::o;5441:619::-;5518:6;5526;5534;5583:2;5571:9;5562:7;5558:23;5554:32;5551:119;;;5589:79;;:::i;:::-;5551:119;5709:1;5734:53;5779:7;5770:6;5759:9;5755:22;5734:53;:::i;:::-;5724:63;;5680:117;5836:2;5862:53;5907:7;5898:6;5887:9;5883:22;5862:53;:::i;:::-;5852:63;;5807:118;5964:2;5990:53;6035:7;6026:6;6015:9;6011:22;5990:53;:::i;:::-;5980:63;;5935:118;5441:619;;;;;:::o;6066:118::-;6153:24;6171:5;6153:24;:::i;:::-;6148:3;6141:37;6066:118;;:::o;6190:222::-;6283:4;6321:2;6310:9;6306:18;6298:26;;6334:71;6402:1;6391:9;6387:17;6378:6;6334:71;:::i;:::-;6190:222;;;;:::o;6418:86::-;6453:7;6493:4;6486:5;6482:16;6471:27;;6418:86;;;:::o;6510:112::-;6593:22;6609:5;6593:22;:::i;:::-;6588:3;6581:35;6510:112;;:::o;6628:214::-;6717:4;6755:2;6744:9;6740:18;6732:26;;6768:67;6832:1;6821:9;6817:17;6808:6;6768:67;:::i;:::-;6628:214;;;;:::o;6848:116::-;6918:21;6933:5;6918:21;:::i;:::-;6911:5;6908:32;6898:60;;6954:1;6951;6944:12;6898:60;6848:116;:::o;6970:133::-;7013:5;7051:6;7038:20;7029:29;;7067:30;7091:5;7067:30;:::i;:::-;6970:133;;;;:::o;7109:468::-;7174:6;7182;7231:2;7219:9;7210:7;7206:23;7202:32;7199:119;;;7237:79;;:::i;:::-;7199:119;7357:1;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7328:117;7484:2;7510:50;7552:7;7543:6;7532:9;7528:22;7510:50;:::i;:::-;7500:60;;7455:115;7109:468;;;;;:::o;7583:323::-;7639:6;7688:2;7676:9;7667:7;7663:23;7659:32;7656:119;;;7694:79;;:::i;:::-;7656:119;7814:1;7839:50;7881:7;7872:6;7861:9;7857:22;7839:50;:::i;:::-;7829:60;;7785:114;7583:323;;;;:::o;7912:474::-;7980:6;7988;8037:2;8025:9;8016:7;8012:23;8008:32;8005:119;;;8043:79;;:::i;:::-;8005:119;8163:1;8188:53;8233:7;8224:6;8213:9;8209:22;8188:53;:::i;:::-;8178:63;;8134:117;8290:2;8316:53;8361:7;8352:6;8341:9;8337:22;8316:53;:::i;:::-;8306:63;;8261:118;7912:474;;;;;:::o;8392:180::-;8440:77;8437:1;8430:88;8537:4;8534:1;8527:15;8561:4;8558:1;8551:15;8578:320;8622:6;8659:1;8653:4;8649:12;8639:22;;8706:1;8700:4;8696:12;8727:18;8717:81;;8783:4;8775:6;8771:17;8761:27;;8717:81;8845:2;8837:6;8834:14;8814:18;8811:38;8808:84;;8864:18;;:::i;:::-;8808:84;8629:269;8578:320;;;:::o;8904:182::-;9044:34;9040:1;9032:6;9028:14;9021:58;8904:182;:::o;9092:366::-;9234:3;9255:67;9319:2;9314:3;9255:67;:::i;:::-;9248:74;;9331:93;9420:3;9331:93;:::i;:::-;9449:2;9444:3;9440:12;9433:19;;9092:366;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9464:419;;;:::o;9889:180::-;9937:77;9934:1;9927:88;10034:4;10031:1;10024:15;10058:4;10055:1;10048:15;10075:410;10115:7;10138:20;10156:1;10138:20;:::i;:::-;10133:25;;10172:20;10190:1;10172:20;:::i;:::-;10167:25;;10227:1;10224;10220:9;10249:30;10267:11;10249:30;:::i;:::-;10238:41;;10428:1;10419:7;10415:15;10412:1;10409:22;10389:1;10382:9;10362:83;10339:139;;10458:18;;:::i;:::-;10339:139;10123:362;10075:410;;;;:::o;10491:180::-;10539:77;10536:1;10529:88;10636:4;10633:1;10626:15;10660:4;10657:1;10650:15;10677:185;10717:1;10734:20;10752:1;10734:20;:::i;:::-;10729:25;;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10807:1;10797:35;;10812:18;;:::i;:::-;10797:35;10854:1;10851;10847:9;10842:14;;10677:185;;;;:::o;10868:234::-;11008:34;11004:1;10996:6;10992:14;10985:58;11077:17;11072:2;11064:6;11060:15;11053:42;10868:234;:::o;11108:366::-;11250:3;11271:67;11335:2;11330:3;11271:67;:::i;:::-;11264:74;;11347:93;11436:3;11347:93;:::i;:::-;11465:2;11460:3;11456:12;11449:19;;11108:366;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11480:419;;;:::o;11905:227::-;12045:34;12041:1;12033:6;12029:14;12022:58;12114:10;12109:2;12101:6;12097:15;12090:35;11905:227;:::o;12138:366::-;12280:3;12301:67;12365:2;12360:3;12301:67;:::i;:::-;12294:74;;12377:93;12466:3;12377:93;:::i;:::-;12495:2;12490:3;12486:12;12479:19;;12138:366;;;:::o;12510:419::-;12676:4;12714:2;12703:9;12699:18;12691:26;;12763:9;12757:4;12753:20;12749:1;12738:9;12734:17;12727:47;12791:131;12917:4;12791:131;:::i;:::-;12783:139;;12510:419;;;:::o;12935:114::-;;:::o;13055:364::-;13197:3;13218:66;13282:1;13277:3;13218:66;:::i;:::-;13211:73;;13293:93;13382:3;13293:93;:::i;:::-;13411:1;13406:3;13402:11;13395:18;;13055:364;;;:::o;13425:419::-;13591:4;13629:2;13618:9;13614:18;13606:26;;13678:9;13672:4;13668:20;13664:1;13653:9;13649:17;13642:47;13706:131;13832:4;13706:131;:::i;:::-;13698:139;;13425:419;;;:::o;13850:223::-;13990:34;13986:1;13978:6;13974:14;13967:58;14059:6;14054:2;14046:6;14042:15;14035:31;13850:223;:::o;14079:366::-;14221:3;14242:67;14306:2;14301:3;14242:67;:::i;:::-;14235:74;;14318:93;14407:3;14318:93;:::i;:::-;14436:2;14431:3;14427:12;14420:19;;14079:366;;;:::o;14451:419::-;14617:4;14655:2;14644:9;14640:18;14632:26;;14704:9;14698:4;14694:20;14690:1;14679:9;14675:17;14668:47;14732:131;14858:4;14732:131;:::i;:::-;14724:139;;14451:419;;;:::o;14876:240::-;15016:34;15012:1;15004:6;15000:14;14993:58;15085:23;15080:2;15072:6;15068:15;15061:48;14876:240;:::o;15122:366::-;15264:3;15285:67;15349:2;15344:3;15285:67;:::i;:::-;15278:74;;15361:93;15450:3;15361:93;:::i;:::-;15479:2;15474:3;15470:12;15463:19;;15122:366;;;:::o;15494:419::-;15660:4;15698:2;15687:9;15683:18;15675:26;;15747:9;15741:4;15737:20;15733:1;15722:9;15718:17;15711:47;15775:131;15901:4;15775:131;:::i;:::-;15767:139;;15494:419;;;:::o;15919:239::-;16059:34;16055:1;16047:6;16043:14;16036:58;16128:22;16123:2;16115:6;16111:15;16104:47;15919:239;:::o;16164:366::-;16306:3;16327:67;16391:2;16386:3;16327:67;:::i;:::-;16320:74;;16403:93;16492:3;16403:93;:::i;:::-;16521:2;16516:3;16512:12;16505:19;;16164:366;;;:::o;16536:419::-;16702:4;16740:2;16729:9;16725:18;16717:26;;16789:9;16783:4;16779:20;16775:1;16764:9;16760:17;16753:47;16817:131;16943:4;16817:131;:::i;:::-;16809:139;;16536:419;;;:::o;16961:225::-;17101:34;17097:1;17089:6;17085:14;17078:58;17170:8;17165:2;17157:6;17153:15;17146:33;16961:225;:::o;17192:366::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:419::-;17730:4;17768:2;17757:9;17753:18;17745:26;;17817:9;17811:4;17807:20;17803:1;17792:9;17788:17;17781:47;17845:131;17971:4;17845:131;:::i;:::-;17837:139;;17564:419;;;:::o;17989:223::-;18129:34;18125:1;18117:6;18113:14;18106:58;18198:6;18193:2;18185:6;18181:15;18174:31;17989:223;:::o;18218:366::-;18360:3;18381:67;18445:2;18440:3;18381:67;:::i;:::-;18374:74;;18457:93;18546:3;18457:93;:::i;:::-;18575:2;18570:3;18566:12;18559:19;;18218:366;;;:::o;18590:419::-;18756:4;18794:2;18783:9;18779:18;18771:26;;18843:9;18837:4;18833:20;18829:1;18818:9;18814:17;18807:47;18871:131;18997:4;18871:131;:::i;:::-;18863:139;;18590:419;;;:::o;19015:221::-;19155:34;19151:1;19143:6;19139:14;19132:58;19224:4;19219:2;19211:6;19207:15;19200:29;19015:221;:::o;19242:366::-;19384:3;19405:67;19469:2;19464:3;19405:67;:::i;:::-;19398:74;;19481:93;19570:3;19481:93;:::i;:::-;19599:2;19594:3;19590:12;19583:19;;19242:366;;;:::o;19614:419::-;19780:4;19818:2;19807:9;19803:18;19795:26;;19867:9;19861:4;19857:20;19853:1;19842:9;19838:17;19831:47;19895:131;20021:4;19895:131;:::i;:::-;19887:139;;19614:419;;;:::o;20039:224::-;20179:34;20175:1;20167:6;20163:14;20156:58;20248:7;20243:2;20235:6;20231:15;20224:32;20039:224;:::o;20269:366::-;20411:3;20432:67;20496:2;20491:3;20432:67;:::i;:::-;20425:74;;20508:93;20597:3;20508:93;:::i;:::-;20626:2;20621:3;20617:12;20610:19;;20269:366;;;:::o;20641:419::-;20807:4;20845:2;20834:9;20830:18;20822:26;;20894:9;20888:4;20884:20;20880:1;20869:9;20865:17;20858:47;20922:131;21048:4;20922:131;:::i;:::-;20914:139;;20641:419;;;:::o;21066:222::-;21206:34;21202:1;21194:6;21190:14;21183:58;21275:5;21270:2;21262:6;21258:15;21251:30;21066:222;:::o;21294:366::-;21436:3;21457:67;21521:2;21516:3;21457:67;:::i;:::-;21450:74;;21533:93;21622:3;21533:93;:::i;:::-;21651:2;21646:3;21642:12;21635:19;;21294:366;;;:::o;21666:419::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21919:9;21913:4;21909:20;21905:1;21894:9;21890:17;21883:47;21947:131;22073:4;21947:131;:::i;:::-;21939:139;;21666:419;;;:::o;22091:172::-;22231:24;22227:1;22219:6;22215:14;22208:48;22091:172;:::o;22269:366::-;22411:3;22432:67;22496:2;22491:3;22432:67;:::i;:::-;22425:74;;22508:93;22597:3;22508:93;:::i;:::-;22626:2;22621:3;22617:12;22610:19;;22269:366;;;:::o;22641:419::-;22807:4;22845:2;22834:9;22830:18;22822:26;;22894:9;22888:4;22884:20;22880:1;22869:9;22865:17;22858:47;22922:131;23048:4;22922:131;:::i;:::-;22914:139;;22641:419;;;:::o;23066:240::-;23206:34;23202:1;23194:6;23190:14;23183:58;23275:23;23270:2;23262:6;23258:15;23251:48;23066:240;:::o;23312:366::-;23454:3;23475:67;23539:2;23534:3;23475:67;:::i;:::-;23468:74;;23551:93;23640:3;23551:93;:::i;:::-;23669:2;23664:3;23660:12;23653:19;;23312:366;;;:::o;23684:419::-;23850:4;23888:2;23877:9;23873:18;23865:26;;23937:9;23931:4;23927:20;23923:1;23912:9;23908:17;23901:47;23965:131;24091:4;23965:131;:::i;:::-;23957:139;;23684:419;;;:::o;24109:191::-;24149:3;24168:20;24186:1;24168:20;:::i;:::-;24163:25;;24202:20;24220:1;24202:20;:::i;:::-;24197:25;;24245:1;24242;24238:9;24231:16;;24266:3;24263:1;24260:10;24257:36;;;24273:18;;:::i;:::-;24257:36;24109:191;;;;:::o;24306:169::-;24446:21;24442:1;24434:6;24430:14;24423:45;24306:169;:::o;24481:366::-;24623:3;24644:67;24708:2;24703:3;24644:67;:::i;:::-;24637:74;;24720:93;24809:3;24720:93;:::i;:::-;24838:2;24833:3;24829:12;24822:19;;24481:366;;;:::o;24853:419::-;25019:4;25057:2;25046:9;25042:18;25034:26;;25106:9;25100:4;25096:20;25092:1;25081:9;25077:17;25070:47;25134:131;25260:4;25134:131;:::i;:::-;25126:139;;24853:419;;;:::o;25278:194::-;25318:4;25338:20;25356:1;25338:20;:::i;:::-;25333:25;;25372:20;25390:1;25372:20;:::i;:::-;25367:25;;25416:1;25413;25409:9;25401:17;;25440:1;25434:4;25431:11;25428:37;;;25445:18;;:::i;:::-;25428:37;25278:194;;;;:::o;25478:225::-;25618:34;25614:1;25606:6;25602:14;25595:58;25687:8;25682:2;25674:6;25670:15;25663:33;25478:225;:::o;25709:366::-;25851:3;25872:67;25936:2;25931:3;25872:67;:::i;:::-;25865:74;;25948:93;26037:3;25948:93;:::i;:::-;26066:2;26061:3;26057:12;26050:19;;25709:366;;;:::o;26081:419::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26334:9;26328:4;26324:20;26320:1;26309:9;26305:17;26298:47;26362:131;26488:4;26362:131;:::i;:::-;26354:139;;26081:419;;;:::o;26506:180::-;26554:77;26551:1;26544:88;26651:4;26648:1;26641:15;26675:4;26672:1;26665:15;26692:180;26740:77;26737:1;26730:88;26837:4;26834:1;26827:15;26861:4;26858:1;26851:15;26878:85;26923:7;26952:5;26941:16;;26878:85;;;:::o;26969:158::-;27027:9;27060:61;27078:42;27087:32;27113:5;27087:32;:::i;:::-;27078:42;:::i;:::-;27060:61;:::i;:::-;27047:74;;26969:158;;;:::o;27133:147::-;27228:45;27267:5;27228:45;:::i;:::-;27223:3;27216:58;27133:147;;:::o;27286:114::-;27353:6;27387:5;27381:12;27371:22;;27286:114;;;:::o;27406:184::-;27505:11;27539:6;27534:3;27527:19;27579:4;27574:3;27570:14;27555:29;;27406:184;;;;:::o;27596:132::-;27663:4;27686:3;27678:11;;27716:4;27711:3;27707:14;27699:22;;27596:132;;;:::o;27734:108::-;27811:24;27829:5;27811:24;:::i;:::-;27806:3;27799:37;27734:108;;:::o;27848:179::-;27917:10;27938:46;27980:3;27972:6;27938:46;:::i;:::-;28016:4;28011:3;28007:14;27993:28;;27848:179;;;;:::o;28033:113::-;28103:4;28135;28130:3;28126:14;28118:22;;28033:113;;;:::o;28182:732::-;28301:3;28330:54;28378:5;28330:54;:::i;:::-;28400:86;28479:6;28474:3;28400:86;:::i;:::-;28393:93;;28510:56;28560:5;28510:56;:::i;:::-;28589:7;28620:1;28605:284;28630:6;28627:1;28624:13;28605:284;;;28706:6;28700:13;28733:63;28792:3;28777:13;28733:63;:::i;:::-;28726:70;;28819:60;28872:6;28819:60;:::i;:::-;28809:70;;28665:224;28652:1;28649;28645:9;28640:14;;28605:284;;;28609:14;28905:3;28898:10;;28306:608;;;28182:732;;;;:::o;28920:831::-;29183:4;29221:3;29210:9;29206:19;29198:27;;29235:71;29303:1;29292:9;29288:17;29279:6;29235:71;:::i;:::-;29316:80;29392:2;29381:9;29377:18;29368:6;29316:80;:::i;:::-;29443:9;29437:4;29433:20;29428:2;29417:9;29413:18;29406:48;29471:108;29574:4;29565:6;29471:108;:::i;:::-;29463:116;;29589:72;29657:2;29646:9;29642:18;29633:6;29589:72;:::i;:::-;29671:73;29739:3;29728:9;29724:19;29715:6;29671:73;:::i;:::-;28920:831;;;;;;;;:::o

Swarm Source

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