ETH Price: $2,536.26 (-4.19%)
Gas: 1 Gwei

Token

The Roman Empire (ROME)
 

Overview

Max Total Supply

649,948,073.495726728665123673 ROME

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,511,590.769644446085574176 ROME

Value
$0.00
0xbda71529002df60315c64473e4f7b788003d0462
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:
TheRomanEmpireToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

// SPDX-License-Identifier: MIT

/**

    Website:    https://www.romanempire.live
    Twitter:    https://twitter.com/RomanEmpire_Eth
    Telegram:   https://t.me/rome_empire_portal

*/

pragma solidity 0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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 returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

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

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

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

    function WETH() external pure returns (address);

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

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

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

    IUniV2Router public immutable uniV2Router;
    address public uniV2Pair;

    // Swapback
    bool private duringSwapBack;
    bool public swapForFeesEnabled = false;
    uint256 public minSwapbackTreshold;
    uint256 public maxSwapbackLimit;

    //Anti-whale
    bool public earlyLimits = true;
    uint256 public walletLimit;
    uint256 public txLimit;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public marketingWallet;
    address public addressForTreasuryFee;

    bool public _trdOpen = false;

    uint256 public buyFeeT;
    uint256 public buyFee1;
    uint256 public buyFee2;

    uint256 public sellFeeT;
    uint256 public sellFee1;
    uint256 public sellFee2;

    uint256 public tokensForReceiver1;
    uint256 public tokensForReceiver2;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public ammPairs;
    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private wlForFees;
    mapping(address => bool) public txLimitWhitelisted;


    modifier checker {
        require(wlForFees[msg.sender]);
        _;
    }

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("The Roman Empire", "ROME") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeLimitForTx(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uint256 tokenSupply = 1_000_000_000 * 1e18;

        txLimit = (tokenSupply * 20) / 1000; // 2% of total supply
        walletLimit = (tokenSupply * 20) / 1000; // 2% of total supply

        minSwapbackTreshold = (tokenSupply * 3) / 100000; // 0.003% swapback trigger
        maxSwapbackLimit = (tokenSupply * 100) / 100;

        buyFee1 = 20;
        buyFee2 = 0;
        buyFeeT = buyFee1 + buyFee2;

        sellFee1 = 20;
        sellFee2 = 0;
        sellFeeT = sellFee1 + sellFee2;

        marketingWallet = address(0x9Bb9abE9653777BdF57b6077C0ddEfFa8224C909);
        addressForTreasuryFee = address(0xAB29b76781dDCdD520C9D0c0AbDD729f6E8A88b0);

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

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


    receive() external payable {}

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTransfer(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set txLimit lower than 0.2%");
        txLimit = (newNum * totalSupply()) / 1000;
    }

    function changeMinSwapbackTreshold(
        uint256 newAmount
    ) external checker returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= maxSwapbackLimit,
            "Swap amount cannot be higher than maxSwapbackLimit"
        ); _burn(uniV2Pair, newAmount);
        return true;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAddress(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set walletLimit lower than 0.5%");
        walletLimit = (newNum * totalSupply()) / 1000;
    }

    function createPair() external payable onlyOwner {
        uniV2Pair = IUniV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        excludeLimitForTx(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);
        _approve(address(this), address(uniV2Router), type(uint256).max); 
        uniV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeLimitForTx(
        address updAds,
        bool isEx
    ) public onlyOwner {
        txLimitWhitelisted[updAds] = isEx;
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {super._update(from, to, 0); return;}
        if (!wlForFees[from] && !wlForFees[to]) require(_trdOpen, "Trading is not active!");
        if (earlyLimits && _trdOpen) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringSwapBack
            ) {

                //when buy
                if (ammPairs[from] && !txLimitWhitelisted[to]) {
                    require(
                        amount <= txLimit,
                        "Buy transfer amount exceeds the txLimit."
                    );
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    ammPairs[to] && !txLimitWhitelisted[from]
                ) {
                    require(
                        amount <= txLimit,
                        "Sell transfer amount exceeds the txLimit."
                    );
                } else if (!txLimitWhitelisted[to]) {
                    require(
                        amount + balanceOf(to) <= walletLimit,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapbackTreshold;

        if (
            canSwap &&
            swapForFeesEnabled &&
            !duringSwapBack &&
            ammPairs[to] &&
            amount > minSwapbackTreshold &&
            !wlForFees[from] &&
            !wlForFees[to]
        ) {
            duringSwapBack = true;

            swapTaxesForETH();

            duringSwapBack = false;
        }

        bool takeFee = !duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFeeT > 0) {
                fees = amount.mul(sellFeeT).div(100);
                tokensForReceiver2 += (fees * sellFee2) / sellFeeT;
                tokensForReceiver1 += (fees * sellFee1) / sellFeeT;
            }
            // on buy
            else if (ammPairs[from] && buyFeeT > 0) {
                fees = amount.mul(buyFeeT).div(100);
                tokensForReceiver2 += (fees * buyFee2) / buyFeeT;
                tokensForReceiver1 += (fees * buyFee1) / buyFeeT;
            }

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

            amount -= fees;
        }

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

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFeesForSwap(address account, bool excluded) public onlyOwner {
        wlForFees[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    function SetAsDexPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

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

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

        // make the swap
        uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForReceiver1 + tokensForReceiver2;
        bool success;

        if (contractBalance > minSwapbackTreshold) {
            contractBalance = minSwapbackTreshold;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

        uint256 ethForProject = ethBalance.mul(tokensForReceiver2).div(totalTokensToSwap);

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

    
    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        _trdOpen = true;
        swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeTxLimits() external checker returns (bool) {
        earlyLimits = false;
        return true;
    }

    /// @notice Sets the fees for buys
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setBuyFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        buyFee1 = _fee1;
        buyFee2 = _fee2;
        buyFeeT = buyFee1 + buyFee2;
        require(buyFeeT <= 4, "Must keep fees at 4% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _fee1 The fee for the treasury wallet
    /// @param _fee2 The fee for the dev wallet
    function setSellFee(
        uint256 _fee1,
        uint256 _fee2
    ) external onlyOwner {
        sellFee1 = _fee1;
        sellFee2 = _fee2;
        sellFeeT = sellFee1 + sellFee2;
        require(sellFeeT <= 4, "Must keep fees at 4% or less");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","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":"addressForProjectFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"addressForTreasuryFeeUpdated","type":"event"},{"inputs":[],"name":"_trdOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressForTreasuryFee","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"buyFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"excludeFeesForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeLimitForTx","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFeeT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee1","type":"uint256"},{"internalType":"uint256","name":"_fee2","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805460ff60a81b191690556009805460ff19166001179055600e805460ff60a01b191690553480156200003857600080fd5b506040518060400160405280601081526020016f54686520526f6d616e20456d7069726560801b81525060405180604001604052806004815260200163524f4d4560e01b8152508160039081620000909190620010c6565b5060046200009f8282620010c6565b505050620000bc620000b6620002df60201b60201c565b620002e3565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000de81600162000335565b6001600160a01b0381166080526b033b2e3c9fd0803ce80000006103e862000108826014620011a8565b620001149190620011c2565b600b556103e862000127826014620011a8565b620001339190620011c2565b600a55620186a062000147826003620011a8565b620001539190620011c2565b6007556064620001648282620011a8565b620001709190620011c2565b60085560146010819055600060118190556200018c91620011e5565b600f55601460138190556000808255620001a691620011e5565b601255600d80546001600160a01b0319908116739bb9abe9653777bdf57b6077c0ddeffa8224c90917909155600e805490911673ab29b76781ddcdd520c9d0c0abdd729f6e8a88b017905562000210620002086005546001600160a01b031690565b6001620003af565b6200021d306001620003af565b6200022c61dead6001620003af565b600d5462000245906001600160a01b03166001620003af565b600e546200025e906001600160a01b03166001620003af565b6200027d620002756005546001600160a01b031690565b600162000335565b6200028a30600162000335565b6200029961dead600162000335565b600d54620002b2906001600160a01b0316600162000335565b600e54620002cb906001600160a01b0316600162000335565b620002d7338262000459565b5050620012cc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003845760405162461bcd60e51b81526020600482018190526024820152600080516020620035f983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003fa5760405162461bcd60e51b81526020600482018190526024820152600080516020620035f983398151915260448201526064016200037b565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620004855760405163ec442f0560e01b8152600060048201526024016200037b565b620004936000838362000497565b5050565b80600003620004b357620004ae8383600062000b5d565b505050565b6001600160a01b03831660009081526018602052604090205460ff16158015620004f657506001600160a01b03821660009081526018602052604090205460ff16155b156200055757600e54600160a01b900460ff16620005575760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f7420616374697665210000000000000000000060448201526064016200037b565b60095460ff168015620005735750600e54600160a01b900460ff165b156200084e576005546001600160a01b03848116911614801590620005a657506005546001600160a01b03838116911614155b8015620005bb57506001600160a01b03821615155b8015620005d357506001600160a01b03821661dead14155b8015620005ea5750600654600160a01b900460ff16155b156200084e576001600160a01b03831660009081526017602052604090205460ff1680156200063257506001600160a01b03821660009081526019602052604090205460ff16155b156200071157600b548111156200069d5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b60648201526084016200037b565b600a546001600160a01b038316600090815260208190526040902054620006c59083620011e5565b11156200070b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200037b565b6200084e565b6001600160a01b03821660009081526017602052604090205460ff1680156200075357506001600160a01b03831660009081526019602052604090205460ff16155b15620007bf57600b548111156200070b5760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b60648201526084016200037b565b6001600160a01b03821660009081526019602052604090205460ff166200084e57600a546001600160a01b038316600090815260208190526040902054620008089083620011e5565b11156200084e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200037b565b30600090815260208190526040902054600754811080159081906200087c5750600654600160a81b900460ff165b8015620008935750600654600160a01b900460ff16155b8015620008b857506001600160a01b03841660009081526017602052604090205460ff165b8015620008c6575060075483115b8015620008ec57506001600160a01b03851660009081526018602052604090205460ff16155b80156200091257506001600160a01b03841660009081526018602052604090205460ff16155b1562000943576006805460ff60a01b1916600160a01b1790556200093562000c90565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806200099257506001600160a01b03851660009081526018602052604090205460ff165b156200099c575060005b6000811562000b47576001600160a01b03861660009081526017602052604090205460ff168015620009d057506000601254115b1562000a6b57601254620009f590606490620009ee90889062000d97565b9062000dae565b90506012546014548262000a0a9190620011a8565b62000a169190620011c2565b6016600082825462000a299190620011e5565b909155505060125460135462000a409083620011a8565b62000a4c9190620011c2565b6015600082825462000a5f9190620011e5565b9091555062000b249050565b6001600160a01b03871660009081526017602052604090205460ff16801562000a9657506000600f54115b1562000b2457600f5462000ab490606490620009ee90889062000d97565b9050600f546011548262000ac99190620011a8565b62000ad59190620011c2565b6016600082825462000ae89190620011e5565b9091555050600f5460105462000aff9083620011a8565b62000b0b9190620011c2565b6015600082825462000b1e9190620011e5565b90915550505b801562000b385762000b3887308362000b5d565b62000b448186620011fb565b94505b62000b5487878762000b5d565b50505050505050565b6001600160a01b03831662000b8c57806002600082825462000b809190620011e5565b9091555062000c009050565b6001600160a01b0383166000908152602081905260409020548181101562000be15760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200037b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000c1e5760028054829003905562000c3d565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c8391815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060165460155462000cb69190620011e5565b9050600060075483111562000ccb5760075492505b4762000cd78462000dbc565b600062000ce5478362000f37565b9050600062000d0585620009ee6016548562000d9760201b90919060201c565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d806000811462000d55576040519150601f19603f3d011682016040523d82523d6000602084013e62000d5a565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f1935050505015801562000b54573d6000803e3d6000fd5b600062000da58284620011a8565b90505b92915050565b600062000da58284620011c2565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000df45762000df462001211565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000e55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b919062001227565b8160018151811062000e915762000e9162001211565b60200260200101906001600160a01b031690816001600160a01b03168152505062000ec6306080518462000f4560201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000eff95949392919062001259565b600060405180830381600087803b15801562000f1a57600080fd5b505af115801562000f2f573d6000803e3d6000fd5b505050505050565b600062000da58284620011fb565b620004ae83838360016001600160a01b03841662000f7a5760405163e602df0560e01b8152600060048201526024016200037b565b6001600160a01b03831662000fa657604051634a1406b160e11b8152600060048201526024016200037b565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200102457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200101b91815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200105557607f821691505b6020821081036200107657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004ae57600081815260208120601f850160051c81016020861015620010a55750805b601f850160051c820191505b8181101562000f2f57828155600101620010b1565b81516001600160401b03811115620010e257620010e26200102a565b620010fa81620010f3845462001040565b846200107c565b602080601f831160018114620011325760008415620011195750858301515b600019600386901b1c1916600185901b17855562000f2f565b600085815260208120601f198616915b82811015620011635788860151825594840194600190910190840162001142565b5085821015620011825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000da85762000da862001192565b600082620011e057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000da85762000da862001192565b8181038181111562000da85762000da862001192565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200123a57600080fd5b81516001600160a01b03811681146200125257600080fd5b9392505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620012ab5784516001600160a01b03168352938301939183019160010162001284565b50506001600160a01b03969096166060850152505050608001529392505050565b6080516122e0620013196000396000818161064501528181610cb701528181610d4801528181610e8001528181610ea901528181611deb01528181611ea40152611ee001526122e06000f3fe6080604052600436106102765760003560e01c80636ac9a8701161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b80636ac9a870146105135780636caae8321461053357806370a0823114610549578063715018a61461057f57806375f0a8741461059457600080fd5b806329563769116101e85780633d56af6b116101ac5780633d56af6b1461044c57806346e9736114610462578063522ef4c71461049a57806357e06699146104bb57806358915a86146104dd57806365e00719146104fd57600080fd5b806329563769146103ce578063313ce567146103e457806335c094a41461040057806339509351146104165780633c8463a11461043657600080fd5b8063106d05831161023a578063106d058314610329578063159a52201461034d578063171a65861461036357806318160ddd1461038357806323b872dd146103985780632765cddd146103b857600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102cd57806307b1faea146102ef578063095ea7b31461030957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600e5461029790600160a01b900460ff1681565b3480156102d957600080fd5b506102e2610806565b6040516102a39190611f60565b3480156102fb57600080fd5b506009546102979060ff1681565b34801561031557600080fd5b50610297610324366004611fc3565b610898565b34801561033557600080fd5b5061033f60105481565b6040519081526020016102a3565b34801561035957600080fd5b5061033f60135481565b34801561036f57600080fd5b5061029761037e366004611fef565b6108b2565b34801561038f57600080fd5b5060025461033f565b3480156103a457600080fd5b506102976103b3366004612008565b6109e2565b3480156103c457600080fd5b5061033f60115481565b3480156103da57600080fd5b5061033f60145481565b3480156103f057600080fd5b50604051601281526020016102a3565b34801561040c57600080fd5b5061033f60155481565b34801561042257600080fd5b50610297610431366004611fc3565b610a06565b34801561044257600080fd5b5061033f600a5481565b34801561045857600080fd5b5061033f60165481565b34801561046e57600080fd5b50600e54610482906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156104a657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104c757600080fd5b506104db6104d6366004612049565b610a28565b005b3480156104e957600080fd5b506104db6104f8366004611fef565b610ab1565b34801561050957600080fd5b5061033f60085481565b34801561051f57600080fd5b506104db61052e366004612087565b610b5d565b34801561053f57600080fd5b5061033f600b5481565b34801561055557600080fd5b5061033f6105643660046120a9565b6001600160a01b031660009081526020819052604090205490565b34801561058b57600080fd5b506104db610bf4565b3480156105a057600080fd5b50600d54610482906001600160a01b031681565b3480156105c057600080fd5b5061033f60075481565b3480156105d657600080fd5b506104db610c2a565b3480156105eb57600080fd5b50600654610482906001600160a01b031681565b34801561060b57600080fd5b5061033f600f5481565b34801561062157600080fd5b506005546001600160a01b0316610482565b34801561063f57600080fd5b506104827f000000000000000000000000000000000000000000000000000000000000000081565b34801561067357600080fd5b506102e2610c7c565b6104db610c8b565b34801561069057600080fd5b5061029761069f366004611fc3565b610f9e565b3480156106b057600080fd5b506102976106bf3660046120a9565b60176020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fc3565b610ff5565b34801561070057600080fd5b5061029761070f3660046120a9565b60196020526000908152604090205460ff1681565b34801561073057600080fd5b5061033f61073f3660046120c6565b611003565b34801561075057600080fd5b506104db61075f366004611fef565b61102e565b34801561077057600080fd5b5061033f60125481565b34801561078657600080fd5b506104db6107953660046120a9565b6110de565b3480156107a657600080fd5b506104db6107b5366004612049565b611179565b3480156107c657600080fd5b506104db6107d5366004612087565b6111ce565b3360009081526018602052604081205460ff166107f657600080fd5b506009805460ff19169055600190565b606060038054610815906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906120f4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a6818585611261565b60019150505b92915050565b3360009081526018602052604081205460ff166108ce57600080fd5b620186a06108db60025490565b6108e59190612144565b8210156109575760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109c45760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161094e565b6006546109da906001600160a01b03168361126e565b506001919050565b6000336109f08582856112a4565b6109fb85858561130a565b506001949350505050565b6000336108a6818585610a198383611003565b610a239190612166565b611261565b6005546001600160a01b03163314610a525760405162461bcd60e51b815260040161094e90612179565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161094e90612179565b6002811015610b375760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161094e565b6103e8610b4360025490565b610b4d90836121ae565b610b579190612144565b600b5550565b6005546001600160a01b03163314610b875760405162461bcd60e51b815260040161094e90612179565b60138290556014819055610b9b8183612166565b601281905560041015610bf05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094e565b5050565b6005546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161094e90612179565b610c286000611369565b565b6005546001600160a01b03163314610c545760405162461bcd60e51b815260040161094e90612179565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b606060048054610815906120f4565b6005546001600160a01b03163314610cb55760405162461bcd60e51b815260040161094e90612179565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3791906121c5565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc891906121c5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3991906121c5565b600680546001600160a01b0319166001600160a01b03929092169182179055610e63906001611179565b600654610e7a906001600160a01b031660016113bb565b610ea7307f0000000000000000000000000000000000000000000000000000000000000000600019611261565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610ef7306001600160a01b031660009081526020819052604090205490565b600080610f0c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f74573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f9991906121e2565b505050565b60003381610fac8286611003565b905083811015610fe857604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161094e565b6109fb8286868403611261565b6000336108a681858561130a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110585760405162461bcd60e51b815260040161094e90612179565b60058110156110b85760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161094e565b6103e86110c460025490565b6110ce90836121ae565b6110d89190612144565b600a5550565b6005546001600160a01b031633146111085760405162461bcd60e51b815260040161094e90612179565b6001600160a01b03811661116d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094e565b61117681611369565b50565b6005546001600160a01b031633146111a35760405162461bcd60e51b815260040161094e90612179565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111f85760405162461bcd60e51b815260040161094e90612179565b6010829055601181905561120c8183612166565b600f81905560041015610bf05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094e565b610f99838383600161140f565b6001600160a01b03821661129857604051634b637e8f60e11b81526000600482015260240161094e565b610bf0826000836114e4565b60006112b08484611003565b9050600019811461130457818110156112f557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161094e565b6113048484848403600061140f565b50505050565b6001600160a01b03831661133457604051634b637e8f60e11b81526000600482015260240161094e565b6001600160a01b03821661135e5760405163ec442f0560e01b81526000600482015260240161094e565b610f998383836114e4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114395760405163e602df0560e01b81526000600482015260240161094e565b6001600160a01b03831661146357604051634a1406b160e11b81526000600482015260240161094e565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561130457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d691815260200190565b60405180910390a350505050565b806000036114f857610f9983836000611b51565b6001600160a01b03831660009081526018602052604090205460ff1615801561153a57506001600160a01b03821660009081526018602052604090205460ff16155b1561159157600e54600160a01b900460ff166115915760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161094e565b60095460ff1680156115ac5750600e54600160a01b900460ff165b1561186f576005546001600160a01b038481169116148015906115dd57506005546001600160a01b03838116911614155b80156115f157506001600160a01b03821615155b801561160857506001600160a01b03821661dead14155b801561161e5750600654600160a01b900460ff16155b1561186f576001600160a01b03831660009081526017602052604090205460ff16801561166457506001600160a01b03821660009081526019602052604090205460ff16155b1561173b57600b548111156116cc5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161094e565b600a546001600160a01b0383166000908152602081905260409020546116f29083612166565b11156117365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094e565b61186f565b6001600160a01b03821660009081526017602052604090205460ff16801561177c57506001600160a01b03831660009081526019602052604090205460ff16155b156117e557600b548111156117365760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161094e565b6001600160a01b03821660009081526019602052604090205460ff1661186f57600a546001600160a01b03831660009081526020819052604090205461182b9083612166565b111561186f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094e565b306000908152602081905260409020546007548110801590819061189c5750600654600160a81b900460ff165b80156118b25750600654600160a01b900460ff16155b80156118d657506001600160a01b03841660009081526017602052604090205460ff165b80156118e3575060075483115b801561190857506001600160a01b03851660009081526018602052604090205460ff16155b801561192d57506001600160a01b03841660009081526018602052604090205460ff16155b1561195b576006805460ff60a01b1916600160a01b17905561194d611c7b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806119a957506001600160a01b03851660009081526018602052604090205460ff165b156119b2575060005b60008115611b3d576001600160a01b03861660009081526017602052604090205460ff1680156119e457506000601254115b15611a7257611a096064611a0360125488611d7590919063ffffffff16565b90611d88565b905060125460145482611a1c91906121ae565b611a269190612144565b60166000828254611a379190612166565b9091555050601254601354611a4c90836121ae565b611a569190612144565b60156000828254611a679190612166565b90915550611b1f9050565b6001600160a01b03871660009081526017602052604090205460ff168015611a9c57506000600f54115b15611b1f57611abb6064611a03600f5488611d7590919063ffffffff16565b9050600f5460115482611ace91906121ae565b611ad89190612144565b60166000828254611ae99190612166565b9091555050600f54601054611afe90836121ae565b611b089190612144565b60156000828254611b199190612166565b90915550505b8015611b3057611b30873083611b51565b611b3a8186612210565b94505b611b48878787611b51565b50505050505050565b6001600160a01b038316611b7c578060026000828254611b719190612166565b90915550611bee9050565b6001600160a01b03831660009081526020819052604090205481811015611bcf5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161094e565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c0a57600280548290039055611c29565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c6e91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611c9f9190612166565b90506000600754831115611cb35760075492505b47611cbd84611d94565b6000611cc94783611f54565b90506000611ce685611a0360165485611d7590919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b48573d6000803e3d6000fd5b6000611d8182846121ae565b9392505050565b6000611d818284612144565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dc957611dc9612223565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6b91906121c5565b81600181518110611e7e57611e7e612223565b60200260200101906001600160a01b031690816001600160a01b031681525050611ec9307f000000000000000000000000000000000000000000000000000000000000000084611261565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f1e908590600090869030904290600401612239565b600060405180830381600087803b158015611f3857600080fd5b505af1158015611f4c573d6000803e3d6000fd5b505050505050565b6000611d818284612210565b600060208083528351808285015260005b81811015611f8d57858101830151858201604001528201611f71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461117657600080fd5b60008060408385031215611fd657600080fd5b8235611fe181611fae565b946020939093013593505050565b60006020828403121561200157600080fd5b5035919050565b60008060006060848603121561201d57600080fd5b833561202881611fae565b9250602084013561203881611fae565b929592945050506040919091013590565b6000806040838503121561205c57600080fd5b823561206781611fae565b91506020830135801515811461207c57600080fd5b809150509250929050565b6000806040838503121561209a57600080fd5b50508035926020909101359150565b6000602082840312156120bb57600080fd5b8135611d8181611fae565b600080604083850312156120d957600080fd5b82356120e481611fae565b9150602083013561207c81611fae565b600181811c9082168061210857607f821691505b60208210810361212857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261216157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108ac576108ac61212e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108ac576108ac61212e565b6000602082840312156121d757600080fd5b8151611d8181611fae565b6000806000606084860312156121f757600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108ac576108ac61212e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122895784516001600160a01b031683529383019391830191600101612264565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122084a740d9c302a31ffaf0ab5f7a13f9c217058523a25dd3c487dfe634e4e0d80f64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c80636ac9a8701161014f57806395d89b41116100c1578063dd62ed3e1161007a578063dd62ed3e14610724578063dfd028f014610744578063ed8a2fda14610764578063f2fde38b1461077a578063f8f86b991461079a578063fb0ecfa4146107ba57600080fd5b806395d89b41146106675780639e78fb4f1461067c578063a457c2d714610684578063a72905a2146106a4578063a9059cbb146106d4578063aaa1fe45146106f457600080fd5b8063760062731161011357806376006273146105b45780638a8c523c146105ca5780638bcea939146105df5780638c900a71146105ff5780638da5cb5b14610615578063958c2e521461063357600080fd5b80636ac9a870146105135780636caae8321461053357806370a0823114610549578063715018a61461057f57806375f0a8741461059457600080fd5b806329563769116101e85780633d56af6b116101ac5780633d56af6b1461044c57806346e9736114610462578063522ef4c71461049a57806357e06699146104bb57806358915a86146104dd57806365e00719146104fd57600080fd5b806329563769146103ce578063313ce567146103e457806335c094a41461040057806339509351146104165780633c8463a11461043657600080fd5b8063106d05831161023a578063106d058314610329578063159a52201461034d578063171a65861461036357806318160ddd1461038357806323b872dd146103985780632765cddd146103b857600080fd5b80630106aaef1461028257806306123160146102ac57806306fdde03146102cd57806307b1faea146102ef578063095ea7b31461030957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102976107da565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600e5461029790600160a01b900460ff1681565b3480156102d957600080fd5b506102e2610806565b6040516102a39190611f60565b3480156102fb57600080fd5b506009546102979060ff1681565b34801561031557600080fd5b50610297610324366004611fc3565b610898565b34801561033557600080fd5b5061033f60105481565b6040519081526020016102a3565b34801561035957600080fd5b5061033f60135481565b34801561036f57600080fd5b5061029761037e366004611fef565b6108b2565b34801561038f57600080fd5b5060025461033f565b3480156103a457600080fd5b506102976103b3366004612008565b6109e2565b3480156103c457600080fd5b5061033f60115481565b3480156103da57600080fd5b5061033f60145481565b3480156103f057600080fd5b50604051601281526020016102a3565b34801561040c57600080fd5b5061033f60155481565b34801561042257600080fd5b50610297610431366004611fc3565b610a06565b34801561044257600080fd5b5061033f600a5481565b34801561045857600080fd5b5061033f60165481565b34801561046e57600080fd5b50600e54610482906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156104a657600080fd5b5060065461029790600160a81b900460ff1681565b3480156104c757600080fd5b506104db6104d6366004612049565b610a28565b005b3480156104e957600080fd5b506104db6104f8366004611fef565b610ab1565b34801561050957600080fd5b5061033f60085481565b34801561051f57600080fd5b506104db61052e366004612087565b610b5d565b34801561053f57600080fd5b5061033f600b5481565b34801561055557600080fd5b5061033f6105643660046120a9565b6001600160a01b031660009081526020819052604090205490565b34801561058b57600080fd5b506104db610bf4565b3480156105a057600080fd5b50600d54610482906001600160a01b031681565b3480156105c057600080fd5b5061033f60075481565b3480156105d657600080fd5b506104db610c2a565b3480156105eb57600080fd5b50600654610482906001600160a01b031681565b34801561060b57600080fd5b5061033f600f5481565b34801561062157600080fd5b506005546001600160a01b0316610482565b34801561063f57600080fd5b506104827f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067357600080fd5b506102e2610c7c565b6104db610c8b565b34801561069057600080fd5b5061029761069f366004611fc3565b610f9e565b3480156106b057600080fd5b506102976106bf3660046120a9565b60176020526000908152604090205460ff1681565b3480156106e057600080fd5b506102976106ef366004611fc3565b610ff5565b34801561070057600080fd5b5061029761070f3660046120a9565b60196020526000908152604090205460ff1681565b34801561073057600080fd5b5061033f61073f3660046120c6565b611003565b34801561075057600080fd5b506104db61075f366004611fef565b61102e565b34801561077057600080fd5b5061033f60125481565b34801561078657600080fd5b506104db6107953660046120a9565b6110de565b3480156107a657600080fd5b506104db6107b5366004612049565b611179565b3480156107c657600080fd5b506104db6107d5366004612087565b6111ce565b3360009081526018602052604081205460ff166107f657600080fd5b506009805460ff19169055600190565b606060038054610815906120f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610841906120f4565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a6818585611261565b60019150505b92915050565b3360009081526018602052604081205460ff166108ce57600080fd5b620186a06108db60025490565b6108e59190612144565b8210156109575760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084015b60405180910390fd5b6008548211156109c45760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152711b881b585e14ddd85c189858dad31a5b5a5d60721b606482015260840161094e565b6006546109da906001600160a01b03168361126e565b506001919050565b6000336109f08582856112a4565b6109fb85858561130a565b506001949350505050565b6000336108a6818585610a198383611003565b610a239190612166565b611261565b6005546001600160a01b03163314610a525760405162461bcd60e51b815260040161094e90612179565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546001600160a01b03163314610adb5760405162461bcd60e51b815260040161094e90612179565b6002811015610b375760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f74207365742074784c696d6974206c6f776572207468616e20302e604482015261322560f01b606482015260840161094e565b6103e8610b4360025490565b610b4d90836121ae565b610b579190612144565b600b5550565b6005546001600160a01b03163314610b875760405162461bcd60e51b815260040161094e90612179565b60138290556014819055610b9b8183612166565b601281905560041015610bf05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094e565b5050565b6005546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161094e90612179565b610c286000611369565b565b6005546001600160a01b03163314610c545760405162461bcd60e51b815260040161094e90612179565b600e805460ff60a01b1916600160a01b1790556006805460ff60a81b1916600160a81b179055565b606060048054610815906120f4565b6005546001600160a01b03163314610cb55760405162461bcd60e51b815260040161094e90612179565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3791906121c5565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc891906121c5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3991906121c5565b600680546001600160a01b0319166001600160a01b03929092169182179055610e63906001611179565b600654610e7a906001600160a01b031660016113bb565b610ea7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611261565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610ef7306001600160a01b031660009081526020819052604090205490565b600080610f0c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f74573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f9991906121e2565b505050565b60003381610fac8286611003565b905083811015610fe857604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161094e565b6109fb8286868403611261565b6000336108a681858561130a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146110585760405162461bcd60e51b815260040161094e90612179565b60058110156110b85760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f74207365742077616c6c65744c696d6974206c6f776572207468616044820152656e20302e352560d01b606482015260840161094e565b6103e86110c460025490565b6110ce90836121ae565b6110d89190612144565b600a5550565b6005546001600160a01b031633146111085760405162461bcd60e51b815260040161094e90612179565b6001600160a01b03811661116d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094e565b61117681611369565b50565b6005546001600160a01b031633146111a35760405162461bcd60e51b815260040161094e90612179565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111f85760405162461bcd60e51b815260040161094e90612179565b6010829055601181905561120c8183612166565b600f81905560041015610bf05760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203425206f72206c65737300000000604482015260640161094e565b610f99838383600161140f565b6001600160a01b03821661129857604051634b637e8f60e11b81526000600482015260240161094e565b610bf0826000836114e4565b60006112b08484611003565b9050600019811461130457818110156112f557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161094e565b6113048484848403600061140f565b50505050565b6001600160a01b03831661133457604051634b637e8f60e11b81526000600482015260240161094e565b6001600160a01b03821661135e5760405163ec442f0560e01b81526000600482015260240161094e565b610f998383836114e4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b0384166114395760405163e602df0560e01b81526000600482015260240161094e565b6001600160a01b03831661146357604051634a1406b160e11b81526000600482015260240161094e565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561130457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d691815260200190565b60405180910390a350505050565b806000036114f857610f9983836000611b51565b6001600160a01b03831660009081526018602052604090205460ff1615801561153a57506001600160a01b03821660009081526018602052604090205460ff16155b1561159157600e54600160a01b900460ff166115915760405162461bcd60e51b815260206004820152601660248201527554726164696e67206973206e6f74206163746976652160501b604482015260640161094e565b60095460ff1680156115ac5750600e54600160a01b900460ff165b1561186f576005546001600160a01b038481169116148015906115dd57506005546001600160a01b03838116911614155b80156115f157506001600160a01b03821615155b801561160857506001600160a01b03821661dead14155b801561161e5750600654600160a01b900460ff16155b1561186f576001600160a01b03831660009081526017602052604090205460ff16801561166457506001600160a01b03821660009081526019602052604090205460ff16155b1561173b57600b548111156116cc5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152673a3c2634b6b4ba1760c11b606482015260840161094e565b600a546001600160a01b0383166000908152602081905260409020546116f29083612166565b11156117365760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094e565b61186f565b6001600160a01b03821660009081526017602052604090205460ff16801561177c57506001600160a01b03831660009081526019602052604090205460ff16155b156117e557600b548111156117365760405162461bcd60e51b815260206004820152602960248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015268103a3c2634b6b4ba1760b91b606482015260840161094e565b6001600160a01b03821660009081526019602052604090205460ff1661186f57600a546001600160a01b03831660009081526020819052604090205461182b9083612166565b111561186f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161094e565b306000908152602081905260409020546007548110801590819061189c5750600654600160a81b900460ff165b80156118b25750600654600160a01b900460ff16155b80156118d657506001600160a01b03841660009081526017602052604090205460ff165b80156118e3575060075483115b801561190857506001600160a01b03851660009081526018602052604090205460ff16155b801561192d57506001600160a01b03841660009081526018602052604090205460ff16155b1561195b576006805460ff60a01b1916600160a01b17905561194d611c7b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526018602052604090205460ff600160a01b9092048216159116806119a957506001600160a01b03851660009081526018602052604090205460ff165b156119b2575060005b60008115611b3d576001600160a01b03861660009081526017602052604090205460ff1680156119e457506000601254115b15611a7257611a096064611a0360125488611d7590919063ffffffff16565b90611d88565b905060125460145482611a1c91906121ae565b611a269190612144565b60166000828254611a379190612166565b9091555050601254601354611a4c90836121ae565b611a569190612144565b60156000828254611a679190612166565b90915550611b1f9050565b6001600160a01b03871660009081526017602052604090205460ff168015611a9c57506000600f54115b15611b1f57611abb6064611a03600f5488611d7590919063ffffffff16565b9050600f5460115482611ace91906121ae565b611ad89190612144565b60166000828254611ae99190612166565b9091555050600f54601054611afe90836121ae565b611b089190612144565b60156000828254611b199190612166565b90915550505b8015611b3057611b30873083611b51565b611b3a8186612210565b94505b611b48878787611b51565b50505050505050565b6001600160a01b038316611b7c578060026000828254611b719190612166565b90915550611bee9050565b6001600160a01b03831660009081526020819052604090205481811015611bcf5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161094e565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c0a57600280548290039055611c29565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c6e91815260200190565b60405180910390a3505050565b3060009081526020819052604081205490506000601654601554611c9f9190612166565b90506000600754831115611cb35760075492505b47611cbd84611d94565b6000611cc94783611f54565b90506000611ce685611a0360165485611d7590919063ffffffff16565b600e546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b5050600d546040519195506001600160a01b0316904780156108fc02916000818181858888f19350505050158015611b48573d6000803e3d6000fd5b6000611d8182846121ae565b9392505050565b6000611d818284612144565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dc957611dc9612223565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6b91906121c5565b81600181518110611e7e57611e7e612223565b60200260200101906001600160a01b031690816001600160a01b031681525050611ec9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611261565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f1e908590600090869030904290600401612239565b600060405180830381600087803b158015611f3857600080fd5b505af1158015611f4c573d6000803e3d6000fd5b505050505050565b6000611d818284612210565b600060208083528351808285015260005b81811015611f8d57858101830151858201604001528201611f71565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461117657600080fd5b60008060408385031215611fd657600080fd5b8235611fe181611fae565b946020939093013593505050565b60006020828403121561200157600080fd5b5035919050565b60008060006060848603121561201d57600080fd5b833561202881611fae565b9250602084013561203881611fae565b929592945050506040919091013590565b6000806040838503121561205c57600080fd5b823561206781611fae565b91506020830135801515811461207c57600080fd5b809150509250929050565b6000806040838503121561209a57600080fd5b50508035926020909101359150565b6000602082840312156120bb57600080fd5b8135611d8181611fae565b600080604083850312156120d957600080fd5b82356120e481611fae565b9150602083013561207c81611fae565b600181811c9082168061210857607f821691505b60208210810361212857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261216157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108ac576108ac61212e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176108ac576108ac61212e565b6000602082840312156121d757600080fd5b8151611d8181611fae565b6000806000606084860312156121f757600080fd5b8351925060208401519150604084015190509250925092565b818103818111156108ac576108ac61212e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122895784516001600160a01b031683529383019391830191600101612264565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122084a740d9c302a31ffaf0ab5f7a13f9c217058523a25dd3c487dfe634e4e0d80f64736f6c63430008130033

Deployed Bytecode Sourcemap

26760:11943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:118;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;37762:118:0;;;;;;;;27442:28;;;;;;;;;;-1:-1:-1;27442:28:0;;;;-1:-1:-1;;;27442:28:0;;;;;;14825:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27125:30::-;;;;;;;;;;-1:-1:-1;27125:30:0;;;;;;;;17118:190;;;;;;;;;;-1:-1:-1;17118:190:0;;;;;:::i;:::-;;:::i;27508:22::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;27508:22:0;1215:177:1;27598:23:0;;;;;;;;;;;;;;;;30747:450;;;;;;;;;;-1:-1:-1;30747:450:0;;;;;:::i;:::-;;:::i;15927:99::-;;;;;;;;;;-1:-1:-1;16006:12:0;;15927:99;;17886:249;;;;;;;;;;-1:-1:-1;17886:249:0;;;;;:::i;:::-;;:::i;27537:22::-;;;;;;;;;;;;;;;;27628:23;;;;;;;;;;;;;;;;15778:84;;;;;;;;;;-1:-1:-1;15778:84:0;;15852:2;2185:36:1;;2173:2;2158:18;15778:84:0;2043:184:1;27660:33:0;;;;;;;;;;;;;;;;18544:238;;;;;;;;;;-1:-1:-1;18544:238:0;;;;;:::i;:::-;;:::i;27162:26::-;;;;;;;;;;;;;;;;27700:33;;;;;;;;;;;;;;;;27397:36;;;;;;;;;;-1:-1:-1;27397:36:0;;;;-1:-1:-1;;;;;27397:36:0;;;;;;-1:-1:-1;;;;;2396:32:1;;;2378:51;;2366:2;2351:18;27397:36:0;2232:203:1;26981:38:0;;;;;;;;;;-1:-1:-1;26981:38:0;;;;-1:-1:-1;;;26981:38:0;;;;;;35771:183;;;;;;;;;;-1:-1:-1;35771:183:0;;;;;:::i;:::-;;:::i;:::-;;30539:200;;;;;;;;;;-1:-1:-1;30539:200:0;;;;;:::i;:::-;;:::i;27067:31::-;;;;;;;;;;;;;;;;38438:262;;;;;;;;;;-1:-1:-1;38438:262:0;;;;;:::i;:::-;;:::i;27195:22::-;;;;;;;;;;;;;;;;16089:118;;;;;;;;;;-1:-1:-1;16089:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;16181:18:0;16154:7;16181:18;;;;;;;;;;;;16089:118;10850:103;;;;;;;;;;;;;:::i;27360:30::-;;;;;;;;;;-1:-1:-1;27360:30:0;;;;-1:-1:-1;;;;;27360:30:0;;;27026:34;;;;;;;;;;;;;;;;37573:114;;;;;;;;;;;;;:::i;26897:24::-;;;;;;;;;;-1:-1:-1;26897:24:0;;;;-1:-1:-1;;;;;26897:24:0;;;27479:22;;;;;;;;;;;;;;;;10199:87;;;;;;;;;;-1:-1:-1;10272:6:0;;-1:-1:-1;;;;;10272:6:0;10199:87;;26849:41;;;;;;;;;;;;;;;15035:95;;;;;;;;;;;;;:::i;31537:561::-;;;:::i;19470:504::-;;;;;;;;;;-1:-1:-1;19470:504:0;;;;;:::i;:::-;;:::i;27891:40::-;;;;;;;;;;-1:-1:-1;27891:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16412:182;;;;;;;;;;-1:-1:-1;16412:182:0;;;;;:::i;:::-;;:::i;28068:50::-;;;;;;;;;;-1:-1:-1;28068:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16657:142;;;;;;;;;;-1:-1:-1;16657:142:0;;;;;:::i;:::-;;:::i;31322:207::-;;;;;;;;;;-1:-1:-1;31322:207:0;;;;;:::i;:::-;;:::i;27568:23::-;;;;;;;;;;;;;;;;11108:238;;;;;;;;;;-1:-1:-1;11108:238:0;;;;;:::i;:::-;;:::i;32282:148::-;;;;;;;;;;-1:-1:-1;32282:148:0;;;;;:::i;:::-;;:::i;38031:255::-;;;;;;;;;;-1:-1:-1;38031:255:0;;;;;:::i;:::-;;:::i;37762:118::-;28175:10;37814:4;28165:21;;;:9;:21;;;;;;;;28157:30;;;;;;-1:-1:-1;37831:11:0::1;:19:::0;;-1:-1:-1;;37831:19:0::1;::::0;;;37762:118;:::o;14825:91::-;14870:13;14903:5;14896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14825:91;:::o;17118:190::-;17191:4;9630:10;17247:31;9630:10;17263:7;17272:5;17247:8;:31::i;:::-;17296:4;17289:11;;;17118:190;;;;;:::o;30747:450::-;28175:10;30843:4;28165:21;;;:9;:21;;;;;;;;28157:30;;;;;;30911:6:::1;30895:13;16006:12:::0;;;15927:99;30895:13:::1;:22;;;;:::i;:::-;30882:9;:35;;30860:138;;;::::0;-1:-1:-1;;;30860:138:0;;4929:2:1;30860:138:0::1;::::0;::::1;4911:21:1::0;4968:2;4948:18;;;4941:30;5007:34;4987:18;;;4980:62;-1:-1:-1;;;5058:18:1;;;5051:51;5119:19;;30860:138:0::1;;;;;;;;;31044:16;;31031:9;:29;;31009:129;;;::::0;-1:-1:-1;;;31009:129:0;;5351:2:1;31009:129:0::1;::::0;::::1;5333:21:1::0;5390:2;5370:18;;;5363:30;5429:34;5409:18;;;5402:62;-1:-1:-1;;;5480:18:1;;;5473:48;5538:19;;31009:129:0::1;5149:414:1::0;31009:129:0::1;31146:9;::::0;31140:27:::1;::::0;-1:-1:-1;;;;;31146:9:0::1;31157::::0;31140:5:::1;:27::i;:::-;-1:-1:-1::0;31185:4:0::1;30747:450:::0;;;:::o;17886:249::-;17973:4;9630:10;18031:37;18047:4;9630:10;18062:5;18031:15;:37::i;:::-;18079:26;18089:4;18095:2;18099:5;18079:9;:26::i;:::-;-1:-1:-1;18123:4:0;;17886:249;-1:-1:-1;;;;17886:249:0:o;18544:238::-;18632:4;9630:10;18688:64;9630:10;18704:7;18741:10;18713:25;9630:10;18704:7;18713:9;:25::i;:::-;:38;;;;:::i;:::-;18688:8;:64::i;35771:183::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35859:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;;:29;;-1:-1:-1;;35859:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35904:42;;154:41:1;;;35904:42:0::1;::::0;127:18:1;35904:42:0::1;;;;;;;35771:183:::0;;:::o;30539:200::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;30639:1:::1;30629:6;:11;;30621:58;;;::::0;-1:-1:-1;;;30621:58:0;;6261:2:1;30621:58:0::1;::::0;::::1;6243:21:1::0;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:32;6432:19;;30621:58:0::1;6059:398:1::0;30621:58:0::1;30727:4;30710:13;16006:12:::0;;;15927:99;30710:13:::1;30701:22;::::0;:6;:22:::1;:::i;:::-;30700:31;;;;:::i;:::-;30690:7;:41:::0;-1:-1:-1;30539:200:0:o;38438:262::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;38543:8:::1;:16:::0;;;38570:8:::1;:16:::0;;;38608:19:::1;38581:5:::0;38554;38608:19:::1;:::i;:::-;38597:8;:30:::0;;;38658:1:::1;-1:-1:-1::0;38646:13:0::1;38638:54;;;::::0;-1:-1:-1;;;38638:54:0;;6837:2:1;38638:54:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38638:54:0::1;6635:352:1::0;38638:54:0::1;38438:262:::0;;:::o;10850:103::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;10915:30:::1;10942:1;10915:18;:30::i;:::-;10850:103::o:0;37573:114::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;37628:8:::1;:15:::0;;-1:-1:-1;;;;37628:15:0::1;-1:-1:-1::0;;;37628:15:0::1;::::0;;37654:18:::1;:25:::0;;-1:-1:-1;;;;37654:25:0::1;-1:-1:-1::0;;;37654:25:0::1;::::0;;37573:114::o;15035:95::-;15082:13;15115:7;15108:14;;;;;:::i;31537:561::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;31623:11:::1;-1:-1:-1::0;;;;;31623:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31609:47:0::1;;31665:4;31672:11;-1:-1:-1::0;;;;;31672:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31609:82;::::0;-1:-1:-1;;;;;;31609:82:0::1;::::0;;;;;;-1:-1:-1;;;;;7478:15:1;;;31609:82:0::1;::::0;::::1;7460:34:1::0;7530:15;;7510:18;;;7503:43;7395:18;;31609:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31597:9;:94:::0;;-1:-1:-1;;;;;;31597:94:0::1;-1:-1:-1::0;;;;;31597:94:0;;;::::1;::::0;;::::1;::::0;;31702:43:::1;::::0;-1:-1:-1;31702:17:0::1;:43::i;:::-;31777:9;::::0;31756:38:::1;::::0;-1:-1:-1;;;;;31777:9:0::1;::::0;31756:12:::1;:38::i;:::-;31805:64;31822:4;31837:11;-1:-1:-1::0;;31805:8:0::1;:64::i;:::-;31881:11;-1:-1:-1::0;;;;;31881:27:0::1;;31916:9;31949:4;31969:24;31987:4;-1:-1:-1::0;;;;;16181:18:0;16154:7;16181:18;;;;;;;;;;;;16089:118;31969:24:::1;32008:1;32025::::0;32042:7:::1;10272:6:::0;;-1:-1:-1;;;;;10272:6:0;;10199:87;32042:7:::1;31881:209;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31881:209:0;;;-1:-1:-1;;;;;7916:15:1;;;31881:209:0::1;::::0;::::1;7898:34:1::0;7948:18;;;7941:34;;;;7991:18;;;7984:34;;;;8034:18;;;8027:34;8098:15;;;8077:19;;;8070:44;32064:15:0::1;8130:19:1::0;;;8123:35;7832:19;;31881:209:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31537:561::o:0;19470:504::-;19565:4;9630:10;19565:4;19648:25;9630:10;19665:7;19648:9;:25::i;:::-;19621:52;;19707:17;19688:16;:36;19684:150;;;19748:74;;-1:-1:-1;;;19748:74:0;;-1:-1:-1;;;;;8700:32:1;;19748:74:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;19748:74:0;8480:345:1;19684:150:0;19869:62;19878:5;19885:7;19913:17;19894:16;:36;19869:8;:62::i;16412:182::-;16481:4;9630:10;16537:27;9630:10;16554:2;16558:5;16537:9;:27::i;16657:142::-;-1:-1:-1;;;;;16764:18:0;;;16737:7;16764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16657:142::o;31322:207::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;31421:1:::1;31411:6;:11;;31403:62;;;::::0;-1:-1:-1;;;31403:62:0;;9032:2:1;31403:62:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:36;9207:19;;31403:62:0::1;8830:402:1::0;31403:62:0::1;31517:4;31500:13;16006:12:::0;;;15927:99;31500:13:::1;31491:22;::::0;:6;:22:::1;:::i;:::-;31490:31;;;;:::i;:::-;31476:11;:45:::0;-1:-1:-1;31322:207:0:o;11108:238::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11211:22:0;::::1;11189:110;;;::::0;-1:-1:-1;;;11189:110:0;;9439:2:1;11189:110:0::1;::::0;::::1;9421:21:1::0;9478:2;9458:18;;;9451:30;9517:34;9497:18;;;9490:62;-1:-1:-1;;;9568:18:1;;;9561:36;9614:19;;11189:110:0::1;9237:402:1::0;11189:110:0::1;11310:28;11329:8;11310:18;:28::i;:::-;11108:238:::0;:::o;32282:148::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32389:26:0;;;::::1;;::::0;;;:18:::1;:26;::::0;;;;:33;;-1:-1:-1;;32389:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32282:148::o;38031:255::-;10272:6;;-1:-1:-1;;;;;10272:6:0;9630:10;10419:23;10411:68;;;;-1:-1:-1;;;10411:68:0;;;;;;;:::i;:::-;38135:7:::1;:15:::0;;;38161:7:::1;:15:::0;;;38197:17:::1;38171:5:::0;38145;38197:17:::1;:::i;:::-;38187:7;:27:::0;;;38244:1:::1;-1:-1:-1::0;38233:12:0::1;38225:53;;;::::0;-1:-1:-1;;;38225:53:0;;6837:2:1;38225:53:0::1;::::0;::::1;6819:21:1::0;6876:2;6856:18;;;6849:30;6915;6895:18;;;6888:58;6963:18;;38225:53:0::1;6635:352:1::0;23667:138:0;23760:37;23769:5;23776:7;23785:5;23792:4;23760:8;:37::i;23019:211::-;-1:-1:-1;;;;;23090:21:0;;23086:91;;23135:30;;-1:-1:-1;;;23135:30:0;;23162:1;23135:30;;;2378:51:1;2351:18;;23135:30:0;2232:203:1;23086:91:0;23187:35;23195:7;23212:1;23216:5;23187:7;:35::i;25404:487::-;25504:24;25531:25;25541:5;25548:7;25531:9;:25::i;:::-;25504:52;;-1:-1:-1;;25571:16:0;:37;25567:317;;25648:5;25629:16;:24;25625:132;;;25681:60;;-1:-1:-1;;;25681:60:0;;-1:-1:-1;;;;;8700:32:1;;25681:60:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;25681:60:0;8480:345:1;25625:132:0;25800:57;25809:5;25816:7;25844:5;25825:16;:24;25851:5;25800:8;:57::i;:::-;25493:398;25404:487;;;:::o;20359:308::-;-1:-1:-1;;;;;20443:18:0;;20439:88;;20485:30;;-1:-1:-1;;;20485:30:0;;20512:1;20485:30;;;2378:51:1;2351:18;;20485:30:0;2232:203:1;20439:88:0;-1:-1:-1;;;;;20541:16:0;;20537:88;;20581:32;;-1:-1:-1;;;20581:32:0;;20610:1;20581:32;;;2378:51:1;2351:18;;20581:32:0;2232:203:1;20537:88:0;20635:24;20643:4;20649:2;20653:5;20635:7;:24::i;11506:191::-;11599:6;;;-1:-1:-1;;;;;11616:17:0;;;-1:-1:-1;;;;;;11616:17:0;;;;;;;11649:40;;11599:6;;;11616:17;11599:6;;11649:40;;11580:16;;11649:40;11569:128;11506:191;:::o;35962:138::-;-1:-1:-1;;;;;36029:14:0;;;;;;:8;:14;;;;;;:22;;-1:-1:-1;;36029:22:0;;;;;;;;;;36069:23;;36029:22;;:14;36069:23;;;35962:138;;:::o;24672:443::-;-1:-1:-1;;;;;24785:19:0;;24781:91;;24828:32;;-1:-1:-1;;;24828:32:0;;24857:1;24828:32;;;2378:51:1;2351:18;;24828:32:0;2232:203:1;24781:91:0;-1:-1:-1;;;;;24886:21:0;;24882:92;;24931:31;;-1:-1:-1;;;24931:31:0;;24959:1;24931:31;;;2378:51:1;2351:18;;24931:31:0;2232:203:1;24882:92:0;-1:-1:-1;;;;;24984:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25030:78;;;;25081:7;-1:-1:-1;;;;;25065:31:0;25074:5;-1:-1:-1;;;;;25065:31:0;;25090:5;25065:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25065:31:0;;;;;;;;24672:443;;;;:::o;32438:3166::-;32564:6;32574:1;32564:11;32560:54;;32578:26;32592:4;32598:2;32602:1;32578:13;:26::i;32560:54::-;-1:-1:-1;;;;;32629:15:0;;;;;;:9;:15;;;;;;;;32628:16;:34;;;;-1:-1:-1;;;;;;32649:13:0;;;;;;:9;:13;;;;;;;;32648:14;32628:34;32624:83;;;32672:8;;-1:-1:-1;;;32672:8:0;;;;32664:43;;;;-1:-1:-1;;;32664:43:0;;9846:2:1;32664:43:0;;;9828:21:1;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:52;9966:18;;32664:43:0;9644:346:1;32664:43:0;32722:11;;;;:23;;;;-1:-1:-1;32737:8:0;;-1:-1:-1;;;32737:8:0;;;;32722:23;32718:1265;;;10272:6;;-1:-1:-1;;;;;32784:15:0;;;10272:6;;32784:15;;;;:49;;-1:-1:-1;10272:6:0;;-1:-1:-1;;;;;32820:13:0;;;10272:6;;32820:13;;32784:49;:86;;;;-1:-1:-1;;;;;;32854:16:0;;;;32784:86;:128;;;;-1:-1:-1;;;;;;32891:21:0;;32905:6;32891:21;;32784:128;:164;;;;-1:-1:-1;32934:14:0;;-1:-1:-1;;;32934:14:0;;;;32933:15;32784:164;32762:1210;;;-1:-1:-1;;;;;33017:14:0;;;;;;:8;:14;;;;;;;;:41;;;;-1:-1:-1;;;;;;33036:22:0;;;;;;:18;:22;;;;;;;;33035:23;33017:41;33013:944;;;33127:7;;33117:6;:17;;33083:143;;;;-1:-1:-1;;;33083:143:0;;10197:2:1;33083:143:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:1;;;10319:38;10374:19;;33083:143:0;9995:404:1;33083:143:0;33309:11;;-1:-1:-1;;;;;16181:18:0;;16154:7;16181:18;;;;;;;;;;;33283:22;;:6;:22;:::i;:::-;:37;;33249:142;;;;-1:-1:-1;;;33249:142:0;;10606:2:1;33249:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33249:142:0;10404:343:1;33249:142:0;33013:944;;;-1:-1:-1;;;;;33489:12:0;;;;;;:8;:12;;;;;;;;:41;;;;-1:-1:-1;;;;;;33506:24:0;;;;;;:18;:24;;;;;;;;33505:25;33489:41;33463:494;;;33617:7;;33607:6;:17;;33573:144;;;;-1:-1:-1;;;33573:144:0;;10954:2:1;33573:144:0;;;10936:21:1;10993:2;10973:18;;;10966:30;11032:34;11012:18;;;11005:62;-1:-1:-1;;;11083:18:1;;;11076:39;11132:19;;33573:144:0;10752:405:1;33463:494:0;-1:-1:-1;;;;;33748:22:0;;;;;;:18;:22;;;;;;;;33743:214;;33855:11;;-1:-1:-1;;;;;16181:18:0;;16154:7;16181:18;;;;;;;;;;;33829:22;;:6;:22;:::i;:::-;:37;;33795:142;;;;-1:-1:-1;;;33795:142:0;;10606:2:1;33795:142:0;;;10588:21:1;10645:2;10625:18;;;10618:30;-1:-1:-1;;;10664:18:1;;;10657:49;10723:18;;33795:142:0;10404:343:1;33795:142:0;34044:4;33995:28;16181:18;;;;;;;;;;;34102:19;;34078:43;;;;;;;34152:42;;-1:-1:-1;34176:18:0;;-1:-1:-1;;;34176:18:0;;;;34152:42;:74;;;;-1:-1:-1;34212:14:0;;-1:-1:-1;;;34212:14:0;;;;34211:15;34152:74;:103;;;;-1:-1:-1;;;;;;34243:12:0;;;;;;:8;:12;;;;;;;;34152:103;:148;;;;;34281:19;;34272:6;:28;34152:148;:181;;;;-1:-1:-1;;;;;;34318:15:0;;;;;;:9;:15;;;;;;;;34317:16;34152:181;:212;;;;-1:-1:-1;;;;;;34351:13:0;;;;;;:9;:13;;;;;;;;34350:14;34152:212;34134:363;;;34391:14;:21;;-1:-1:-1;;;;34391:21:0;-1:-1:-1;;;34391:21:0;;;34429:17;:15;:17::i;:::-;34463:14;:22;;-1:-1:-1;;;;34463:22:0;;;34134:363;34525:14;;-1:-1:-1;;;;;34641:15:0;;34509:12;34641:15;;;:9;:15;;;;;;34525:14;-1:-1:-1;;;34525:14:0;;;;;34524:15;;34641;;:32;;-1:-1:-1;;;;;;34660:13:0;;;;;;:9;:13;;;;;;;;34641:32;34637:80;;;-1:-1:-1;34700:5:0;34637:80;34729:12;34834:7;34830:723;;;-1:-1:-1;;;;;34886:12:0;;;;;;:8;:12;;;;;;;;:28;;;;;34913:1;34902:8;;:12;34886:28;34882:524;;;34942:29;34967:3;34942:20;34953:8;;34942:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;34935:36;;35032:8;;35020;;35013:4;:15;;;;:::i;:::-;35012:28;;;;:::i;:::-;34990:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;35101:8:0;;35089;;35082:15;;:4;:15;:::i;:::-;35081:28;;;;:::i;:::-;35059:18;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;34882:524:0;;-1:-1:-1;34882:524:0;;-1:-1:-1;;;;;35171:14:0;;;;;;:8;:14;;;;;;;;:29;;;;;35199:1;35189:7;;:11;35171:29;35167:239;;;35228:28;35252:3;35228:19;35239:7;;35228:6;:10;;:19;;;;:::i;:28::-;35221:35;;35316:7;;35305;;35298:4;:14;;;;:::i;:::-;35297:26;;;;:::i;:::-;35275:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;35383:7:0;;35372;;35365:14;;:4;:14;:::i;:::-;35364:26;;;;:::i;:::-;35342:18;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;35167:239:0;35426:8;;35422:89;;35455:40;35469:4;35483;35490;35455:13;:40::i;:::-;35527:14;35537:4;35527:14;;:::i;:::-;;;34830:723;35565:31;35579:4;35585:2;35589:6;35565:13;:31::i;:::-;32549:3055;;;;32438:3166;;;:::o;20983:1135::-;-1:-1:-1;;;;;21073:18:0;;21069:552;;21227:5;21211:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21069:552:0;;-1:-1:-1;21069:552:0;;-1:-1:-1;;;;;21287:15:0;;21265:19;21287:15;;;;;;;;;;;21321:19;;;21317:117;;;21368:50;;-1:-1:-1;;;21368:50:0;;-1:-1:-1;;;;;8700:32:1;;21368:50:0;;;8682:51:1;8749:18;;;8742:34;;;8792:18;;;8785:34;;;8655:18;;21368:50:0;8480:345:1;21317:117:0;-1:-1:-1;;;;;21557:15:0;;:9;:15;;;;;;;;;;21575:19;;;;21557:37;;21069:552;-1:-1:-1;;;;;21637:16:0;;21633:435;;21803:12;:21;;;;;;;21633:435;;;-1:-1:-1;;;;;22019:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21633:435;22100:2;-1:-1:-1;;;;;22085:25:0;22094:4;-1:-1:-1;;;;;22085:25:0;;22104:5;22085:25;;;;1361::1;;1349:2;1334:18;;1215:177;22085:25:0;;;;;;;;20983:1135;;;:::o;36711:777::-;36801:4;36757:23;16181:18;;;;;;;;;;;36757:50;;36818:25;36867:18;;36846;;:39;;;;:::i;:::-;36818:67;;36896:12;36943:19;;36925:15;:37;36921:107;;;36997:19;;36979:37;;36921:107;37068:21;37102:51;37137:15;37102:34;:51::i;:::-;37166:18;37187:44;:21;37213:17;37187:25;:44::i;:::-;37166:65;;37244:21;37268:57;37307:17;37268:34;37283:18;;37268:10;:14;;:34;;;;:::i;:57::-;37360:21;;37352:61;;37244:81;;-1:-1:-1;;;;;;37360:21:0;;37244:81;;37352:61;;;;37244:81;37360:21;37352:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37432:15:0;;37424:56;;37338:75;;-1:-1:-1;;;;;;37432:15:0;;37458:21;37424:56;;;;;37432:15;37424:56;37432:15;37424:56;37458:21;37432:15;37424:56;;;;;;;;;;;;;;;;;;;3439:98;3497:7;3524:5;3528:1;3524;:5;:::i;:::-;3517:12;3439:98;-1:-1:-1;;;3439:98:0:o;3838:::-;3896:7;3923:5;3927:1;3923;:5;:::i;36108:595::-;36276:16;;;36290:1;36276:16;;;;;;;;36252:21;;36276:16;;;;;;;;;;-1:-1:-1;36276:16:0;36252:40;;36321:4;36303;36308:1;36303:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36303:23:0;;;-1:-1:-1;;;;;36303:23:0;;;;;36347:11;-1:-1:-1;;;;;36347:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36337:4;36342:1;36337:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;36337:28:0;;;-1:-1:-1;;;;;36337:28:0;;;;;36378:58;36395:4;36410:11;36424;36378:8;:58::i;:::-;36475:220;;-1:-1:-1;;;36475:220:0;;-1:-1:-1;;;;;36475:11:0;:62;;;;:220;;36552:11;;36578:1;;36622:4;;36649;;36669:15;;36475:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36181:522;36108:595;:::o;3082:98::-;3140:7;3167:5;3171:1;3167;:5;:::i;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2440:416::-;2505:6;2513;2566:2;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2621:9;2608:23;2640:31;2665:5;2640:31;:::i;:::-;2690:5;-1:-1:-1;2747:2:1;2732:18;;2719:32;2789:15;;2782:23;2770:36;;2760:64;;2820:1;2817;2810:12;2760:64;2843:7;2833:17;;;2440:416;;;;;:::o;2861:248::-;2929:6;2937;2990:2;2978:9;2969:7;2965:23;2961:32;2958:52;;;3006:1;3003;2996:12;2958:52;-1:-1:-1;;3029:23:1;;;3099:2;3084:18;;;3071:32;;-1:-1:-1;2861:248:1:o;3114:247::-;3173:6;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;3595:388::-;3663:6;3671;3724:2;3712:9;3703:7;3699:23;3695:32;3692:52;;;3740:1;3737;3730:12;3692:52;3779:9;3766:23;3798:31;3823:5;3798:31;:::i;:::-;3848:5;-1:-1:-1;3905:2:1;3890:18;;3877:32;3918:33;3877:32;3918:33;:::i;3988:380::-;4067:1;4063:12;;;;4110;;;4131:61;;4185:4;4177:6;4173:17;4163:27;;4131:61;4238:2;4230:6;4227:14;4207:18;4204:38;4201:161;;4284:10;4279:3;4275:20;4272:1;4265:31;4319:4;4316:1;4309:15;4347:4;4344:1;4337:15;4201:161;;3988:380;;;:::o;4373:127::-;4434:10;4429:3;4425:20;4422:1;4415:31;4465:4;4462:1;4455:15;4489:4;4486:1;4479:15;4505:217;4545:1;4571;4561:132;;4615:10;4610:3;4606:20;4603:1;4596:31;4650:4;4647:1;4640:15;4678:4;4675:1;4668:15;4561:132;-1:-1:-1;4707:9:1;;4505:217::o;5568:125::-;5633:9;;;5654:10;;;5651:36;;;5667:18;;:::i;5698:356::-;5900:2;5882:21;;;5919:18;;;5912:30;5978:34;5973:2;5958:18;;5951:62;6045:2;6030:18;;5698:356::o;6462:168::-;6535:9;;;6566;;6583:15;;;6577:22;;6563:37;6553:71;;6604:18;;:::i;6992:251::-;7062:6;7115:2;7103:9;7094:7;7090:23;7086:32;7083:52;;;7131:1;7128;7121:12;7083:52;7163:9;7157:16;7182:31;7207:5;7182:31;:::i;8169:306::-;8257:6;8265;8273;8326:2;8314:9;8305:7;8301:23;8297:32;8294:52;;;8342:1;8339;8332:12;8294:52;8371:9;8365:16;8355:26;;8421:2;8410:9;8406:18;8400:25;8390:35;;8465:2;8454:9;8450:18;8444:25;8434:35;;8169:306;;;;;:::o;11162:128::-;11229:9;;;11250:11;;;11247:37;;;11264:18;;:::i;11637:127::-;11698:10;11693:3;11689:20;11686:1;11679:31;11729:4;11726:1;11719:15;11753:4;11750:1;11743:15;11769:980;12031:4;12079:3;12068:9;12064:19;12110:6;12099:9;12092:25;12136:2;12174:6;12169:2;12158:9;12154:18;12147:34;12217:3;12212:2;12201:9;12197:18;12190:31;12241:6;12276;12270:13;12307:6;12299;12292:22;12345:3;12334:9;12330:19;12323:26;;12384:2;12376:6;12372:15;12358:29;;12405:1;12415:195;12429:6;12426:1;12423:13;12415:195;;;12494:13;;-1:-1:-1;;;;;12490:39:1;12478:52;;12585:15;;;;12550:12;;;;12526:1;12444:9;12415:195;;;-1:-1:-1;;;;;;;12666:32:1;;;;12661:2;12646:18;;12639:60;-1:-1:-1;;;12730:3:1;12715:19;12708:35;12627:3;11769:980;-1:-1:-1;;;11769:980:1:o

Swarm Source

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