ETH Price: $2,516.96 (-2.76%)

Token

Harris vs Trump (HarrisTrump)
 

Overview

Max Total Supply

100,000,000 HarrisTrump

Holders

642

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptgod.eth
Balance
428.460214984371106669 HarrisTrump

Value
$0.00
0x6e3b39ae89e153792df33342a4f4c69cf4977331
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:
HarrisvsTrump

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-27
*/

/**
She has led the fight for the freedom of women to make decisions about their own bodies, the freedom to live safe from gun violence, the freedom to vote, and the freedom to drink clean water and breathe clean air.
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

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 Harris vs Trumpis 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 theHarris vs Trump 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);
    }
}

// OpenZeppelin Contracts (last Harris vs Trumpupdated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` Harris vs Trumptokens 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 allowanceHarris vs Trump of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev 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 Harris vs Trumpcaller'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 Harris vs Trumpof 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.
     *
     Harris vs Trump
     * 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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *Harris vs Trump
 * _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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 Harris vs TrumpEIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
    Harris vs Trumpny of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased Harris vs Trumpallowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount Harris vs Trumpexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allHarris vs Trump balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint Harris vs Trumpto 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);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn Harris vs Trumpamount 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);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: Harris vs Trumpapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero Harris vs Trumpaddress");

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned Harris vs Trumpintegers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
    Harris vs Trump
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
    Harris vs Trumprevert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
    Harris vs Trump
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA, address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired, uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,   uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity, uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,  uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,  uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,   uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,    address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,   uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,     uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees; uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("Harris vs Trump", "HarrisTrump") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already Harris vs Trumpactive.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excludeEnoblesTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be Harris vs Trumpremoved from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the Harris vs Trumpzero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeEnoblesTrading","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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600f81526020017f486172726973207673205472756d7000000000000000000000000000000000008152506040518060400160405280600b81526020017f4861727269735472756d7000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20486172726973207673205472756d70617070726f766520667260008201527f6f6d20746865207a65726f206164647265737300000000000000000000000000602082015250565b600062000b9360338362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20486172726960008201527f73207673205472756d7061646472657373000000000000000000000000000000602082015250565b600062000c2b60318362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420486172726973207673205472756d70746f20746860008201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b600062000cf1602e8362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161325662000d6a600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132566000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d0e0c107146105f1578063d46980161461061a576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906124f8565b610be5565b005b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906126ad565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612765565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610cc2565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127f7565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bed611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610c8a919061232c565b60405180910390a25050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612889565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906129ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290612a19565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b3d565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612ba9565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612bc9565b6115199190612c3a565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612bc9565b61154c9190612c3a565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612bc9565b61157f9190612c3a565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612bc9565b6116429190612c3a565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612bc9565b6116759190612c3a565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612bc9565b6116a89190612c3a565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c6b565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612d11565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612da3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e35565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ec7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612bc9565b611bab9190612c3a565b611bb59190612c3a565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c6b565b611c629190612c6b565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ee7565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f4f565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f4f565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612bc9565b905092915050565b60008183611e259190612c3a565b905092915050565b505050565b505050565b60008183611e459190612c6b565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f64565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f93565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fd7565b81600181518110611f8d57611f8c612f93565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130fd565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613157565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131cd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920486172726973207673205472756d706160008201527f63746976652e0000000000000000000000000000000000000000000000000000602082015250565b6000612697602683612191565b91506126a28261263b565b604082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204860008201527f6172726973207673205472756d7072656d6f7665642066726f6d206175746f6d60208201527f617465644d61726b65744d616b65725061697273000000000000000000000000604082015250565b600061274f605483612191565b915061275a826126cd565b606082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f45524332303a2064656372656173656420486172726973207673205472756d7060008201527f616c6c6f77616e63652062656c6f77207a65726f000000000000000000000000602082015250565b60006127e1603483612191565b91506127ec82612785565b604082019050919050565b60006020820190508181036000830152612810816127d4565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654861727269732060008201527f7673205472756d70207a65726f20616464726573730000000000000000000000602082015250565b6000612873603583612191565b915061287e82612817565b604082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b7f45524332303a20486172726973207673205472756d70617070726f766520667260008201527f6f6d20746865207a65726f206164647265737300000000000000000000000000602082015250565b6000612905603383612191565b9150612910826128a9565b604082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20486172726960008201527f73207673205472756d7061646472657373000000000000000000000000000000602082015250565b6000612997603183612191565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a03601d83612191565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204861727269732060008201527f7673205472756d707a65726f2061646472657373000000000000000000000000602082015250565b6000612a95603483612191565b9150612aa082612a39565b604082019050919050565b60006020820190508181036000830152612ac481612a88565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b27602383612191565b9150612b3282612acb565b604082019050919050565b60006020820190508181036000830152612b5681612b1a565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b93601883612191565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b6000612bd48261229b565b9150612bdf8361229b565b9250828202612bed8161229b565b91508282048414831517612c0457612c036125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c458261229b565b9150612c508361229b565b925082612c6057612c5f612c0b565b5b828204905092915050565b6000612c768261229b565b9150612c818361229b565b9250828203905081811115612c9957612c986125d8565b5b92915050565b7f4f776e61626c653a2063616c6c657220486172726973207673205472756d706960008201527f73206e6f7420746865206f776e65720000000000000000000000000000000000602082015250565b6000612cfb602f83612191565b9150612d0682612c9f565b604082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f45524332303a20486172726973207673205472756d707472616e73666572206660008201527f726f6d20746865207a65726f2061646472657373000000000000000000000000602082015250565b6000612d8d603483612191565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f486172726973207673205472756d7045524332303a207472616e73666572207460008201527f6f20746865207a65726f20616464726573730000000000000000000000000000602082015250565b6000612e1f603283612191565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742048617272697320767360008201527f205472756d70657863656564732062616c616e63650000000000000000000000602082015250565b6000612eb1603583612191565b9150612ebc82612e55565b604082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b6000606082019050612efc60008301866123c1565b612f0960208301856123c1565b612f1660408301846123c1565b949350505050565b600081905092915050565b50565b6000612f39600083612f1e565b9150612f4482612f29565b600082019050919050565b6000612f5a82612f2c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fd18161226f565b92915050565b600060208284031215612fed57612fec612238565b5b6000612ffb84828501612fc2565b91505092915050565b6000819050919050565b600061302961302461301f84613004565b612347565b61229b565b9050919050565b6130398161300e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130748161225d565b82525050565b6000613086838361306b565b60208301905092915050565b6000602082019050919050565b60006130aa8261303f565b6130b4818561304a565b93506130bf8361305b565b8060005b838110156130f05781516130d7888261307a565b97506130e283613092565b9250506001810190506130c3565b5085935050505092915050565b600060a08201905061311260008301886123c1565b61311f6020830187613030565b8181036040830152613131818661309f565b9050613140606083018561243e565b61314d60808301846123c1565b9695505050505050565b600060c08201905061316c600083018961243e565b61317960208301886123c1565b6131866040830187613030565b6131936060830186613030565b6131a0608083018561243e565b6131ad60a08301846123c1565b979650505050505050565b6000815190506131c7816122a5565b92915050565b6000806000606084860312156131e6576131e5612238565b5b60006131f4868287016131b8565b9350506020613205868287016131b8565b9250506040613216868287016131b8565b915050925092509256fea2646970667358221220e11913beee73ebb338f99e49bb0099e7f2c0b1f51a22140c9a072055e01339f664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d0e0c107146105f1578063d46980161461061a576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610618600480360381019061061391906124f8565b610be5565b005b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906126ad565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612765565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610cc2565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127f7565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bed611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610c8a919061232c565b60405180910390a25050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612889565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906129ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290612a19565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b3d565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612ba9565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612bc9565b6115199190612c3a565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612bc9565b61154c9190612c3a565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612bc9565b61157f9190612c3a565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612bc9565b6116429190612c3a565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612bc9565b6116759190612c3a565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612bc9565b6116a89190612c3a565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c6b565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612d11565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612da3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e35565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ec7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612bc9565b611bab9190612c3a565b611bb59190612c3a565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c6b565b611c629190612c6b565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ee7565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f4f565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f4f565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612bc9565b905092915050565b60008183611e259190612c3a565b905092915050565b505050565b505050565b60008183611e459190612c6b565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f64565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f93565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fd7565b81600181518110611f8d57611f8c612f93565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130fd565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613157565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131cd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920486172726973207673205472756d706160008201527f63746976652e0000000000000000000000000000000000000000000000000000602082015250565b6000612697602683612191565b91506126a28261263b565b604082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265204860008201527f6172726973207673205472756d7072656d6f7665642066726f6d206175746f6d60208201527f617465644d61726b65744d616b65725061697273000000000000000000000000604082015250565b600061274f605483612191565b915061275a826126cd565b606082019050919050565b6000602082019050818103600083015261277e81612742565b9050919050565b7f45524332303a2064656372656173656420486172726973207673205472756d7060008201527f616c6c6f77616e63652062656c6f77207a65726f000000000000000000000000602082015250565b60006127e1603483612191565b91506127ec82612785565b604082019050919050565b60006020820190508181036000830152612810816127d4565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468654861727269732060008201527f7673205472756d70207a65726f20616464726573730000000000000000000000602082015250565b6000612873603583612191565b915061287e82612817565b604082019050919050565b600060208201905081810360008301526128a281612866565b9050919050565b7f45524332303a20486172726973207673205472756d70617070726f766520667260008201527f6f6d20746865207a65726f206164647265737300000000000000000000000000602082015250565b6000612905603383612191565b9150612910826128a9565b604082019050919050565b60006020820190508181036000830152612934816128f8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20486172726960008201527f73207673205472756d7061646472657373000000000000000000000000000000602082015250565b6000612997603183612191565b91506129a28261293b565b604082019050919050565b600060208201905081810360008301526129c68161298a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a03601d83612191565b9150612a0e826129cd565b602082019050919050565b60006020820190508181036000830152612a32816129f6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865204861727269732060008201527f7673205472756d707a65726f2061646472657373000000000000000000000000602082015250565b6000612a95603483612191565b9150612aa082612a39565b604082019050919050565b60006020820190508181036000830152612ac481612a88565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b27602383612191565b9150612b3282612acb565b604082019050919050565b60006020820190508181036000830152612b5681612b1a565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b93601883612191565b9150612b9e82612b5d565b602082019050919050565b60006020820190508181036000830152612bc281612b86565b9050919050565b6000612bd48261229b565b9150612bdf8361229b565b9250828202612bed8161229b565b91508282048414831517612c0457612c036125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c458261229b565b9150612c508361229b565b925082612c6057612c5f612c0b565b5b828204905092915050565b6000612c768261229b565b9150612c818361229b565b9250828203905081811115612c9957612c986125d8565b5b92915050565b7f4f776e61626c653a2063616c6c657220486172726973207673205472756d706960008201527f73206e6f7420746865206f776e65720000000000000000000000000000000000602082015250565b6000612cfb602f83612191565b9150612d0682612c9f565b604082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f45524332303a20486172726973207673205472756d707472616e73666572206660008201527f726f6d20746865207a65726f2061646472657373000000000000000000000000602082015250565b6000612d8d603483612191565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f486172726973207673205472756d7045524332303a207472616e73666572207460008201527f6f20746865207a65726f20616464726573730000000000000000000000000000602082015250565b6000612e1f603283612191565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742048617272697320767360008201527f205472756d70657863656564732062616c616e63650000000000000000000000602082015250565b6000612eb1603583612191565b9150612ebc82612e55565b604082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b6000606082019050612efc60008301866123c1565b612f0960208301856123c1565b612f1660408301846123c1565b949350505050565b600081905092915050565b50565b6000612f39600083612f1e565b9150612f4482612f29565b600082019050919050565b6000612f5a82612f2c565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fd18161226f565b92915050565b600060208284031215612fed57612fec612238565b5b6000612ffb84828501612fc2565b91505092915050565b6000819050919050565b600061302961302461301f84613004565b612347565b61229b565b9050919050565b6130398161300e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130748161225d565b82525050565b6000613086838361306b565b60208301905092915050565b6000602082019050919050565b60006130aa8261303f565b6130b4818561304a565b93506130bf8361305b565b8060005b838110156130f05781516130d7888261307a565b97506130e283613092565b9250506001810190506130c3565b5085935050505092915050565b600060a08201905061311260008301886123c1565b61311f6020830187613030565b8181036040830152613131818661309f565b9050613140606083018561243e565b61314d60808301846123c1565b9695505050505050565b600060c08201905061316c600083018961243e565b61317960208301886123c1565b6131866040830187613030565b6131936060830186613030565b6131a0608083018561243e565b6131ad60a08301846123c1565b979650505050505050565b6000815190506131c7816122a5565b92915050565b6000806000606084860312156131e6576131e5612238565b5b60006131f4868287016131b8565b9350506020613205868287016131b8565b9250506040613216868287016131b8565b915050925092509256fea2646970667358221220e11913beee73ebb338f99e49bb0099e7f2c0b1f51a22140c9a072055e01339f664736f6c63430008110033

Deployed Bytecode Sourcemap

26965:8713:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9425:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27048:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8365:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9675:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27256:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8207:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9978:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27318:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27604:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27351:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8536:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2048:103;;;;;;;;;;;;;:::i;:::-;;27143:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29821:188;;;;;;;;;;;;;:::i;:::-;;1392:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7118:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30229:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10256:520;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8919:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27180:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30019:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27219:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27454:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9216:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27412:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2306:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7579:100;7633:13;7666:5;7659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:100;:::o;9425:242::-;9544:4;9566:13;9582:12;:10;:12::i;:::-;9566:28;;9605:32;9614:5;9621:7;9630:6;9605:8;:32::i;:::-;9655:4;9648:11;;;9425:242;;;;:::o;27048:51::-;;;:::o;8365:108::-;8426:7;8453:12;;8446:19;;8365:108;:::o;9675:295::-;9806:4;9823:15;9841:12;:10;:12::i;:::-;9823:30;;9864:38;9880:4;9886:7;9895:6;9864:15;:38::i;:::-;9913:27;9923:4;9929:2;9933:6;9913:9;:27::i;:::-;9958:4;9951:11;;;9675:295;;;;;:::o;27256:53::-;27302:6;27256:53;:::o;8207:93::-;8265:5;8290:2;8283:9;;8207:93;:::o;9978:270::-;10093:4;10115:13;10131:12;:10;:12::i;:::-;10115:28;;10154:64;10163:5;10170:7;10207:10;10179:25;10189:5;10196:7;10179:9;:25::i;:::-;:38;;;;:::i;:::-;10154:8;:64::i;:::-;10236:4;10229:11;;;9978:270;;;;:::o;27106:28::-;;;;;;;;;;;;;:::o;27318:26::-;;;;;;;;;;;;;:::o;27604:28::-;;;;:::o;27351:23::-;;;;;;;;;;;;;:::o;8536:177::-;8655:7;8687:9;:18;8697:7;8687:18;;;;;;;;;;;;;;;;8680:25;;8536:177;;;:::o;2048:103::-;1278:13;:11;:13::i;:::-;2113:30:::1;2140:1;2113:18;:30::i;:::-;2048:103::o:0;27143:30::-;;;;;;;;;;;;;:::o;29821:188::-;1278:13;:11;:13::i;:::-;29883:14:::1;;;;;;;;;;;29882:15;29874:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29968:4;29951:14;;:21;;;;;;;;;;;;;;;;;;29997:4;29983:11;;:18;;;;;;;;;;;;;;;;;;29821:188::o:0;1392:87::-;1438:7;1465:6;;;;;;;;;;;1458:13;;1392:87;:::o;7118:26::-;;;;:::o;7798:104::-;7854:13;7887:7;7880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7798:104;:::o;30229:269::-;1278:13;:11;:13::i;:::-;30336::::1;;;;;;;;;;;30328:21;;:4;:21;;::::0;30320:118:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30449:41;30478:4;30484:5;30449:28;:41::i;:::-;30229:269:::0;;:::o;10256:520::-;10376:4;10398:13;10414:12;:10;:12::i;:::-;10398:28;;10437:24;10464:25;10474:5;10481:7;10464:9;:25::i;:::-;10437:52;;10542:15;10522:16;:35;;10500:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;10673:60;10682:5;10689:7;10717:15;10698:16;:34;10673:8;:60::i;:::-;10764:4;10757:11;;;;10256:520;;;;:::o;8919:234::-;9034:4;9056:13;9072:12;:10;:12::i;:::-;9056:28;;9095;9105:5;9112:2;9116:6;9095:9;:28::i;:::-;9141:4;9134:11;;;8919:234;;;;:::o;27180:32::-;;;;;;;;;;;;;:::o;30019:202::-;1278:13;:11;:13::i;:::-;30155:8:::1;30118:25;:34;30144:7;30118:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;30195:7;30179:34;;;30204:8;30179:34;;;;;;:::i;:::-;;;;;;;;30019:202:::0;;:::o;27219:30::-;;;;;;;;;;;;;:::o;27454:27::-;;;;:::o;9216:201::-;9350:7;9382:11;:18;9394:5;9382:18;;;;;;;;;;;;;;;:27;9401:7;9382:27;;;;;;;;;;;;;;;;9375:34;;9216:201;;;;:::o;27412:33::-;;;;:::o;2306:253::-;1278:13;:11;:13::i;:::-;2429:1:::1;2409:22;;:8;:22;;::::0;2387:125:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2523:28;2542:8;2523:18;:28::i;:::-;2306:253:::0;:::o;444:98::-;497:7;524:10;517:17;;444:98;:::o;13013:410::-;13166:1;13149:19;;:5;:19;;;13141:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13262:1;13243:21;;:7;:21;;;13235:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13361:6;13331:11;:18;13343:5;13331:18;;;;;;;;;;;;;;;:27;13350:7;13331:27;;;;;;;;;;;;;;;:36;;;;13399:7;13383:32;;13392:5;13383:32;;;13408:6;13383:32;;;;;;:::i;:::-;;;;;;;;13013:410;;;:::o;13431:502::-;13566:24;13593:25;13603:5;13610:7;13593:9;:25::i;:::-;13566:52;;13653:17;13633:16;:37;13629:297;;13733:6;13713:16;:26;;13687:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13848:51;13857:5;13864:7;13892:6;13873:16;:25;13848:8;:51::i;:::-;13629:297;13555:378;13431:502;;;:::o;30704:2463::-;30852:1;30836:18;;:4;:18;;;30828:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;30944:1;30930:16;;:2;:16;;;30922:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31005:14;;;;;;;;;;;:49;;;;31023:25;:31;31049:4;31023:31;;;;;;;;;;;;;;;;;;;;;;;;;31005:49;:82;;;;31058:25;:29;31084:2;31058:29;;;;;;;;;;;;;;;;;;;;;;;;;31005:82;30997:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;31141:1;31131:6;:11;31127:93;;31159:28;31175:4;31181:2;31185:1;31159:15;:28::i;:::-;31202:7;;31127:93;31234:28;31265:24;31283:4;31265:9;:24::i;:::-;31234:55;;31302:12;31341:18;;31317:20;:42;;31302:57;;31390:7;:35;;;;;31414:11;;;;;;;;;;;31390:35;:48;;;;;31429:9;;;;;;;;;;;31428:10;31390:48;:82;;;;;31440:26;:32;31467:4;31440:32;;;;;;;;;;;;;;;;;;;;;;;;;31390:82;:131;;;;;31490:25;:31;31516:4;31490:31;;;;;;;;;;;;;;;;;;;;;;;;;31489:32;31390:131;:178;;;;;31539:25;:29;31565:2;31539:29;;;;;;;;;;;;;;;;;;;;;;;;;31538:30;31390:178;31372:313;;;31607:4;31595:9;;:16;;;;;;;;;;;;;;;;;;31628:11;:9;:11::i;:::-;31668:5;31656:9;;:17;;;;;;;;;;;;;;;;;;31372:313;31697:12;31713:9;;;;;;;;;;;31712:10;31697:25;;31739;:31;31765:4;31739:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31774:25;:29;31800:2;31774:29;;;;;;;;;;;;;;;;;;;;;;;;;31739:64;31735:112;;;31830:5;31820:15;;31735:112;31859:12;31892:7;31888:1187;;;31944:26;:30;31971:2;31944:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31994:1;31978:13;;:17;31944:51;31940:986;;;32023:36;32053:5;32023:25;32034:13;;32023:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32016:43;;32172:13;;32130:17;;32123:4;:24;;;;:::i;:::-;32122:63;;;;:::i;:::-;32078:19;;:107;;;;;;;:::i;:::-;;;;;;;;32298:13;;32256:17;;32249:4;:24;;;;:::i;:::-;32248:63;;;;:::i;:::-;32204:19;;:107;;;;;;;:::i;:::-;;;;;;;;32428:13;;32384:19;;32377:4;:26;;;;:::i;:::-;32376:65;;;;:::i;:::-;32330:21;;:111;;;;;;;:::i;:::-;;;;;;;;31940:986;;;32503:26;:32;32530:4;32503:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32554:1;32539:12;;:16;32503:52;32499:427;;;32583:35;32612:5;32583:24;32594:12;;32583:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32576:42;;32688:12;;32668:16;;32661:4;:23;;;;:::i;:::-;32660:40;;;;:::i;:::-;32637:19;;:63;;;;;;;:::i;:::-;;;;;;;;32770:12;;32750:16;;32743:4;:23;;;;:::i;:::-;32742:40;;;;:::i;:::-;32719:19;;:63;;;;;;;:::i;:::-;;;;;;;;32898:12;;32855:18;;32848:4;:25;;;;:::i;:::-;32847:63;;;;:::i;:::-;32801:21;;:109;;;;;;;:::i;:::-;;;;;;;;32499:427;31940:986;32953:1;32946:4;:8;32942:91;;;32975:42;32991:4;33005;33012;32975:15;:42::i;:::-;32942:91;33059:4;33049:14;;;;;:::i;:::-;;;31888:1187;33087:33;33103:4;33109:2;33113:6;33087:15;:33::i;:::-;33147:12;;33131:13;:28;;;;30817:2350;;;;30704:2463;;;;:::o;1557:147::-;1632:12;:10;:12::i;:::-;1621:23;;:7;:5;:7::i;:::-;:23;;;1613:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1557:147::o;2719:191::-;2793:16;2812:6;;;;;;;;;;;2793:25;;2838:8;2829:6;;:17;;;;;;;;;;;;;;;;;;2893:8;2862:40;;2883:8;2862:40;;;;;;;;;;;;2782:128;2719:191;:::o;30508:188::-;30627:5;30592:26;:32;30619:4;30592:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30682:5;30648:40;;30676:4;30648:40;;;;;;;;;;;;30508:188;;:::o;10784:937::-;10931:1;10915:18;;:4;:18;;;10907:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;11023:1;11009:16;;:2;:16;;;11001:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11093:38;11114:4;11120:2;11124:6;11093:20;:38::i;:::-;11144:19;11166:9;:15;11176:4;11166:15;;;;;;;;;;;;;;;;11144:37;;11229:6;11214:11;:21;;11192:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;11384:6;11370:11;:20;11352:9;:15;11362:4;11352:15;;;;;;;;;;;;;;;:38;;;;11602:6;11585:9;:13;11595:2;11585:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11652:2;11637:26;;11646:4;11637:26;;;11656:6;11637:26;;;;;;:::i;:::-;;;;;;;;11676:37;11696:4;11702:2;11706:6;11676:19;:37::i;:::-;10896:825;10784:937;;;:::o;34066:1607::-;34107:23;34133:24;34151:4;34133:9;:24::i;:::-;34107:50;;34168:25;34266:21;;34231:19;;34196;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;34168:119;;34298:12;34325:23;34439:1;34406:17;34370:19;;34352:15;:37;;;;:::i;:::-;34351:72;;;;:::i;:::-;:89;;;;:::i;:::-;34325:115;;34451:26;34480:36;34500:15;34480;:19;;:36;;;;:::i;:::-;34451:65;;34529:25;34557:21;34529:49;;34591:37;34609:18;34591:17;:37::i;:::-;34641:18;34662:44;34688:17;34662:21;:25;;:44;;;;:::i;:::-;34641:65;;34719:23;34745:82;34799:17;34745:35;34760:19;;34745:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34719:108;;34840:25;34868:84;34924:17;34868:37;34883:21;;34868:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34840:112;;34965:23;35048:17;35017:15;34991:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34965:100;;35100:1;35078:19;:23;;;;35134:1;35112:19;:23;;;;35170:1;35146:21;:25;;;;35206:1;35188:15;:19;:42;;;;;35229:1;35211:15;:19;35188:42;35184:280;;;35247:47;35261:15;35278;35247:13;:47::i;:::-;35314:138;35347:18;35384:15;35418:19;;35314:138;;;;;;;;:::i;:::-;;;;;;;;35184:280;35498:17;;;;;;;;;;;35490:31;;35529:17;35490:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35476:75;;;;;35586:15;;;;;;;;;;;35578:29;;35629:21;35578:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35564:101;;;;;34096:1577;;;;;;;;;;34066:1607::o;17635:98::-;17693:7;17724:1;17720;:5;;;;:::i;:::-;17713:12;;17635:98;;;;:::o;18034:::-;18092:7;18123:1;18119;:5;;;;:::i;:::-;18112:12;;18034:98;;;;:::o;13941:125::-;;;;:::o;14074:124::-;;;;:::o;17263:98::-;17321:7;17352:1;17348;:5;;;;:::i;:::-;17341:12;;17263:98;;;;:::o;33175:503::-;33243:21;33281:1;33267:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33243:40;;33312:4;33294;33299:1;33294:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33338:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33328:4;33333:1;33328:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33373:62;33390:4;33405:15;33423:11;33373:8;:62::i;:::-;33474:15;:66;;;33555:11;33581:1;33597:4;33624;33644:15;33474:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33232:446;33175:503;:::o;33686:372::-;33769:62;33786:4;33801:15;33819:11;33769:8;:62::i;:::-;33844:15;:31;;;33883:9;33916:4;33936:11;33962:1;33978;33994:15;;;;;;;;;;;34024;33844:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33686:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:225::-;8768:34;8764:1;8756:6;8752:14;8745:58;8837:8;8832:2;8824:6;8820:15;8813:33;8628:225;:::o;8859:366::-;9001:3;9022:67;9086:2;9081:3;9022:67;:::i;:::-;9015:74;;9098:93;9187:3;9098:93;:::i;:::-;9216:2;9211:3;9207:12;9200:19;;8859:366;;;:::o;9231:419::-;9397:4;9435:2;9424:9;9420:18;9412:26;;9484:9;9478:4;9474:20;9470:1;9459:9;9455:17;9448:47;9512:131;9638:4;9512:131;:::i;:::-;9504:139;;9231:419;;;:::o;9656:308::-;9796:34;9792:1;9784:6;9780:14;9773:58;9865:34;9860:2;9852:6;9848:15;9841:59;9934:22;9929:2;9921:6;9917:15;9910:47;9656:308;:::o;9970:366::-;10112:3;10133:67;10197:2;10192:3;10133:67;:::i;:::-;10126:74;;10209:93;10298:3;10209:93;:::i;:::-;10327:2;10322:3;10318:12;10311:19;;9970:366;;;:::o;10342:419::-;10508:4;10546:2;10535:9;10531:18;10523:26;;10595:9;10589:4;10585:20;10581:1;10570:9;10566:17;10559:47;10623:131;10749:4;10623:131;:::i;:::-;10615:139;;10342:419;;;:::o;10767:239::-;10907:34;10903:1;10895:6;10891:14;10884:58;10976:22;10971:2;10963:6;10959:15;10952:47;10767:239;:::o;11012:366::-;11154:3;11175:67;11239:2;11234:3;11175:67;:::i;:::-;11168:74;;11251:93;11340:3;11251:93;:::i;:::-;11369:2;11364:3;11360:12;11353:19;;11012:366;;;:::o;11384:419::-;11550:4;11588:2;11577:9;11573:18;11565:26;;11637:9;11631:4;11627:20;11623:1;11612:9;11608:17;11601:47;11665:131;11791:4;11665:131;:::i;:::-;11657:139;;11384:419;;;:::o;11809:240::-;11949:34;11945:1;11937:6;11933:14;11926:58;12018:23;12013:2;12005:6;12001:15;11994:48;11809:240;:::o;12055:366::-;12197:3;12218:67;12282:2;12277:3;12218:67;:::i;:::-;12211:74;;12294:93;12383:3;12294:93;:::i;:::-;12412:2;12407:3;12403:12;12396:19;;12055:366;;;:::o;12427:419::-;12593:4;12631:2;12620:9;12616:18;12608:26;;12680:9;12674:4;12670:20;12666:1;12655:9;12651:17;12644:47;12708:131;12834:4;12708:131;:::i;:::-;12700:139;;12427:419;;;:::o;12852:238::-;12992:34;12988:1;12980:6;12976:14;12969:58;13061:21;13056:2;13048:6;13044:15;13037:46;12852:238;:::o;13096:366::-;13238:3;13259:67;13323:2;13318:3;13259:67;:::i;:::-;13252:74;;13335:93;13424:3;13335:93;:::i;:::-;13453:2;13448:3;13444:12;13437:19;;13096:366;;;:::o;13468:419::-;13634:4;13672:2;13661:9;13657:18;13649:26;;13721:9;13715:4;13711:20;13707:1;13696:9;13692:17;13685:47;13749:131;13875:4;13749:131;:::i;:::-;13741:139;;13468:419;;;:::o;13893:236::-;14033:34;14029:1;14021:6;14017:14;14010:58;14102:19;14097:2;14089:6;14085:15;14078:44;13893:236;:::o;14135:366::-;14277:3;14298:67;14362:2;14357:3;14298:67;:::i;:::-;14291:74;;14374:93;14463:3;14374:93;:::i;:::-;14492:2;14487:3;14483:12;14476:19;;14135:366;;;:::o;14507:419::-;14673:4;14711:2;14700:9;14696:18;14688:26;;14760:9;14754:4;14750:20;14746:1;14735:9;14731:17;14724:47;14788:131;14914:4;14788:131;:::i;:::-;14780:139;;14507:419;;;:::o;14932:179::-;15072:31;15068:1;15060:6;15056:14;15049:55;14932:179;:::o;15117:366::-;15259:3;15280:67;15344:2;15339:3;15280:67;:::i;:::-;15273:74;;15356:93;15445:3;15356:93;:::i;:::-;15474:2;15469:3;15465:12;15458:19;;15117:366;;;:::o;15489:419::-;15655:4;15693:2;15682:9;15678:18;15670:26;;15742:9;15736:4;15732:20;15728:1;15717:9;15713:17;15706:47;15770:131;15896:4;15770:131;:::i;:::-;15762:139;;15489:419;;;:::o;15914:239::-;16054:34;16050:1;16042:6;16038:14;16031:58;16123:22;16118:2;16110:6;16106:15;16099:47;15914:239;:::o;16159:366::-;16301:3;16322:67;16386:2;16381:3;16322:67;:::i;:::-;16315:74;;16398:93;16487:3;16398:93;:::i;:::-;16516:2;16511:3;16507:12;16500:19;;16159:366;;;:::o;16531:419::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16784:9;16778:4;16774:20;16770:1;16759:9;16755:17;16748:47;16812:131;16938:4;16812:131;:::i;:::-;16804:139;;16531:419;;;:::o;16956:222::-;17096:34;17092:1;17084:6;17080:14;17073:58;17165:5;17160:2;17152:6;17148:15;17141:30;16956:222;:::o;17184:366::-;17326:3;17347:67;17411:2;17406:3;17347:67;:::i;:::-;17340:74;;17423:93;17512:3;17423:93;:::i;:::-;17541:2;17536:3;17532:12;17525:19;;17184:366;;;:::o;17556:419::-;17722:4;17760:2;17749:9;17745:18;17737:26;;17809:9;17803:4;17799:20;17795:1;17784:9;17780:17;17773:47;17837:131;17963:4;17837:131;:::i;:::-;17829:139;;17556:419;;;:::o;17981:174::-;18121:26;18117:1;18109:6;18105:14;18098:50;17981:174;:::o;18161:366::-;18303:3;18324:67;18388:2;18383:3;18324:67;:::i;:::-;18317:74;;18400:93;18489:3;18400:93;:::i;:::-;18518:2;18513:3;18509:12;18502:19;;18161:366;;;:::o;18533:419::-;18699:4;18737:2;18726:9;18722:18;18714:26;;18786:9;18780:4;18776:20;18772:1;18761:9;18757:17;18750:47;18814:131;18940:4;18814:131;:::i;:::-;18806:139;;18533:419;;;:::o;18958:410::-;18998:7;19021:20;19039:1;19021:20;:::i;:::-;19016:25;;19055:20;19073:1;19055:20;:::i;:::-;19050:25;;19110:1;19107;19103:9;19132:30;19150:11;19132:30;:::i;:::-;19121:41;;19311:1;19302:7;19298:15;19295:1;19292:22;19272:1;19265:9;19245:83;19222:139;;19341:18;;:::i;:::-;19222:139;19006:362;18958:410;;;;:::o;19374:180::-;19422:77;19419:1;19412:88;19519:4;19516:1;19509:15;19543:4;19540:1;19533:15;19560:185;19600:1;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19651:20;19669:1;19651:20;:::i;:::-;19646:25;;19690:1;19680:35;;19695:18;;:::i;:::-;19680:35;19737:1;19734;19730:9;19725:14;;19560:185;;;;:::o;19751:194::-;19791:4;19811:20;19829:1;19811:20;:::i;:::-;19806:25;;19845:20;19863:1;19845:20;:::i;:::-;19840:25;;19889:1;19886;19882:9;19874:17;;19913:1;19907:4;19904:11;19901:37;;;19918:18;;:::i;:::-;19901:37;19751:194;;;;:::o;19951:234::-;20091:34;20087:1;20079:6;20075:14;20068:58;20160:17;20155:2;20147:6;20143:15;20136:42;19951:234;:::o;20191:366::-;20333:3;20354:67;20418:2;20413:3;20354:67;:::i;:::-;20347:74;;20430:93;20519:3;20430:93;:::i;:::-;20548:2;20543:3;20539:12;20532:19;;20191:366;;;:::o;20563:419::-;20729:4;20767:2;20756:9;20752:18;20744:26;;20816:9;20810:4;20806:20;20802:1;20791:9;20787:17;20780:47;20844:131;20970:4;20844:131;:::i;:::-;20836:139;;20563:419;;;:::o;20988:239::-;21128:34;21124:1;21116:6;21112:14;21105:58;21197:22;21192:2;21184:6;21180:15;21173:47;20988:239;:::o;21233:366::-;21375:3;21396:67;21460:2;21455:3;21396:67;:::i;:::-;21389:74;;21472:93;21561:3;21472:93;:::i;:::-;21590:2;21585:3;21581:12;21574:19;;21233:366;;;:::o;21605:419::-;21771:4;21809:2;21798:9;21794:18;21786:26;;21858:9;21852:4;21848:20;21844:1;21833:9;21829:17;21822:47;21886:131;22012:4;21886:131;:::i;:::-;21878:139;;21605:419;;;:::o;22030:237::-;22170:34;22166:1;22158:6;22154:14;22147:58;22239:20;22234:2;22226:6;22222:15;22215:45;22030:237;:::o;22273:366::-;22415:3;22436:67;22500:2;22495:3;22436:67;:::i;:::-;22429:74;;22512:93;22601:3;22512:93;:::i;:::-;22630:2;22625:3;22621:12;22614:19;;22273:366;;;:::o;22645:419::-;22811:4;22849:2;22838:9;22834:18;22826:26;;22898:9;22892:4;22888:20;22884:1;22873:9;22869:17;22862:47;22926:131;23052:4;22926:131;:::i;:::-;22918:139;;22645:419;;;:::o;23070:240::-;23210:34;23206:1;23198:6;23194:14;23187:58;23279:23;23274:2;23266:6;23262:15;23255:48;23070:240;:::o;23316:366::-;23458:3;23479:67;23543:2;23538:3;23479:67;:::i;:::-;23472:74;;23555:93;23644:3;23555:93;:::i;:::-;23673:2;23668:3;23664:12;23657:19;;23316:366;;;:::o;23688:419::-;23854:4;23892:2;23881:9;23877:18;23869:26;;23941:9;23935:4;23931:20;23927:1;23916:9;23912:17;23905:47;23969:131;24095:4;23969:131;:::i;:::-;23961:139;;23688:419;;;:::o;24113:442::-;24262:4;24300:2;24289:9;24285:18;24277:26;;24313:71;24381:1;24370:9;24366:17;24357:6;24313:71;:::i;:::-;24394:72;24462:2;24451:9;24447:18;24438:6;24394:72;:::i;:::-;24476;24544:2;24533:9;24529:18;24520:6;24476:72;:::i;:::-;24113:442;;;;;;:::o;24561:147::-;24662:11;24699:3;24684:18;;24561:147;;;;:::o;24714:114::-;;:::o;24834:398::-;24993:3;25014:83;25095:1;25090:3;25014:83;:::i;:::-;25007:90;;25106:93;25195:3;25106:93;:::i;:::-;25224:1;25219:3;25215:11;25208:18;;24834:398;;;:::o;25238:379::-;25422:3;25444:147;25587:3;25444:147;:::i;:::-;25437:154;;25608:3;25601:10;;25238:379;;;:::o;25623:180::-;25671:77;25668:1;25661:88;25768:4;25765:1;25758:15;25792:4;25789:1;25782:15;25809:180;25857:77;25854:1;25847:88;25954:4;25951:1;25944:15;25978:4;25975:1;25968:15;25995:143;26052:5;26083:6;26077:13;26068:22;;26099:33;26126:5;26099:33;:::i;:::-;25995:143;;;;:::o;26144:351::-;26214:6;26263:2;26251:9;26242:7;26238:23;26234:32;26231:119;;;26269:79;;:::i;:::-;26231:119;26389:1;26414:64;26470:7;26461:6;26450:9;26446:22;26414:64;:::i;:::-;26404:74;;26360:128;26144:351;;;;:::o;26501:85::-;26546:7;26575:5;26564:16;;26501:85;;;:::o;26592:158::-;26650:9;26683:61;26701:42;26710:32;26736:5;26710:32;:::i;:::-;26701:42;:::i;:::-;26683:61;:::i;:::-;26670:74;;26592:158;;;:::o;26756:147::-;26851:45;26890:5;26851:45;:::i;:::-;26846:3;26839:58;26756:147;;:::o;26909:114::-;26976:6;27010:5;27004:12;26994:22;;26909:114;;;:::o;27029:184::-;27128:11;27162:6;27157:3;27150:19;27202:4;27197:3;27193:14;27178:29;;27029:184;;;;:::o;27219:132::-;27286:4;27309:3;27301:11;;27339:4;27334:3;27330:14;27322:22;;27219:132;;;:::o;27357:108::-;27434:24;27452:5;27434:24;:::i;:::-;27429:3;27422:37;27357:108;;:::o;27471:179::-;27540:10;27561:46;27603:3;27595:6;27561:46;:::i;:::-;27639:4;27634:3;27630:14;27616:28;;27471:179;;;;:::o;27656:113::-;27726:4;27758;27753:3;27749:14;27741:22;;27656:113;;;:::o;27805:732::-;27924:3;27953:54;28001:5;27953:54;:::i;:::-;28023:86;28102:6;28097:3;28023:86;:::i;:::-;28016:93;;28133:56;28183:5;28133:56;:::i;:::-;28212:7;28243:1;28228:284;28253:6;28250:1;28247:13;28228:284;;;28329:6;28323:13;28356:63;28415:3;28400:13;28356:63;:::i;:::-;28349:70;;28442:60;28495:6;28442:60;:::i;:::-;28432:70;;28288:224;28275:1;28272;28268:9;28263:14;;28228:284;;;28232:14;28528:3;28521:10;;27929:608;;;27805:732;;;;:::o;28543:831::-;28806:4;28844:3;28833:9;28829:19;28821:27;;28858:71;28926:1;28915:9;28911:17;28902:6;28858:71;:::i;:::-;28939:80;29015:2;29004:9;29000:18;28991:6;28939:80;:::i;:::-;29066:9;29060:4;29056:20;29051:2;29040:9;29036:18;29029:48;29094:108;29197:4;29188:6;29094:108;:::i;:::-;29086:116;;29212:72;29280:2;29269:9;29265:18;29256:6;29212:72;:::i;:::-;29294:73;29362:3;29351:9;29347:19;29338:6;29294:73;:::i;:::-;28543:831;;;;;;;;:::o;29380:807::-;29629:4;29667:3;29656:9;29652:19;29644:27;;29681:71;29749:1;29738:9;29734:17;29725:6;29681:71;:::i;:::-;29762:72;29830:2;29819:9;29815:18;29806:6;29762:72;:::i;:::-;29844:80;29920:2;29909:9;29905:18;29896:6;29844:80;:::i;:::-;29934;30010:2;29999:9;29995:18;29986:6;29934:80;:::i;:::-;30024:73;30092:3;30081:9;30077:19;30068:6;30024:73;:::i;:::-;30107;30175:3;30164:9;30160:19;30151:6;30107:73;:::i;:::-;29380:807;;;;;;;;;:::o;30193:143::-;30250:5;30281:6;30275:13;30266:22;;30297:33;30324:5;30297:33;:::i;:::-;30193:143;;;;:::o;30342:663::-;30430:6;30438;30446;30495:2;30483:9;30474:7;30470:23;30466:32;30463:119;;;30501:79;;:::i;:::-;30463:119;30621:1;30646:64;30702:7;30693:6;30682:9;30678:22;30646:64;:::i;:::-;30636:74;;30592:128;30759:2;30785:64;30841:7;30832:6;30821:9;30817:22;30785:64;:::i;:::-;30775:74;;30730:129;30898:2;30924:64;30980:7;30971:6;30960:9;30956:22;30924:64;:::i;:::-;30914:74;;30869:129;30342:663;;;;;:::o

Swarm Source

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