ETH Price: $2,911.28 (-3.93%)
Gas: 1 Gwei

Token

Ordinals Bridge (ORS)
 

Overview

Max Total Supply

1,000,000,000 ORS

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,000,000 ORS

Value
$0.00
0xf1349fca571f50ccaeab84ec0867ee5f27ca5199
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:
OrdinalsBridge

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : OrdinalsBridge.sol
// Website: https://ordinalsbridge.app
// Dapp: https://app.ordinalsbridge.app
// Telegram: https://t.me/OrdinalsBridge_App
// X: https://twitter.com/Ordinals_Bridge
// Docs: https://docs.ordinalsbridge.app

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` 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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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

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

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

// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity 0.8.22;

contract OrdinalsBridge is Ownable, ERC20 {
    event OpenTrading();

    address public pair;
    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 _supply = 1_000_000_000 * 10 ** 18;

    uint256 tax = 5;

    uint256 private _initialTax = 30;
    uint256 private _reduceTaxAt = 20;

    uint256 private _buyCount = 0;
    uint256 private _sellCount = 0;

    uint256 public _maxWallet = _supply / 50;
    uint256 public _maxAmount = _supply / 50;
    bool public isLimit = true;

    address public marketing;
    address public revenueShare;

    bool public tradingEnable;

    uint256 public swapAt = _supply / 1000;

    mapping(address => bool) public isExcludedFromFees;

    bool private inSwap = false;

    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() payable ERC20("Ordinals Bridge", "ORS") {
        marketing = msg.sender;

        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );

        isExcludedFromFees[msg.sender] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[address(router)] = true;

        _mint(msg.sender, _supply);
    }

    receive() external payable {}

    function trading() external onlyOwner {
        tradingEnable = true;
        emit OpenTrading();
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        isExcludedFromFees[_address] = _value;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            isExcludedFromFees[from] ||
            isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            inSwap
        ) {
            super._transfer(from, to, amount);
            return;
        }
        require(tradingEnable, "Trading is not open");

        if (isLimit && to != pair) {
            if (from == pair || to == pair) {
                require(amount <= _maxAmount, "Max Tx Exceeded");
            }
            if (to != pair) {
                require(
                    balanceOf(to) + amount <= _maxWallet,
                    "Max Wallet Exceeded"
                );
            }
        }
        uint256 fees = (amount * tax) / 100;

        if (to == pair) {
            if (balanceOf(address(this)) >= swapAt) {
                swapBack(swapAt);
            }
            _sellCount += 1;
            fees =
                (amount * (_sellCount > _reduceTaxAt ? tax : _initialTax)) /
                100;
        }

        if (from == pair) {
            _buyCount += 1;
            fees =
                (amount * (_buyCount > _reduceTaxAt ? tax : _initialTax)) /
                100;
        }

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

    function swapBack(uint256 tokenAmount) public swapping {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

        uint256 beforeBalance = balanceOf(address(router));

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 afterBalance = balanceOf(address(router));

        uint256 revenueFee = (afterBalance - beforeBalance) / 5;

        if (revenueFee > 0) {
            (bool success, ) = payable(revenueShare).call{value: revenueFee}(
                ""
            );
            require(success, "Failed to send ETH to revenue");
        }

        if (address(this).balance > 0) {
            (bool success, ) = payable(marketing).call{
                value: address(this).balance
            }("");
            require(success, "Failed to send ETH to marketing");
        }
    }

    function disableLimit() external onlyOwner {
        isLimit = false;
    }

    function updateMaketingWallet(address payable _newAddress) external {
        require(msg.sender == marketing, "Only marketing can update");
        marketing = _newAddress;
    }

    function updateRevenueShareWallet(
        address payable _newAddress
    ) external onlyOwner {
        revenueShare = _newAddress;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revenueShare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"updateMaketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"updateRevenueShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506b033b2e3c9fd0803ce80000006007556005600855601e6009556014600a555f600b555f600c5560326007546200008391906200072c565b600d5560326007546200009791906200072c565b600e556001600f5f6101000a81548160ff0219169083151502179055506103e8600754620000c691906200072c565b6011555f60135f6101000a81548160ff0219169083151502179055506040518060400160405280600f81526020017f4f7264696e616c732042726964676500000000000000000000000000000000008152506040518060400160405280600381526020017f4f525300000000000000000000000000000000000000000000000000000000008152506200016e620001626200049160201b60201c565b6200049860201b60201c565b81600490816200017f9190620009be565b508060059081620001919190620009be565b50505033600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000221573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000247919062000b07565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002af573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d5919062000b07565b6040518363ffffffff1660e01b8152600401620002f492919062000b48565b6020604051808303815f875af115801562000311573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000337919062000b07565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200048b336007546200055960201b60201c565b62000c57565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c19062000bd1565b60405180910390fd5b620005dd5f8383620006bf60201b60201c565b8060035f828254620005f0919062000bf1565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006a0919062000c3c565b60405180910390a3620006bb5f8383620006c460201b60201c565b5050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200073882620006c9565b91506200074583620006c9565b925082620007585762000757620006d2565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007df57607f821691505b602082108103620007f557620007f46200079a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086586836200081c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620008a6620008a06200089a84620006c9565b6200087d565b620006c9565b9050919050565b5f819050919050565b620008c18362000886565b620008d9620008d082620008ad565b84845462000828565b825550505050565b5f90565b620008ef620008e1565b620008fc818484620008b6565b505050565b5b818110156200092357620009175f82620008e5565b60018101905062000902565b5050565b601f82111562000972576200093c81620007fb565b62000947846200080d565b8101602085101562000957578190505b6200096f62000966856200080d565b83018262000901565b50505b505050565b5f82821c905092915050565b5f620009945f198460080262000977565b1980831691505092915050565b5f620009ae838362000983565b9150826002028217905092915050565b620009c98262000763565b67ffffffffffffffff811115620009e557620009e46200076d565b5b620009f18254620007c7565b620009fe82828562000927565b5f60209050601f83116001811462000a34575f841562000a1f578287015190505b62000a2b8582620009a1565b86555062000a9a565b601f19841662000a4486620007fb565b5f5b8281101562000a6d5784890151825560018201915060208501945060208101905062000a46565b8683101562000a8d578489015162000a89601f89168262000983565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ad18262000aa6565b9050919050565b62000ae38162000ac5565b811462000aee575f80fd5b50565b5f8151905062000b018162000ad8565b92915050565b5f6020828403121562000b1f5762000b1e62000aa2565b5b5f62000b2e8482850162000af1565b91505092915050565b62000b428162000ac5565b82525050565b5f60408201905062000b5d5f83018562000b37565b62000b6c602083018462000b37565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000bb9601f8362000b73565b915062000bc68262000b83565b602082019050919050565b5f6020820190508181035f83015262000bea8162000bab565b9050919050565b5f62000bfd82620006c9565b915062000c0a83620006c9565b925082820190508082111562000c255762000c24620006ff565b5b92915050565b62000c3681620006c9565b82525050565b5f60208201905062000c515f83018462000c2b565b92915050565b608051612c6562000c8c5f395f8181610ca201528181610d8101528181610dac01528181610dd40152610e660152612c655ff3fe6080604052600436106101c5575f3560e01c806357f8d2e3116100f6578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e14610638578063ec44acf214610674578063f2fde38b1461068a578063ff0984ca146106b2576101cc565b8063a457c2d71461056e578063a8aa1b31146105aa578063a9059cbb146105d4578063c1ebb47b14610610576101cc565b80637e6decae116100d05780637e6decae146104c657806382247ec0146104f05780638da5cb5b1461051a57806395d89b4114610544576101cc565b806357f8d2e31461044c57806370a0823114610474578063715018a6146104b0576101cc565b80631acc26bc116101635780632d3e474a1161013d5780632d3e474a14610380578063313ce567146103aa57806339509351146103d45780634fbee19314610410576101cc565b80631acc26bc1461030457806323b872dd1461031a5780632757805514610356576101cc565b8063095ea7b31161019f578063095ea7b31461024c57806316697fc5146102885780631693e8d4146102b057806318160ddd146102da576101cc565b806302eef887146101d057806306fdde03146101f857806308aa269514610222576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611dd0565b6106dc565b005b348015610203575f80fd5b5061020c610727565b6040516102199190611e85565b60405180910390f35b34801561022d575f80fd5b506102366107b7565b6040516102439190611ebd565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d9190611f3b565b6107bd565b60405161027f9190611f93565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a99190611fd6565b6107df565b005b3480156102bb575f80fd5b506102c461083f565b6040516102d19190611f93565b60405180910390f35b3480156102e5575f80fd5b506102ee610852565b6040516102fb9190611ebd565b60405180910390f35b34801561030f575f80fd5b5061031861085b565b005b348015610325575f80fd5b50610340600480360381019061033b9190612014565b61087e565b60405161034d9190611f93565b60405180910390f35b348015610361575f80fd5b5061036a6108ac565b6040516103779190611f93565b60405180910390f35b34801561038b575f80fd5b506103946108be565b6040516103a19190612073565b60405180910390f35b3480156103b5575f80fd5b506103be6108e4565b6040516103cb91906120a7565b60405180910390f35b3480156103df575f80fd5b506103fa60048036038101906103f59190611f3b565b6108ec565b6040516104079190611f93565b60405180910390f35b34801561041b575f80fd5b50610436600480360381019061043191906120c0565b610922565b6040516104439190611f93565b60405180910390f35b348015610457575f80fd5b50610472600480360381019061046d9190611dd0565b61093f565b005b34801561047f575f80fd5b5061049a600480360381019061049591906120c0565b610a13565b6040516104a79190611ebd565b60405180910390f35b3480156104bb575f80fd5b506104c4610a59565b005b3480156104d1575f80fd5b506104da610a6c565b6040516104e79190611ebd565b60405180910390f35b3480156104fb575f80fd5b50610504610a72565b6040516105119190611ebd565b60405180910390f35b348015610525575f80fd5b5061052e610a78565b60405161053b9190612073565b60405180910390f35b34801561054f575f80fd5b50610558610a9f565b6040516105659190611e85565b60405180910390f35b348015610579575f80fd5b50610594600480360381019061058f9190611f3b565b610b2f565b6040516105a19190611f93565b60405180910390f35b3480156105b5575f80fd5b506105be610ba4565b6040516105cb9190612073565b60405180910390f35b3480156105df575f80fd5b506105fa60048036038101906105f59190611f3b565b610bc9565b6040516106079190611f93565b60405180910390f35b34801561061b575f80fd5b50610636600480360381019061063191906120eb565b610beb565b005b348015610643575f80fd5b5061065e60048036038101906106599190612116565b61106e565b60405161066b9190611ebd565b60405180910390f35b34801561067f575f80fd5b506106886110f0565b005b348015610695575f80fd5b506106b060048036038101906106ab91906120c0565b611141565b005b3480156106bd575f80fd5b506106c66111c3565b6040516106d39190612073565b60405180910390f35b6106e46111e8565b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606004805461073690612181565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612181565b80156107ad5780601f10610784576101008083540402835291602001916107ad565b820191905f5260205f20905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60115481565b5f806107c7611266565b90506107d481858561126d565b600191505092915050565b6107e76111e8565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b601060149054906101000a900460ff1681565b5f600354905090565b6108636111e8565b5f600f5f6101000a81548160ff021916908315150217905550565b5f80610888611266565b9050610895858285611430565b6108a08585856114bb565b60019150509392505050565b600f5f9054906101000a900460ff1681565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806108f6611266565b9050610917818585610908858961106e565b61091291906121de565b61126d565b600191505092915050565b6012602052805f5260405f205f915054906101000a900460ff1681565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061225b565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a616111e8565b610a6a5f611a38565b565b600e5481565b600d5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aae90612181565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90612181565b8015610b255780601f10610afc57610100808354040283529160200191610b25565b820191905f5260205f20905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b5f80610b39611266565b90505f610b46828661106e565b905083811015610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906122e9565b60405180910390fd5b610b98828686840361126d565b60019250505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610bd3611266565b9050610be08185856114bb565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610c2157610c20612307565b5b604051908082528060200260200182016040528015610c4f5781602001602082028036833780820191505090505b50905030815f81518110610c6657610c65612334565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d09573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2d9190612375565b81600181518110610d4157610d40612334565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610da6307f00000000000000000000000000000000000000000000000000000000000000008461126d565b5f610dd07f0000000000000000000000000000000000000000000000000000000000000000610a13565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947845f8530426040518663ffffffff1660e01b8152600401610e33959493929190612499565b5f604051808303815f87803b158015610e4a575f80fd5b505af1158015610e5c573d5f803e3d5ffd5b505050505f610e8a7f0000000000000000000000000000000000000000000000000000000000000000610a13565b90505f60058383610e9b91906124f1565b610ea59190612551565b90505f811115610f7a575f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ef5906125ae565b5f6040518083038185875af1925050503d805f8114610f2f576040519150601f19603f3d011682016040523d82523d5f602084013e610f34565b606091505b5050905080610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061260c565b60405180910390fd5b505b5f47111561104e575f600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fc9906125ae565b5f6040518083038185875af1925050503d805f8114611003576040519150601f19603f3d011682016040523d82523d5f602084013e611008565b606091505b505090508061104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612674565b60405180910390fd5b505b505050505f60135f6101000a81548160ff02191690831515021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6110f86111e8565b6001601060146101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6111496111e8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90612702565b60405180910390fd5b6111c081611a38565b50565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f0611266565b73ffffffffffffffffffffffffffffffffffffffff1661120e610a78565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b9061276a565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d2906127f8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090612886565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114239190611ebd565b60405180910390a3505050565b5f61143b848461106e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114b557818110156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906128ee565b60405180910390fd5b6114b4848484840361126d565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611556575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611607575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611606575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061161d575060135f9054906101000a900460ff165b156116325761162d838383611af9565b611a33565b601060149054906101000a900460ff16611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890612956565b60405180910390fd5b600f5f9054906101000a900460ff1680156116e9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561188e5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611795575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156117e057600e548111156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906129be565b60405180910390fd5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461188d57600d548161184184610a13565b61184b91906121de565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612a26565b60405180910390fd5b5b5b5f60646008548361189f9190612a44565b6118a99190612551565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119665760115461190b30610a13565b1061191c5761191b601154610beb565b5b6001600c5f82825461192e91906121de565b925050819055506064600a54600c541161194a5760095461194e565b6008545b836119599190612a44565b6119639190612551565b90505b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a04576001600b5f8282546119cc91906121de565b925050819055506064600a54600b54116119e8576009546119ec565b6008545b836119f79190612a44565b611a019190612551565b90505b5f811115611a2657611a17843083611af9565b8082611a2391906124f1565b91505b611a31848484611af9565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90612af5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90612b83565b60405180910390fd5b611be0838383611d68565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90612c11565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4f9190611ebd565b60405180910390a3611d62848484611d6d565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d9f82611d76565b9050919050565b611daf81611d95565b8114611db9575f80fd5b50565b5f81359050611dca81611da6565b92915050565b5f60208284031215611de557611de4611d72565b5b5f611df284828501611dbc565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e32578082015181840152602081019050611e17565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e5782611dfb565b611e618185611e05565b9350611e71818560208601611e15565b611e7a81611e3d565b840191505092915050565b5f6020820190508181035f830152611e9d8184611e4d565b905092915050565b5f819050919050565b611eb781611ea5565b82525050565b5f602082019050611ed05f830184611eae565b92915050565b5f611ee082611d76565b9050919050565b611ef081611ed6565b8114611efa575f80fd5b50565b5f81359050611f0b81611ee7565b92915050565b611f1a81611ea5565b8114611f24575f80fd5b50565b5f81359050611f3581611f11565b92915050565b5f8060408385031215611f5157611f50611d72565b5b5f611f5e85828601611efd565b9250506020611f6f85828601611f27565b9150509250929050565b5f8115159050919050565b611f8d81611f79565b82525050565b5f602082019050611fa65f830184611f84565b92915050565b611fb581611f79565b8114611fbf575f80fd5b50565b5f81359050611fd081611fac565b92915050565b5f8060408385031215611fec57611feb611d72565b5b5f611ff985828601611efd565b925050602061200a85828601611fc2565b9150509250929050565b5f805f6060848603121561202b5761202a611d72565b5b5f61203886828701611efd565b935050602061204986828701611efd565b925050604061205a86828701611f27565b9150509250925092565b61206d81611ed6565b82525050565b5f6020820190506120865f830184612064565b92915050565b5f60ff82169050919050565b6120a18161208c565b82525050565b5f6020820190506120ba5f830184612098565b92915050565b5f602082840312156120d5576120d4611d72565b5b5f6120e284828501611efd565b91505092915050565b5f60208284031215612100576120ff611d72565b5b5f61210d84828501611f27565b91505092915050565b5f806040838503121561212c5761212b611d72565b5b5f61213985828601611efd565b925050602061214a85828601611efd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061219857607f821691505b6020821081036121ab576121aa612154565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121e882611ea5565b91506121f383611ea5565b925082820190508082111561220b5761220a6121b1565b5b92915050565b7f4f6e6c79206d61726b6574696e672063616e20757064617465000000000000005f82015250565b5f612245601983611e05565b915061225082612211565b602082019050919050565b5f6020820190508181035f83015261227281612239565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6122d3602583611e05565b91506122de82612279565b604082019050919050565b5f6020820190508181035f830152612300816122c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061236f81611ee7565b92915050565b5f6020828403121561238a57612389611d72565b5b5f61239784828501612361565b91505092915050565b5f819050919050565b5f819050919050565b5f6123cc6123c76123c2846123a0565b6123a9565b611ea5565b9050919050565b6123dc816123b2565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61241481611ed6565b82525050565b5f612425838361240b565b60208301905092915050565b5f602082019050919050565b5f612447826123e2565b61245181856123ec565b935061245c836123fc565b805f5b8381101561248c578151612473888261241a565b975061247e83612431565b92505060018101905061245f565b5085935050505092915050565b5f60a0820190506124ac5f830188611eae565b6124b960208301876123d3565b81810360408301526124cb818661243d565b90506124da6060830185612064565b6124e76080830184611eae565b9695505050505050565b5f6124fb82611ea5565b915061250683611ea5565b925082820390508181111561251e5761251d6121b1565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61255b82611ea5565b915061256683611ea5565b92508261257657612575612524565b5b828204905092915050565b5f81905092915050565b50565b5f6125995f83612581565b91506125a48261258b565b5f82019050919050565b5f6125b88261258e565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f20726576656e75650000005f82015250565b5f6125f6601d83611e05565b9150612601826125c2565b602082019050919050565b5f6020820190508181035f830152612623816125ea565b9050919050565b7f4661696c656420746f2073656e642045544820746f206d61726b6574696e67005f82015250565b5f61265e601f83611e05565b91506126698261262a565b602082019050919050565b5f6020820190508181035f83015261268b81612652565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6126ec602683611e05565b91506126f782612692565b604082019050919050565b5f6020820190508181035f830152612719816126e0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612754602083611e05565b915061275f82612720565b602082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6127e2602483611e05565b91506127ed82612788565b604082019050919050565b5f6020820190508181035f83015261280f816127d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612870602283611e05565b915061287b82612816565b604082019050919050565b5f6020820190508181035f83015261289d81612864565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6128d8601d83611e05565b91506128e3826128a4565b602082019050919050565b5f6020820190508181035f830152612905816128cc565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612940601383611e05565b915061294b8261290c565b602082019050919050565b5f6020820190508181035f83015261296d81612934565b9050919050565b7f4d617820547820457863656564656400000000000000000000000000000000005f82015250565b5f6129a8600f83611e05565b91506129b382612974565b602082019050919050565b5f6020820190508181035f8301526129d58161299c565b9050919050565b7f4d61782057616c6c6574204578636565646564000000000000000000000000005f82015250565b5f612a10601383611e05565b9150612a1b826129dc565b602082019050919050565b5f6020820190508181035f830152612a3d81612a04565b9050919050565b5f612a4e82611ea5565b9150612a5983611ea5565b9250828202612a6781611ea5565b91508282048414831517612a7e57612a7d6121b1565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612adf602583611e05565b9150612aea82612a85565b604082019050919050565b5f6020820190508181035f830152612b0c81612ad3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612b6d602383611e05565b9150612b7882612b13565b604082019050919050565b5f6020820190508181035f830152612b9a81612b61565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612bfb602683611e05565b9150612c0682612ba1565b604082019050919050565b5f6020820190508181035f830152612c2881612bef565b905091905056fea26469706673582212203b40af5e784a73cde5826d256799c4f408ae42d0f29b2d6b1d93d50669d4bb5c64736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101c5575f3560e01c806357f8d2e3116100f6578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e14610638578063ec44acf214610674578063f2fde38b1461068a578063ff0984ca146106b2576101cc565b8063a457c2d71461056e578063a8aa1b31146105aa578063a9059cbb146105d4578063c1ebb47b14610610576101cc565b80637e6decae116100d05780637e6decae146104c657806382247ec0146104f05780638da5cb5b1461051a57806395d89b4114610544576101cc565b806357f8d2e31461044c57806370a0823114610474578063715018a6146104b0576101cc565b80631acc26bc116101635780632d3e474a1161013d5780632d3e474a14610380578063313ce567146103aa57806339509351146103d45780634fbee19314610410576101cc565b80631acc26bc1461030457806323b872dd1461031a5780632757805514610356576101cc565b8063095ea7b31161019f578063095ea7b31461024c57806316697fc5146102885780631693e8d4146102b057806318160ddd146102da576101cc565b806302eef887146101d057806306fdde03146101f857806308aa269514610222576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611dd0565b6106dc565b005b348015610203575f80fd5b5061020c610727565b6040516102199190611e85565b60405180910390f35b34801561022d575f80fd5b506102366107b7565b6040516102439190611ebd565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d9190611f3b565b6107bd565b60405161027f9190611f93565b60405180910390f35b348015610293575f80fd5b506102ae60048036038101906102a99190611fd6565b6107df565b005b3480156102bb575f80fd5b506102c461083f565b6040516102d19190611f93565b60405180910390f35b3480156102e5575f80fd5b506102ee610852565b6040516102fb9190611ebd565b60405180910390f35b34801561030f575f80fd5b5061031861085b565b005b348015610325575f80fd5b50610340600480360381019061033b9190612014565b61087e565b60405161034d9190611f93565b60405180910390f35b348015610361575f80fd5b5061036a6108ac565b6040516103779190611f93565b60405180910390f35b34801561038b575f80fd5b506103946108be565b6040516103a19190612073565b60405180910390f35b3480156103b5575f80fd5b506103be6108e4565b6040516103cb91906120a7565b60405180910390f35b3480156103df575f80fd5b506103fa60048036038101906103f59190611f3b565b6108ec565b6040516104079190611f93565b60405180910390f35b34801561041b575f80fd5b50610436600480360381019061043191906120c0565b610922565b6040516104439190611f93565b60405180910390f35b348015610457575f80fd5b50610472600480360381019061046d9190611dd0565b61093f565b005b34801561047f575f80fd5b5061049a600480360381019061049591906120c0565b610a13565b6040516104a79190611ebd565b60405180910390f35b3480156104bb575f80fd5b506104c4610a59565b005b3480156104d1575f80fd5b506104da610a6c565b6040516104e79190611ebd565b60405180910390f35b3480156104fb575f80fd5b50610504610a72565b6040516105119190611ebd565b60405180910390f35b348015610525575f80fd5b5061052e610a78565b60405161053b9190612073565b60405180910390f35b34801561054f575f80fd5b50610558610a9f565b6040516105659190611e85565b60405180910390f35b348015610579575f80fd5b50610594600480360381019061058f9190611f3b565b610b2f565b6040516105a19190611f93565b60405180910390f35b3480156105b5575f80fd5b506105be610ba4565b6040516105cb9190612073565b60405180910390f35b3480156105df575f80fd5b506105fa60048036038101906105f59190611f3b565b610bc9565b6040516106079190611f93565b60405180910390f35b34801561061b575f80fd5b50610636600480360381019061063191906120eb565b610beb565b005b348015610643575f80fd5b5061065e60048036038101906106599190612116565b61106e565b60405161066b9190611ebd565b60405180910390f35b34801561067f575f80fd5b506106886110f0565b005b348015610695575f80fd5b506106b060048036038101906106ab91906120c0565b611141565b005b3480156106bd575f80fd5b506106c66111c3565b6040516106d39190612073565b60405180910390f35b6106e46111e8565b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606004805461073690612181565b80601f016020809104026020016040519081016040528092919081815260200182805461076290612181565b80156107ad5780601f10610784576101008083540402835291602001916107ad565b820191905f5260205f20905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60115481565b5f806107c7611266565b90506107d481858561126d565b600191505092915050565b6107e76111e8565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b601060149054906101000a900460ff1681565b5f600354905090565b6108636111e8565b5f600f5f6101000a81548160ff021916908315150217905550565b5f80610888611266565b9050610895858285611430565b6108a08585856114bb565b60019150509392505050565b600f5f9054906101000a900460ff1681565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806108f6611266565b9050610917818585610908858961106e565b61091291906121de565b61126d565b600191505092915050565b6012602052805f5260405f205f915054906101000a900460ff1681565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061225b565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a616111e8565b610a6a5f611a38565b565b600e5481565b600d5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aae90612181565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90612181565b8015610b255780601f10610afc57610100808354040283529160200191610b25565b820191905f5260205f20905b815481529060010190602001808311610b0857829003601f168201915b5050505050905090565b5f80610b39611266565b90505f610b46828661106e565b905083811015610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906122e9565b60405180910390fd5b610b98828686840361126d565b60019250505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610bd3611266565b9050610be08185856114bb565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610c2157610c20612307565b5b604051908082528060200260200182016040528015610c4f5781602001602082028036833780820191505090505b50905030815f81518110610c6657610c65612334565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d09573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2d9190612375565b81600181518110610d4157610d40612334565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610da6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461126d565b5f610dd07f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610a13565b90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947845f8530426040518663ffffffff1660e01b8152600401610e33959493929190612499565b5f604051808303815f87803b158015610e4a575f80fd5b505af1158015610e5c573d5f803e3d5ffd5b505050505f610e8a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610a13565b90505f60058383610e9b91906124f1565b610ea59190612551565b90505f811115610f7a575f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ef5906125ae565b5f6040518083038185875af1925050503d805f8114610f2f576040519150601f19603f3d011682016040523d82523d5f602084013e610f34565b606091505b5050905080610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061260c565b60405180910390fd5b505b5f47111561104e575f600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fc9906125ae565b5f6040518083038185875af1925050503d805f8114611003576040519150601f19603f3d011682016040523d82523d5f602084013e611008565b606091505b505090508061104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612674565b60405180910390fd5b505b505050505f60135f6101000a81548160ff02191690831515021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6110f86111e8565b6001601060146101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6111496111e8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90612702565b60405180910390fd5b6111c081611a38565b50565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111f0611266565b73ffffffffffffffffffffffffffffffffffffffff1661120e610a78565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b9061276a565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d2906127f8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090612886565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114239190611ebd565b60405180910390a3505050565b5f61143b848461106e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114b557818110156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906128ee565b60405180910390fd5b6114b4848484840361126d565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611556575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611607575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611606575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061161d575060135f9054906101000a900460ff165b156116325761162d838383611af9565b611a33565b601060149054906101000a900460ff16611681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167890612956565b60405180910390fd5b600f5f9054906101000a900460ff1680156116e9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561188e5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611795575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156117e057600e548111156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906129be565b60405180910390fd5b5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461188d57600d548161184184610a13565b61184b91906121de565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612a26565b60405180910390fd5b5b5b5f60646008548361189f9190612a44565b6118a99190612551565b905060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119665760115461190b30610a13565b1061191c5761191b601154610beb565b5b6001600c5f82825461192e91906121de565b925050819055506064600a54600c541161194a5760095461194e565b6008545b836119599190612a44565b6119639190612551565b90505b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a04576001600b5f8282546119cc91906121de565b925050819055506064600a54600b54116119e8576009546119ec565b6008545b836119f79190612a44565b611a019190612551565b90505b5f811115611a2657611a17843083611af9565b8082611a2391906124f1565b91505b611a31848484611af9565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90612af5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90612b83565b60405180910390fd5b611be0838383611d68565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90612c11565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4f9190611ebd565b60405180910390a3611d62848484611d6d565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611d9f82611d76565b9050919050565b611daf81611d95565b8114611db9575f80fd5b50565b5f81359050611dca81611da6565b92915050565b5f60208284031215611de557611de4611d72565b5b5f611df284828501611dbc565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e32578082015181840152602081019050611e17565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e5782611dfb565b611e618185611e05565b9350611e71818560208601611e15565b611e7a81611e3d565b840191505092915050565b5f6020820190508181035f830152611e9d8184611e4d565b905092915050565b5f819050919050565b611eb781611ea5565b82525050565b5f602082019050611ed05f830184611eae565b92915050565b5f611ee082611d76565b9050919050565b611ef081611ed6565b8114611efa575f80fd5b50565b5f81359050611f0b81611ee7565b92915050565b611f1a81611ea5565b8114611f24575f80fd5b50565b5f81359050611f3581611f11565b92915050565b5f8060408385031215611f5157611f50611d72565b5b5f611f5e85828601611efd565b9250506020611f6f85828601611f27565b9150509250929050565b5f8115159050919050565b611f8d81611f79565b82525050565b5f602082019050611fa65f830184611f84565b92915050565b611fb581611f79565b8114611fbf575f80fd5b50565b5f81359050611fd081611fac565b92915050565b5f8060408385031215611fec57611feb611d72565b5b5f611ff985828601611efd565b925050602061200a85828601611fc2565b9150509250929050565b5f805f6060848603121561202b5761202a611d72565b5b5f61203886828701611efd565b935050602061204986828701611efd565b925050604061205a86828701611f27565b9150509250925092565b61206d81611ed6565b82525050565b5f6020820190506120865f830184612064565b92915050565b5f60ff82169050919050565b6120a18161208c565b82525050565b5f6020820190506120ba5f830184612098565b92915050565b5f602082840312156120d5576120d4611d72565b5b5f6120e284828501611efd565b91505092915050565b5f60208284031215612100576120ff611d72565b5b5f61210d84828501611f27565b91505092915050565b5f806040838503121561212c5761212b611d72565b5b5f61213985828601611efd565b925050602061214a85828601611efd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061219857607f821691505b6020821081036121ab576121aa612154565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121e882611ea5565b91506121f383611ea5565b925082820190508082111561220b5761220a6121b1565b5b92915050565b7f4f6e6c79206d61726b6574696e672063616e20757064617465000000000000005f82015250565b5f612245601983611e05565b915061225082612211565b602082019050919050565b5f6020820190508181035f83015261227281612239565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6122d3602583611e05565b91506122de82612279565b604082019050919050565b5f6020820190508181035f830152612300816122c7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061236f81611ee7565b92915050565b5f6020828403121561238a57612389611d72565b5b5f61239784828501612361565b91505092915050565b5f819050919050565b5f819050919050565b5f6123cc6123c76123c2846123a0565b6123a9565b611ea5565b9050919050565b6123dc816123b2565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61241481611ed6565b82525050565b5f612425838361240b565b60208301905092915050565b5f602082019050919050565b5f612447826123e2565b61245181856123ec565b935061245c836123fc565b805f5b8381101561248c578151612473888261241a565b975061247e83612431565b92505060018101905061245f565b5085935050505092915050565b5f60a0820190506124ac5f830188611eae565b6124b960208301876123d3565b81810360408301526124cb818661243d565b90506124da6060830185612064565b6124e76080830184611eae565b9695505050505050565b5f6124fb82611ea5565b915061250683611ea5565b925082820390508181111561251e5761251d6121b1565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61255b82611ea5565b915061256683611ea5565b92508261257657612575612524565b5b828204905092915050565b5f81905092915050565b50565b5f6125995f83612581565b91506125a48261258b565b5f82019050919050565b5f6125b88261258e565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f20726576656e75650000005f82015250565b5f6125f6601d83611e05565b9150612601826125c2565b602082019050919050565b5f6020820190508181035f830152612623816125ea565b9050919050565b7f4661696c656420746f2073656e642045544820746f206d61726b6574696e67005f82015250565b5f61265e601f83611e05565b91506126698261262a565b602082019050919050565b5f6020820190508181035f83015261268b81612652565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6126ec602683611e05565b91506126f782612692565b604082019050919050565b5f6020820190508181035f830152612719816126e0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612754602083611e05565b915061275f82612720565b602082019050919050565b5f6020820190508181035f83015261278181612748565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6127e2602483611e05565b91506127ed82612788565b604082019050919050565b5f6020820190508181035f83015261280f816127d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612870602283611e05565b915061287b82612816565b604082019050919050565b5f6020820190508181035f83015261289d81612864565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6128d8601d83611e05565b91506128e3826128a4565b602082019050919050565b5f6020820190508181035f830152612905816128cc565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612940601383611e05565b915061294b8261290c565b602082019050919050565b5f6020820190508181035f83015261296d81612934565b9050919050565b7f4d617820547820457863656564656400000000000000000000000000000000005f82015250565b5f6129a8600f83611e05565b91506129b382612974565b602082019050919050565b5f6020820190508181035f8301526129d58161299c565b9050919050565b7f4d61782057616c6c6574204578636565646564000000000000000000000000005f82015250565b5f612a10601383611e05565b9150612a1b826129dc565b602082019050919050565b5f6020820190508181035f830152612a3d81612a04565b9050919050565b5f612a4e82611ea5565b9150612a5983611ea5565b9250828202612a6781611ea5565b91508282048414831517612a7e57612a7d6121b1565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612adf602583611e05565b9150612aea82612a85565b604082019050919050565b5f6020820190508181035f830152612b0c81612ad3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612b6d602383611e05565b9150612b7882612b13565b604082019050919050565b5f6020820190508181035f830152612b9a81612b61565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612bfb602683611e05565b9150612c0682612ba1565b604082019050919050565b5f6020820190508181035f830152612c2881612bef565b905091905056fea26469706673582212203b40af5e784a73cde5826d256799c4f408ae42d0f29b2d6b1d93d50669d4bb5c64736f6c63430008160033

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.