ETH Price: $3,275.47 (-3.96%)
Gas: 15 Gwei

Token

Magick DAO (MAGICK)
 

Overview

Max Total Supply

4,206,900,000,000 MAGICK

Holders

443

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
443,629.633543439 MAGICK

Value
$0.00
0x1a9199897d2eb19b79c024c925a71934d4f7a113
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:
MagickDAO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-26
*/

/**
    Magick DAO $MAGICK 

    This token is being spearheaded by head Wizard, Steven Brundage.
    Steven, a young and established magician/artist, has worked with
    top-tier celebrities like Kobe Bryant, Tony Hawk, and Chadwick Boseman
    to name a few. Additionally, he placed in the top 3 on US talent show
    Americas Got Talent, has done national interviews on syndicated US
    television (GMA, Regis&Kelly), and currently tours his curated
    Rubix-cube Art all over the world.

    Tokenomics: 

    14% buy/sell tax:

    4% reflections
    10% marketing/liquidity 


    Website:
    https://www.magickdao.com

    Telegram:
    https://t.me/magickDAO

    Twitter:
    https://twitter.com/MagickDAO

*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;


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

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `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 `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

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

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

// Contract implementation
contract MagickDAO is Context, IERC20, Ownable {
  using SafeMath for uint256;
  using Address for address;

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

  mapping(address => bool) private _isExcludedFromFee;

  mapping(address => bool) private _isExcluded;
  address[] private _excluded;

  uint256 private constant MAX = ~uint256(0);
  uint256 private _tTotal = 4206900000000 * 10**9;
  uint256 private _rTotal = (MAX - (MAX % _tTotal));
  uint256 private _tFeeTotal;

  string private _name = 'Magick DAO';
  string private _symbol = 'MAGICK';
  uint8 private _decimals = 9;

  uint256 private _taxFee = 4;
  uint256 private _teamFee = 10;
  uint256 private _previousTaxFee = _taxFee;
  uint256 private _previousTeamFee = _teamFee;

  address payable public _MagickWalletAddress;
  address payable public _marketingWalletAddress;

  IUniswapV2Router02 public immutable uniswapV2Router;
  address public immutable uniswapV2Pair;
  mapping(address => bool) private _isUniswapPair;

  bool inSwap = false;
  bool public swapEnabled = true;

  uint8 _sellTaxMultiplier = 1;

  uint256 private _maxTxAmount = 21000000000e9;
  // We will set a minimum amount of tokens to be swaped => 5M
  uint256 private _numOfTokensToExchangeForTeam = 5 * 10**3 * 10**9;

  struct AirdropReceiver {
    address addy;
    uint256 amount;
  }

  event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
  event SwapEnabledUpdated(bool enabled);

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

  constructor(
    address payable MagickWalletAddress,
    address payable marketingWalletAddress
  ) {
    _MagickWalletAddress = MagickWalletAddress;
    _marketingWalletAddress = marketingWalletAddress;
    _rOwned[_msgSender()] = _rTotal;

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
      0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    ); // UniswapV2 for Ethereum network
    // Create a uniswap pair for this new token
    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
      address(this),
      _uniswapV2Router.WETH()
    );

    // set the rest of the contract variables
    uniswapV2Router = _uniswapV2Router;

    // Exclude owner and this contract from fee
    _isExcludedFromFee[owner()] = true;
    _isExcludedFromFee[address(this)] = true;

    emit Transfer(address(0), _msgSender(), _tTotal);
  }

  function name() public view returns (string memory) {
    return _name;
  }

  function symbol() public view returns (string memory) {
    return _symbol;
  }

  function decimals() public view returns (uint8) {
    return _decimals;
  }

  function totalSupply() public view override returns (uint256) {
    return _tTotal;
  }

  function balanceOf(address account) public view override returns (uint256) {
    if (_isExcluded[account]) return _tOwned[account];
    return tokenFromReflection(_rOwned[account]);
  }

  function transfer(address recipient, uint256 amount)
    public
    override
    returns (bool)
  {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  function allowance(address owner, address spender)
    public
    view
    override
    returns (uint256)
  {
    return _allowances[owner][spender];
  }

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

  function transferFrom(
    address sender,
    address recipient,
    uint256 amount
  ) public override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(
      sender,
      _msgSender(),
      _allowances[sender][_msgSender()].sub(
        amount,
        'ERC20: transfer amount exceeds allowance'
      )
    );
    return true;
  }

  function increaseAllowance(address spender, uint256 addedValue)
    public
    virtual
    returns (bool)
  {
    _approve(
      _msgSender(),
      spender,
      _allowances[_msgSender()][spender].add(addedValue)
    );
    return true;
  }

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

  function isExcluded(address account) public view returns (bool) {
    return _isExcluded[account];
  }

  function setExcludeFromFee(address account, bool excluded)
    external
    onlyOwner
  {
    _isExcludedFromFee[account] = excluded;
  }

  function totalFees() public view returns (uint256) {
    return _tFeeTotal;
  }

  function deliver(uint256 tAmount) public {
    address sender = _msgSender();
    require(
      !_isExcluded[sender],
      'Excluded addresses cannot call this function'
    );
    (uint256 rAmount, , , , , ) = _getValues(tAmount, false);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rTotal = _rTotal.sub(rAmount);
    _tFeeTotal = _tFeeTotal.add(tAmount);
  }

  function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
    public
    view
    returns (uint256)
  {
    require(tAmount <= _tTotal, 'Amount must be less than supply');
    if (!deductTransferFee) {
      (uint256 rAmount, , , , , ) = _getValues(tAmount, false);
      return rAmount;
    } else {
      (, uint256 rTransferAmount, , , , ) = _getValues(tAmount, false);
      return rTransferAmount;
    }
  }

  function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
    require(rAmount <= _rTotal, 'Amount must be less than total reflections');
    uint256 currentRate = _getRate();
    return rAmount.div(currentRate);
  }

  function excludeAccount(address account) external onlyOwner {
    require(
      account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
      'We can not exclude Uniswap router.'
    );
    require(!_isExcluded[account], 'Account is already excluded');
    if (_rOwned[account] > 0) {
      _tOwned[account] = tokenFromReflection(_rOwned[account]);
    }
    _isExcluded[account] = true;
    _excluded.push(account);
  }

  function includeAccount(address account) external onlyOwner {
    require(_isExcluded[account], 'Account is already excluded');
    for (uint256 i = 0; i < _excluded.length; i++) {
      if (_excluded[i] == account) {
        _excluded[i] = _excluded[_excluded.length - 1];
        _tOwned[account] = 0;
        _isExcluded[account] = false;
        _excluded.pop();
        break;
      }
    }
  }

  function removeAllFee() private {
    if (_taxFee == 0 && _teamFee == 0) return;

    _previousTaxFee = _taxFee;
    _previousTeamFee = _teamFee;

    _taxFee = 0;
    _teamFee = 0;
  }

  function restoreAllFee() private {
    _taxFee = _previousTaxFee;
    _teamFee = _previousTeamFee;
  }

  function isExcludedFromFee(address account) public view returns (bool) {
    return _isExcludedFromFee[account];
  }

  function _approve(
    address owner,
    address spender,
    uint256 amount
  ) private {
    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);
  }

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) private {
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');
    require(amount > 0, 'Transfer amount must be greater than zero');

    if (sender != owner() && recipient != owner())
      require(
        amount <= _maxTxAmount,
        'Transfer amount exceeds the maxTxAmount.'
      );

    // is the token balance of this contract address over the min number of
    // tokens that we need to initiate a swap?
    // also, don't get caught in a circular team event.
    // also, don't swap if sender is uniswap pair.
    uint256 contractTokenBalance = balanceOf(address(this));

    if (contractTokenBalance >= _maxTxAmount) {
      contractTokenBalance = _maxTxAmount;
    }

    bool overMinTokenBalance = contractTokenBalance >=
      _numOfTokensToExchangeForTeam;
    if (
      !inSwap &&
      swapEnabled &&
      overMinTokenBalance &&
      (recipient == uniswapV2Pair || _isUniswapPair[recipient])
    ) {
      // We need to swap the current tokens to ETH and send to the team wallet
      swapTokensForEth(contractTokenBalance);

      uint256 contractETHBalance = address(this).balance;
      if (contractETHBalance > 0) {
        sendETHToTeam(address(this).balance);
      }
    }

    // indicates if fee should be deducted from transfer
    bool takeFee = false;

    // take fee only on swaps
    if (
      (sender == uniswapV2Pair ||
        recipient == uniswapV2Pair ||
        _isUniswapPair[recipient] ||
        _isUniswapPair[sender]) &&
      !(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient])
    ) {
      takeFee = true;
    }

    //transfer amount, it will take tax and team fee
    _tokenTransfer(sender, recipient, amount, takeFee);
  }

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

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

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

  function sendETHToTeam(uint256 amount) private {
    _MagickWalletAddress.call{ value: amount.div(2) }('');
    _marketingWalletAddress.call{ value: amount.div(2) }('');
  }

  // We are exposing these functions to be able to manual swap and send
  // in case the token is highly valued and 5M becomes too much
  function manualSwap() external onlyOwner {
    uint256 contractBalance = balanceOf(address(this));
    swapTokensForEth(contractBalance);
  }

  function manualSend() external onlyOwner {
    uint256 contractETHBalance = address(this).balance;
    sendETHToTeam(contractETHBalance);
  }

  function setSwapEnabled(bool enabled) external onlyOwner {
    swapEnabled = enabled;
  }

  function _tokenTransfer(
    address sender,
    address recipient,
    uint256 amount,
    bool takeFee
  ) private {
    if (!takeFee) removeAllFee();

    if (_isExcluded[sender] && !_isExcluded[recipient]) {
      _transferFromExcluded(sender, recipient, amount);
    } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
      _transferToExcluded(sender, recipient, amount);
    } else if (_isExcluded[sender] && _isExcluded[recipient]) {
      _transferBothExcluded(sender, recipient, amount);
    } else {
      _transferStandard(sender, recipient, amount);
    }

    if (!takeFee) restoreAllFee();
  }

  function _transferStandard(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    (
      uint256 rAmount,
      uint256 rTransferAmount,
      uint256 rFee,
      uint256 tTransferAmount,
      uint256 tFee,
      uint256 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _reflectFee(rFee, tFee);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _transferToExcluded(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    (
      uint256 rAmount,
      uint256 rTransferAmount,
      uint256 rFee,
      uint256 tTransferAmount,
      uint256 tFee,
      uint256 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _reflectFee(rFee, tFee);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _transferFromExcluded(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    (
      uint256 rAmount,
      uint256 rTransferAmount,
      uint256 rFee,
      uint256 tTransferAmount,
      uint256 tFee,
      uint256 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _tOwned[sender] = _tOwned[sender].sub(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _reflectFee(rFee, tFee);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _transferBothExcluded(
    address sender,
    address recipient,
    uint256 tAmount
  ) private {
    (
      uint256 rAmount,
      uint256 rTransferAmount,
      uint256 rFee,
      uint256 tTransferAmount,
      uint256 tFee,
      uint256 tTeam
    ) = _getValues(tAmount, _isSelling(recipient));
    _tOwned[sender] = _tOwned[sender].sub(tAmount);
    _rOwned[sender] = _rOwned[sender].sub(rAmount);
    _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
    _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    _takeTeam(tTeam);
    _reflectFee(rFee, tFee);
    emit Transfer(sender, recipient, tTransferAmount);
  }

  function _takeTeam(uint256 tTeam) private {
    uint256 currentRate = _getRate();
    uint256 rTeam = tTeam.mul(currentRate);
    _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    if (_isExcluded[address(this)])
      _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
  }

  function _reflectFee(uint256 rFee, uint256 tFee) private {
    _rTotal = _rTotal.sub(rFee);
    _tFeeTotal = _tFeeTotal.add(tFee);
  }

  //to recieve ETH from uniswapV2Router when swaping
  receive() external payable {}

  function _getValues(uint256 tAmount, bool isSelling)
    private
    view
    returns (
      uint256,
      uint256,
      uint256,
      uint256,
      uint256,
      uint256
    )
  {
    (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(
      tAmount,
      _taxFee,
      _teamFee,
      isSelling
    );
    uint256 currentRate = _getRate();
    (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
      tAmount,
      tFee,
      tTeam,
      currentRate
    );
    return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
  }

  function _getTValues(
    uint256 tAmount,
    uint256 taxFee,
    uint256 teamFee,
    bool isSelling
  )
    private
    view
    returns (
      uint256,
      uint256,
      uint256
    )
  {
    uint256 finalTax = isSelling ? taxFee.mul(_sellTaxMultiplier) : taxFee;
    uint256 finalTeam = isSelling ? teamFee.mul(_sellTaxMultiplier) : teamFee;

    uint256 tFee = tAmount.mul(finalTax).div(100);
    uint256 tTeam = tAmount.mul(finalTeam).div(100);
    uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
    return (tTransferAmount, tFee, tTeam);
  }

  function _getRValues(
    uint256 tAmount,
    uint256 tFee,
    uint256 tTeam,
    uint256 currentRate
  )
    private
    pure
    returns (
      uint256,
      uint256,
      uint256
    )
  {
    uint256 rAmount = tAmount.mul(currentRate);
    uint256 rFee = tFee.mul(currentRate);
    uint256 rTeam = tTeam.mul(currentRate);
    uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
    return (rAmount, rTransferAmount, rFee);
  }

  function _getRate() private view returns (uint256) {
    (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
    return rSupply.div(tSupply);
  }

  function _getCurrentSupply() private view returns (uint256, uint256) {
    uint256 rSupply = _rTotal;
    uint256 tSupply = _tTotal;
    for (uint256 i = 0; i < _excluded.length; i++) {
      if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply)
        return (_rTotal, _tTotal);
      rSupply = rSupply.sub(_rOwned[_excluded[i]]);
      tSupply = tSupply.sub(_tOwned[_excluded[i]]);
    }
    if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
    return (rSupply, tSupply);
  }

  function _getTaxFee() private view returns (uint256) {
    return _taxFee;
  }

  function _getMaxTxAmount() private view returns (uint256) {
    return _maxTxAmount;
  }

  function _isSelling(address recipient) private view returns (bool) {
    return recipient == uniswapV2Pair || _isUniswapPair[recipient];
  }

  function _getETHBalance() public view returns (uint256 balance) {
    return address(this).balance;
  }

  function _setTaxFee(uint256 taxFee) external onlyOwner {
    require(taxFee <= 5, 'taxFee should be in 0 - 5');
    _taxFee = taxFee;
  }

  function _setTeamFee(uint256 teamFee) external onlyOwner {
    require(teamFee <= 5, 'teamFee should be in 0 - 5');
    _teamFee = teamFee;
  }

  function _setSellTaxMultiplier(uint8 mult) external onlyOwner {
    require(mult >= 1 && mult <= 3, 'multiplier should be in 1 - 3');
    _sellTaxMultiplier = mult;
  }

  function _setMagickWallet(address payable MagickWalletAddress) external onlyOwner {
    _MagickWalletAddress = MagickWalletAddress;
  }

  function _setMarketingWallet(address payable marketingWalletAddress)
    external
    onlyOwner
  {
    _marketingWalletAddress = marketingWalletAddress;
  }

  function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner {
    require(
      maxTxAmount >= 100000000000000e9,
      'maxTxAmount should be greater than 100000000000000e9'
    );
    _maxTxAmount = maxTxAmount;
  }

  function isUniswapPair(address _pair) external view returns (bool) {
    if (_pair == uniswapV2Pair) return true;
    return _isUniswapPair[_pair];
  }

  function addUniswapPair(address _pair) external onlyOwner {
    _isUniswapPair[_pair] = true;
  }

  function removeUniswapPair(address _pair) external onlyOwner {
    _isUniswapPair[_pair] = false;
  }

  function Airdrop(AirdropReceiver[] memory recipients) external onlyOwner {
    for (uint256 _i = 0; _i < recipients.length; _i++) {
      AirdropReceiver memory _user = recipients[_i];
      transferFrom(msg.sender, _user.addy, _user.amount);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"MagickWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":[{"components":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct MagickDAO.AirdropReceiver[]","name":"recipients","type":"tuple[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_MagickWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"MagickWalletAddress","type":"address"}],"name":"_setMagickWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mult","type":"uint8"}],"name":"_setSellTaxMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"addUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"isUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"removeUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405268e40e772ce376d2000060078190556200002190600019620005a6565b6200002f9060001962000545565b60085560408051808201909152600a808252694d616769636b2044414f60b01b60209092019182526200006391816200043b565b50604080518082019091526006808252654d414749434b60d01b60209092019182526200009391600b916200043b565b50600c805460ff191660091790556004600d819055600a600e819055600f91909155601055601480546201010062ffffff199091161790556801236efcbcbb34000060155565048c27395000601655348015620000ef57600080fd5b506040516200321138038062003211833981016040819052620001129162000507565b6200011d33620003eb565b601180546001600160a01b038085166001600160a01b0319928316179092556012805492841692909116919091179055600854600160006200015c3390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d357600080fd5b505afa158015620001e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020e9190620004e1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025757600080fd5b505afa1580156200026c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002929190620004e1565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002db57600080fd5b505af1158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003169190620004e1565b6001600160601b0319606091821b811660a0529082901b166080526001600460006200034a6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620003923390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620003da91815260200190565b60405180910390a3505050620005e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620004499062000569565b90600052602060002090601f0160209004810192826200046d5760008555620004b8565b82601f106200048857805160ff1916838001178555620004b8565b82800160010185558215620004b8579182015b82811115620004b85782518255916020019190600101906200049b565b50620004c6929150620004ca565b5090565b5b80821115620004c65760008155600101620004cb565b600060208284031215620004f3578081fd5b81516200050081620005c7565b9392505050565b600080604083850312156200051a578081fd5b82516200052781620005c7565b60208401519092506200053a81620005c7565b809150509250929050565b6000828210156200056457634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200057e57607f821691505b60208210811415620005a057634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005c257634e487b7160e01b81526012600452602481fd5b500690565b6001600160a01b0381168114620005dd57600080fd5b50565b60805160601c60a05160601c612bcd62000644600039600081816104b201528181610f3701528181611963015281816119dd01528181611a1801526125820152600081816102ed01528181611c3b01528181611d110152611d4d0152612bcd6000f3fe6080604052600436106102555760003560e01c80636ddd171311610139578063a9059cbb116100b6578063e01af92c1161007a578063e01af92c14610768578063f2cc0c1814610788578063f2fde38b146107a8578063f4293890146107c8578063f815a842146107dd578063f84354f1146107f057600080fd5b8063a9059cbb14610689578063af9549e0146106a9578063bee22593146106c9578063cba0e996146106e9578063dd62ed3e1461072257600080fd5b806395d89b41116100fd57806395d89b41146105f45780639cece12e14610609578063a457c2d714610629578063a6931ed714610649578063a7f404e21461066957600080fd5b80636ddd17131461056257806370a0823114610581578063715018a6146105a15780638da5cb5b146105b65780638f9cdac5146105d457600080fd5b8063303adcd8116101d25780634549b039116101965780634549b0391461048057806349bd5a5e146104a05780634c0aee5e146104d457806351bc3c85146104f45780635342acb4146105095780635880b8731461054257600080fd5b8063303adcd8146103de578063313ce567146103fe57806339509351146104205780633bd5d173146104405780634144d9e41461046057600080fd5b80631bbae6e0116102195780631bbae6e01461033c5780631ff53b601461035e57806323b872dd1461037e578063286671621461039e5780632d838119146103be57600080fd5b806306fdde0314610261578063095ea7b31461028c57806313114a9d146102bc5780631694505e146102db57806318160ddd1461032757600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610810565b60405161028391906128f3565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612780565b6108a2565b6040519015158152602001610283565b3480156102c857600080fd5b506009545b604051908152602001610283565b3480156102e757600080fd5b5061030f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610283565b34801561033357600080fd5b506007546102cd565b34801561034857600080fd5b5061035c610357366004612898565b6108b9565b005b34801561036a57600080fd5b5061035c61037936600461269c565b610968565b34801561038a57600080fd5b506102ac61039936600461270c565b6109b4565b3480156103aa57600080fd5b5061035c6103b9366004612898565b610a1d565b3480156103ca57600080fd5b506102cd6103d9366004612898565b610a9d565b3480156103ea57600080fd5b5061035c6103f93660046128d2565b610b21565b34801561040a57600080fd5b50600c5460405160ff9091168152602001610283565b34801561042c57600080fd5b506102ac61043b366004612780565b610bcd565b34801561044c57600080fd5b5061035c61045b366004612898565b610c03565b34801561046c57600080fd5b5060125461030f906001600160a01b031681565b34801561048c57600080fd5b506102cd61049b3660046128b0565b610cef565b3480156104ac57600080fd5b5061030f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e057600080fd5b5060115461030f906001600160a01b031681565b34801561050057600080fd5b5061035c610d80565b34801561051557600080fd5b506102ac61052436600461269c565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561054e57600080fd5b5061035c61055d366004612898565b610dc3565b34801561056e57600080fd5b506014546102ac90610100900460ff1681565b34801561058d57600080fd5b506102cd61059c36600461269c565b610e43565b3480156105ad57600080fd5b5061035c610ea2565b3480156105c257600080fd5b506000546001600160a01b031661030f565b3480156105e057600080fd5b5061035c6105ef36600461269c565b610ed8565b34801561060057600080fd5b50610276610f24565b34801561061557600080fd5b506102ac61062436600461269c565b610f33565b34801561063557600080fd5b506102ac610644366004612780565b610f96565b34801561065557600080fd5b5061035c61066436600461269c565b610fe5565b34801561067557600080fd5b5061035c61068436600461269c565b611030565b34801561069557600080fd5b506102ac6106a4366004612780565b61107e565b3480156106b557600080fd5b5061035c6106c436600461274c565b61108b565b3480156106d557600080fd5b5061035c6106e43660046127ab565b6110e0565b3480156106f557600080fd5b506102ac61070436600461269c565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561072e57600080fd5b506102cd61073d3660046126d4565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561077457600080fd5b5061035c61078336600461287e565b61116e565b34801561079457600080fd5b5061035c6107a336600461269c565b6111b2565b3480156107b457600080fd5b5061035c6107c336600461269c565b61137d565b3480156107d457600080fd5b5061035c611415565b3480156107e957600080fd5b50476102cd565b3480156107fc57600080fd5b5061035c61080b36600461269c565b611449565b6060600a805461081f90612ab3565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90612ab3565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b60006108af338484611634565b5060015b92915050565b6000546001600160a01b031633146108ec5760405162461bcd60e51b81526004016108e390612946565b60405180910390fd5b69152d02c7e14af68000008110156109635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016108e3565b601555565b6000546001600160a01b031633146109925760405162461bcd60e51b81526004016108e390612946565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006109c1848484611758565b610a138433610a0e85604051806060016040528060288152602001612b4b602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611af7565b611634565b5060019392505050565b6000546001600160a01b03163314610a475760405162461bcd60e51b81526004016108e390612946565b6005811115610a985760405162461bcd60e51b815260206004820152601a60248201527f7465616d4665652073686f756c6420626520696e2030202d203500000000000060448201526064016108e3565b600e55565b6000600854821115610b045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108e3565b6000610b0e611b23565b9050610b1a8382611b46565b9392505050565b6000546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016108e390612946565b60018160ff1610158015610b63575060038160ff1611155b610baf5760405162461bcd60e51b815260206004820152601d60248201527f6d756c7469706c6965722073686f756c6420626520696e2031202d203300000060448201526064016108e3565b6014805460ff909216620100000262ff000019909216919091179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108af918590610a0e9086611b52565b3360008181526005602052604090205460ff1615610c785760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108e3565b6000610c85836000611b5e565b505050506001600160a01b038416600090815260016020526040902054919250610cb191905082611bbd565b6001600160a01b038316600090815260016020526040902055600854610cd79082611bbd565b600855600954610ce79084611b52565b600955505050565b6000600754831115610d435760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108e3565b81610d64576000610d55846000611b5e565b509395506108b3945050505050565b6000610d71846000611b5e565b509295506108b3945050505050565b6000546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108e390612946565b6000610db530610e43565b9050610dc081611bc9565b50565b6000546001600160a01b03163314610ded5760405162461bcd60e51b81526004016108e390612946565b6005811115610e3e5760405162461bcd60e51b815260206004820152601960248201527f7461784665652073686f756c6420626520696e2030202d20350000000000000060448201526064016108e3565b600d55565b6001600160a01b03811660009081526005602052604081205460ff1615610e8057506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108b390610a9d565b6000546001600160a01b03163314610ecc5760405162461bcd60e51b81526004016108e390612946565b610ed66000611dcb565b565b6000546001600160a01b03163314610f025760405162461bcd60e51b81526004016108e390612946565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600b805461081f90612ab3565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610f7757506001919050565b506001600160a01b031660009081526013602052604090205460ff1690565b60006108af3384610a0e85604051806060016040528060258152602001612b73602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611af7565b6000546001600160a01b0316331461100f5760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b0316331461105a5760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b60006108af338484611758565b6000546001600160a01b031633146110b55760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461110a5760405162461bcd60e51b81526004016108e390612946565b60005b815181101561116a57600082828151811061113857634e487b7160e01b600052603260045260246000fd5b6020026020010151905061115533826000015183602001516109b4565b5050808061116290612aee565b91505061110d565b5050565b6000546001600160a01b031633146111985760405162461bcd60e51b81526004016108e390612946565b601480549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146111dc5760405162461bcd60e51b81526004016108e390612946565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112545760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016108e3565b6001600160a01b03811660009081526005602052604090205460ff16156112bd5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108e3565b6001600160a01b03811660009081526001602052604090205415611317576001600160a01b0381166000908152600160205260409020546112fd90610a9d565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b031633146113a75760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b610dc081611dcb565b6000546001600160a01b0316331461143f5760405162461bcd60e51b81526004016108e390612946565b47610dc081611e1b565b6000546001600160a01b031633146114735760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03811660009081526005602052604090205460ff166114db5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108e3565b60005b60065481101561116a57816001600160a01b03166006828154811061151357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611622576006805461153e90600190612a9c565b8154811061155c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b03909216918390811061159657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff1916905560068054806115fc57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061162c81612aee565b9150506114de565b6001600160a01b0383166116965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e3565b6001600160a01b0382166116f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108e3565b6001600160a01b03821661181e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108e3565b600081116118805760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108e3565b6000546001600160a01b038481169116148015906118ac57506000546001600160a01b03838116911614155b15611914576015548111156119145760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016108e3565b600061191f30610e43565b9050601554811061192f57506015545b601654601454908210159060ff161580156119515750601454610100900460ff165b801561195a5750805b80156119b957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614806119b957506001600160a01b03841660009081526013602052604090205460ff165b156119d9576119c782611bc9565b4780156119d7576119d747611e1b565b505b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480611a4c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b80611a6f57506001600160a01b03851660009081526013602052604090205460ff165b80611a9257506001600160a01b03861660009081526013602052604090205460ff165b8015611ada57506001600160a01b03861660009081526004602052604090205460ff1680611ad857506001600160a01b03851660009081526004602052604090205460ff165b155b15611ae3575060015b611aef86868684611ed5565b505050505050565b60008184841115611b1b5760405162461bcd60e51b81526004016108e391906128f3565b505050900390565b6000806000611b30611ffa565b9092509050611b3f8282611b46565b9250505090565b6000610b1a8284612a5d565b6000610b1a8284612a45565b6000806000806000806000806000611b7c8b600d54600e548d6121b4565b9250925092506000611b8c611b23565b90506000806000611b9f8f878787612259565b919e509c509a50959850939650919450505050509295509295509295565b6000610b1a8284612a9c565b6014805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611c1957634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9257600080fd5b505afa158015611ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cca91906126b8565b81600181518110611ceb57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050611d36307f000000000000000000000000000000000000000000000000000000000000000084611634565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d8b90859060009086903090429060040161297b565b600060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b50506014805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b0316611e32826002611b46565b604051600081818185875af1925050503d8060008114611e6e576040519150601f19603f3d011682016040523d82523d6000602084013e611e73565b606091505b50506012546001600160a01b03169050611e8e826002611b46565b604051600081818185875af1925050503d8060008114611eca576040519150601f19603f3d011682016040523d82523d6000602084013e611ecf565b606091505b50505050565b80611ee257611ee26122a9565b6001600160a01b03841660009081526005602052604090205460ff168015611f2357506001600160a01b03831660009081526005602052604090205460ff16155b15611f3857611f338484846122d7565b611fe4565b6001600160a01b03841660009081526005602052604090205460ff16158015611f7957506001600160a01b03831660009081526005602052604090205460ff165b15611f8957611f33848484612406565b6001600160a01b03841660009081526005602052604090205460ff168015611fc957506001600160a01b03831660009081526005602052604090205460ff165b15611fd957611f338484846124b3565b611fe484848461252a565b80611ecf57611ecf600f54600d55601054600e55565b6008546007546000918291825b6006548110156121845782600160006006848154811061203757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120b0575081600260006006848154811061208957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120c657600854600754945094505050509091565b61211a60016000600684815481106120ee57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bbd565b9250612170600260006006848154811061214457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bbd565b91508061217c81612aee565b915050612007565b5060075460085461219491611b46565b8210156121ab576008546007549350935050509091565b90939092509050565b600080600080846121c557866121dc565b6014546121dc90889062010000900460ff16612572565b90506000856121eb5786612202565b60145461220290889062010000900460ff16612572565b9050600061221b60646122158c86612572565b90611b46565b9050600061222e60646122158d86612572565b90506000612246826122408e86611bbd565b90611bbd565b9c929b5090995090975050505050505050565b60008080806122688886612572565b905060006122768887612572565b905060006122848888612572565b90506000612296826122408686611bbd565b939b939a50919850919650505050505050565b600d541580156122b95750600e54155b156122c057565b600d8054600f55600e805460105560009182905555565b6000806000806000806122f2876122ed8a61257e565b611b5e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506123249088611bbd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546123539087611bbd565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546123829086611b52565b6001600160a01b0389166000908152600160205260409020556123a4816125da565b6123ae8483612663565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516123f391815260200190565b60405180910390a3505050505050505050565b60008060008060008061241c876122ed8a61257e565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061244e9087611bbd565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546124849084611b52565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546123829086611b52565b6000806000806000806124c9876122ed8a61257e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506124fb9088611bbd565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461244e9087611bbd565b600080600080600080612540876122ed8a61257e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506123539087611bbd565b6000610b1a8284612a7d565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614806108b35750506001600160a01b031660009081526013602052604090205460ff1690565b60006125e4611b23565b905060006125f28383612572565b3060009081526001602052604090205490915061260f9082611b52565b3060009081526001602090815260408083209390935560059052205460ff161561265e573060009081526002602052604090205461264d9084611b52565b306000908152600260205260409020555b505050565b6008546126709083611bbd565b6008556009546126809082611b52565b6009555050565b8035801515811461269757600080fd5b919050565b6000602082840312156126ad578081fd5b8135610b1a81612b35565b6000602082840312156126c9578081fd5b8151610b1a81612b35565b600080604083850312156126e6578081fd5b82356126f181612b35565b9150602083013561270181612b35565b809150509250929050565b600080600060608486031215612720578081fd5b833561272b81612b35565b9250602084013561273b81612b35565b929592945050506040919091013590565b6000806040838503121561275e578182fd5b823561276981612b35565b915061277760208401612687565b90509250929050565b60008060408385031215612792578182fd5b823561279d81612b35565b946020939093013593505050565b600060208083850312156127bd578182fd5b823567ffffffffffffffff808211156127d4578384fd5b818501915085601f8301126127e7578384fd5b8135818111156127f9576127f9612b1f565b612807848260051b01612a14565b8181528481019250838501600683901b85018601891015612826578687fd5b8694505b8285101561287257604080828b031215612842578788fd5b61284a6129eb565b823561285581612b35565b81528288013588820152855260019590950194938601930161282a565b50979650505050505050565b60006020828403121561288f578081fd5b610b1a82612687565b6000602082840312156128a9578081fd5b5035919050565b600080604083850312156128c2578182fd5b8235915061277760208401612687565b6000602082840312156128e3578081fd5b813560ff81168114610b1a578182fd5b6000602080835283518082850152825b8181101561291f57858101830151858201604001528201612903565b818111156129305783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156129ca5784516001600160a01b0316835293830193918301916001016129a5565b50506001600160a01b03969096166060850152505050608001529392505050565b6040805190810167ffffffffffffffff81118282101715612a0e57612a0e612b1f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3d57612a3d612b1f565b604052919050565b60008219821115612a5857612a58612b09565b500190565b600082612a7857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612a9757612a97612b09565b500290565b600082821015612aae57612aae612b09565b500390565b600181811c90821680612ac757607f821691505b60208210811415612ae857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0257612b02612b09565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dc057600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c28dbc312c7da9ab2411f2cdae3ecb336caee67a08fc36469d42e39be3c4e60064736f6c634300080400330000000000000000000000005e407ac89c87c9543a5aeac9fcb4c9e7c6cf4a16000000000000000000000000bf04833f3c72996dcd026379a8e318ba0b16c5aa

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636ddd171311610139578063a9059cbb116100b6578063e01af92c1161007a578063e01af92c14610768578063f2cc0c1814610788578063f2fde38b146107a8578063f4293890146107c8578063f815a842146107dd578063f84354f1146107f057600080fd5b8063a9059cbb14610689578063af9549e0146106a9578063bee22593146106c9578063cba0e996146106e9578063dd62ed3e1461072257600080fd5b806395d89b41116100fd57806395d89b41146105f45780639cece12e14610609578063a457c2d714610629578063a6931ed714610649578063a7f404e21461066957600080fd5b80636ddd17131461056257806370a0823114610581578063715018a6146105a15780638da5cb5b146105b65780638f9cdac5146105d457600080fd5b8063303adcd8116101d25780634549b039116101965780634549b0391461048057806349bd5a5e146104a05780634c0aee5e146104d457806351bc3c85146104f45780635342acb4146105095780635880b8731461054257600080fd5b8063303adcd8146103de578063313ce567146103fe57806339509351146104205780633bd5d173146104405780634144d9e41461046057600080fd5b80631bbae6e0116102195780631bbae6e01461033c5780631ff53b601461035e57806323b872dd1461037e578063286671621461039e5780632d838119146103be57600080fd5b806306fdde0314610261578063095ea7b31461028c57806313114a9d146102bc5780631694505e146102db57806318160ddd1461032757600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610810565b60405161028391906128f3565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612780565b6108a2565b6040519015158152602001610283565b3480156102c857600080fd5b506009545b604051908152602001610283565b3480156102e757600080fd5b5061030f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561033357600080fd5b506007546102cd565b34801561034857600080fd5b5061035c610357366004612898565b6108b9565b005b34801561036a57600080fd5b5061035c61037936600461269c565b610968565b34801561038a57600080fd5b506102ac61039936600461270c565b6109b4565b3480156103aa57600080fd5b5061035c6103b9366004612898565b610a1d565b3480156103ca57600080fd5b506102cd6103d9366004612898565b610a9d565b3480156103ea57600080fd5b5061035c6103f93660046128d2565b610b21565b34801561040a57600080fd5b50600c5460405160ff9091168152602001610283565b34801561042c57600080fd5b506102ac61043b366004612780565b610bcd565b34801561044c57600080fd5b5061035c61045b366004612898565b610c03565b34801561046c57600080fd5b5060125461030f906001600160a01b031681565b34801561048c57600080fd5b506102cd61049b3660046128b0565b610cef565b3480156104ac57600080fd5b5061030f7f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a81565b3480156104e057600080fd5b5060115461030f906001600160a01b031681565b34801561050057600080fd5b5061035c610d80565b34801561051557600080fd5b506102ac61052436600461269c565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561054e57600080fd5b5061035c61055d366004612898565b610dc3565b34801561056e57600080fd5b506014546102ac90610100900460ff1681565b34801561058d57600080fd5b506102cd61059c36600461269c565b610e43565b3480156105ad57600080fd5b5061035c610ea2565b3480156105c257600080fd5b506000546001600160a01b031661030f565b3480156105e057600080fd5b5061035c6105ef36600461269c565b610ed8565b34801561060057600080fd5b50610276610f24565b34801561061557600080fd5b506102ac61062436600461269c565b610f33565b34801561063557600080fd5b506102ac610644366004612780565b610f96565b34801561065557600080fd5b5061035c61066436600461269c565b610fe5565b34801561067557600080fd5b5061035c61068436600461269c565b611030565b34801561069557600080fd5b506102ac6106a4366004612780565b61107e565b3480156106b557600080fd5b5061035c6106c436600461274c565b61108b565b3480156106d557600080fd5b5061035c6106e43660046127ab565b6110e0565b3480156106f557600080fd5b506102ac61070436600461269c565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561072e57600080fd5b506102cd61073d3660046126d4565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561077457600080fd5b5061035c61078336600461287e565b61116e565b34801561079457600080fd5b5061035c6107a336600461269c565b6111b2565b3480156107b457600080fd5b5061035c6107c336600461269c565b61137d565b3480156107d457600080fd5b5061035c611415565b3480156107e957600080fd5b50476102cd565b3480156107fc57600080fd5b5061035c61080b36600461269c565b611449565b6060600a805461081f90612ab3565b80601f016020809104026020016040519081016040528092919081815260200182805461084b90612ab3565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b60006108af338484611634565b5060015b92915050565b6000546001600160a01b031633146108ec5760405162461bcd60e51b81526004016108e390612946565b60405180910390fd5b69152d02c7e14af68000008110156109635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016108e3565b601555565b6000546001600160a01b031633146109925760405162461bcd60e51b81526004016108e390612946565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b60006109c1848484611758565b610a138433610a0e85604051806060016040528060288152602001612b4b602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611af7565b611634565b5060019392505050565b6000546001600160a01b03163314610a475760405162461bcd60e51b81526004016108e390612946565b6005811115610a985760405162461bcd60e51b815260206004820152601a60248201527f7465616d4665652073686f756c6420626520696e2030202d203500000000000060448201526064016108e3565b600e55565b6000600854821115610b045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108e3565b6000610b0e611b23565b9050610b1a8382611b46565b9392505050565b6000546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016108e390612946565b60018160ff1610158015610b63575060038160ff1611155b610baf5760405162461bcd60e51b815260206004820152601d60248201527f6d756c7469706c6965722073686f756c6420626520696e2031202d203300000060448201526064016108e3565b6014805460ff909216620100000262ff000019909216919091179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108af918590610a0e9086611b52565b3360008181526005602052604090205460ff1615610c785760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108e3565b6000610c85836000611b5e565b505050506001600160a01b038416600090815260016020526040902054919250610cb191905082611bbd565b6001600160a01b038316600090815260016020526040902055600854610cd79082611bbd565b600855600954610ce79084611b52565b600955505050565b6000600754831115610d435760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108e3565b81610d64576000610d55846000611b5e565b509395506108b3945050505050565b6000610d71846000611b5e565b509295506108b3945050505050565b6000546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108e390612946565b6000610db530610e43565b9050610dc081611bc9565b50565b6000546001600160a01b03163314610ded5760405162461bcd60e51b81526004016108e390612946565b6005811115610e3e5760405162461bcd60e51b815260206004820152601960248201527f7461784665652073686f756c6420626520696e2030202d20350000000000000060448201526064016108e3565b600d55565b6001600160a01b03811660009081526005602052604081205460ff1615610e8057506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108b390610a9d565b6000546001600160a01b03163314610ecc5760405162461bcd60e51b81526004016108e390612946565b610ed66000611dcb565b565b6000546001600160a01b03163314610f025760405162461bcd60e51b81526004016108e390612946565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6060600b805461081f90612ab3565b60007f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a6001600160a01b0316826001600160a01b03161415610f7757506001919050565b506001600160a01b031660009081526013602052604090205460ff1690565b60006108af3384610a0e85604051806060016040528060258152602001612b73602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611af7565b6000546001600160a01b0316331461100f5760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b0316331461105a5760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b60006108af338484611758565b6000546001600160a01b031633146110b55760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461110a5760405162461bcd60e51b81526004016108e390612946565b60005b815181101561116a57600082828151811061113857634e487b7160e01b600052603260045260246000fd5b6020026020010151905061115533826000015183602001516109b4565b5050808061116290612aee565b91505061110d565b5050565b6000546001600160a01b031633146111985760405162461bcd60e51b81526004016108e390612946565b601480549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146111dc5760405162461bcd60e51b81526004016108e390612946565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112545760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016108e3565b6001600160a01b03811660009081526005602052604090205460ff16156112bd5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108e3565b6001600160a01b03811660009081526001602052604090205415611317576001600160a01b0381166000908152600160205260409020546112fd90610a9d565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b031633146113a75760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e3565b610dc081611dcb565b6000546001600160a01b0316331461143f5760405162461bcd60e51b81526004016108e390612946565b47610dc081611e1b565b6000546001600160a01b031633146114735760405162461bcd60e51b81526004016108e390612946565b6001600160a01b03811660009081526005602052604090205460ff166114db5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108e3565b60005b60065481101561116a57816001600160a01b03166006828154811061151357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611622576006805461153e90600190612a9c565b8154811061155c57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b03909216918390811061159657634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff1916905560068054806115fc57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061162c81612aee565b9150506114de565b6001600160a01b0383166116965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e3565b6001600160a01b0382166116f75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108e3565b6001600160a01b03821661181e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108e3565b600081116118805760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108e3565b6000546001600160a01b038481169116148015906118ac57506000546001600160a01b03838116911614155b15611914576015548111156119145760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016108e3565b600061191f30610e43565b9050601554811061192f57506015545b601654601454908210159060ff161580156119515750601454610100900460ff165b801561195a5750805b80156119b957507f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a6001600160a01b0316846001600160a01b031614806119b957506001600160a01b03841660009081526013602052604090205460ff165b156119d9576119c782611bc9565b4780156119d7576119d747611e1b565b505b60007f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a6001600160a01b0316866001600160a01b03161480611a4c57507f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a6001600160a01b0316856001600160a01b0316145b80611a6f57506001600160a01b03851660009081526013602052604090205460ff165b80611a9257506001600160a01b03861660009081526013602052604090205460ff165b8015611ada57506001600160a01b03861660009081526004602052604090205460ff1680611ad857506001600160a01b03851660009081526004602052604090205460ff165b155b15611ae3575060015b611aef86868684611ed5565b505050505050565b60008184841115611b1b5760405162461bcd60e51b81526004016108e391906128f3565b505050900390565b6000806000611b30611ffa565b9092509050611b3f8282611b46565b9250505090565b6000610b1a8284612a5d565b6000610b1a8284612a45565b6000806000806000806000806000611b7c8b600d54600e548d6121b4565b9250925092506000611b8c611b23565b90506000806000611b9f8f878787612259565b919e509c509a50959850939650919450505050509295509295509295565b6000610b1a8284612a9c565b6014805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611c1957634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9257600080fd5b505afa158015611ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cca91906126b8565b81600181518110611ceb57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050611d36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611634565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d8b90859060009086903090429060040161297b565b600060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b50506014805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b0316611e32826002611b46565b604051600081818185875af1925050503d8060008114611e6e576040519150601f19603f3d011682016040523d82523d6000602084013e611e73565b606091505b50506012546001600160a01b03169050611e8e826002611b46565b604051600081818185875af1925050503d8060008114611eca576040519150601f19603f3d011682016040523d82523d6000602084013e611ecf565b606091505b50505050565b80611ee257611ee26122a9565b6001600160a01b03841660009081526005602052604090205460ff168015611f2357506001600160a01b03831660009081526005602052604090205460ff16155b15611f3857611f338484846122d7565b611fe4565b6001600160a01b03841660009081526005602052604090205460ff16158015611f7957506001600160a01b03831660009081526005602052604090205460ff165b15611f8957611f33848484612406565b6001600160a01b03841660009081526005602052604090205460ff168015611fc957506001600160a01b03831660009081526005602052604090205460ff165b15611fd957611f338484846124b3565b611fe484848461252a565b80611ecf57611ecf600f54600d55601054600e55565b6008546007546000918291825b6006548110156121845782600160006006848154811061203757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120b0575081600260006006848154811061208957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120c657600854600754945094505050509091565b61211a60016000600684815481106120ee57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bbd565b9250612170600260006006848154811061214457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bbd565b91508061217c81612aee565b915050612007565b5060075460085461219491611b46565b8210156121ab576008546007549350935050509091565b90939092509050565b600080600080846121c557866121dc565b6014546121dc90889062010000900460ff16612572565b90506000856121eb5786612202565b60145461220290889062010000900460ff16612572565b9050600061221b60646122158c86612572565b90611b46565b9050600061222e60646122158d86612572565b90506000612246826122408e86611bbd565b90611bbd565b9c929b5090995090975050505050505050565b60008080806122688886612572565b905060006122768887612572565b905060006122848888612572565b90506000612296826122408686611bbd565b939b939a50919850919650505050505050565b600d541580156122b95750600e54155b156122c057565b600d8054600f55600e805460105560009182905555565b6000806000806000806122f2876122ed8a61257e565b611b5e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506123249088611bbd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546123539087611bbd565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546123829086611b52565b6001600160a01b0389166000908152600160205260409020556123a4816125da565b6123ae8483612663565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516123f391815260200190565b60405180910390a3505050505050505050565b60008060008060008061241c876122ed8a61257e565b6001600160a01b038f16600090815260016020526040902054959b5093995091975095509350915061244e9087611bbd565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546124849084611b52565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546123829086611b52565b6000806000806000806124c9876122ed8a61257e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506124fb9088611bbd565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461244e9087611bbd565b600080600080600080612540876122ed8a61257e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506123539087611bbd565b6000610b1a8284612a7d565b60007f000000000000000000000000c666ffc3856fba60185b12e7d766fec6d3590f2a6001600160a01b0316826001600160a01b031614806108b35750506001600160a01b031660009081526013602052604090205460ff1690565b60006125e4611b23565b905060006125f28383612572565b3060009081526001602052604090205490915061260f9082611b52565b3060009081526001602090815260408083209390935560059052205460ff161561265e573060009081526002602052604090205461264d9084611b52565b306000908152600260205260409020555b505050565b6008546126709083611bbd565b6008556009546126809082611b52565b6009555050565b8035801515811461269757600080fd5b919050565b6000602082840312156126ad578081fd5b8135610b1a81612b35565b6000602082840312156126c9578081fd5b8151610b1a81612b35565b600080604083850312156126e6578081fd5b82356126f181612b35565b9150602083013561270181612b35565b809150509250929050565b600080600060608486031215612720578081fd5b833561272b81612b35565b9250602084013561273b81612b35565b929592945050506040919091013590565b6000806040838503121561275e578182fd5b823561276981612b35565b915061277760208401612687565b90509250929050565b60008060408385031215612792578182fd5b823561279d81612b35565b946020939093013593505050565b600060208083850312156127bd578182fd5b823567ffffffffffffffff808211156127d4578384fd5b818501915085601f8301126127e7578384fd5b8135818111156127f9576127f9612b1f565b612807848260051b01612a14565b8181528481019250838501600683901b85018601891015612826578687fd5b8694505b8285101561287257604080828b031215612842578788fd5b61284a6129eb565b823561285581612b35565b81528288013588820152855260019590950194938601930161282a565b50979650505050505050565b60006020828403121561288f578081fd5b610b1a82612687565b6000602082840312156128a9578081fd5b5035919050565b600080604083850312156128c2578182fd5b8235915061277760208401612687565b6000602082840312156128e3578081fd5b813560ff81168114610b1a578182fd5b6000602080835283518082850152825b8181101561291f57858101830151858201604001528201612903565b818111156129305783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156129ca5784516001600160a01b0316835293830193918301916001016129a5565b50506001600160a01b03969096166060850152505050608001529392505050565b6040805190810167ffffffffffffffff81118282101715612a0e57612a0e612b1f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3d57612a3d612b1f565b604052919050565b60008219821115612a5857612a58612b09565b500190565b600082612a7857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612a9757612a97612b09565b500290565b600082821015612aae57612aae612b09565b500390565b600181811c90821680612ac757607f821691505b60208210811415612ae857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b0257612b02612b09565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dc057600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c28dbc312c7da9ab2411f2cdae3ecb336caee67a08fc36469d42e39be3c4e60064736f6c63430008040033

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

0000000000000000000000005e407ac89c87c9543a5aeac9fcb4c9e7c6cf4a16000000000000000000000000bf04833f3c72996dcd026379a8e318ba0b16c5aa

-----Decoded View---------------
Arg [0] : MagickWalletAddress (address): 0x5E407ac89c87C9543A5AeAC9fCB4C9e7C6cF4A16
Arg [1] : marketingWalletAddress (address): 0xbF04833F3c72996DCD026379a8E318Ba0b16c5AA

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e407ac89c87c9543a5aeac9fcb4c9e7c6cf4a16
Arg [1] : 000000000000000000000000bf04833f3c72996dcd026379a8e318ba0b16c5aa


Deployed Bytecode Sourcemap

29306:18999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31887:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32776:169;;;;;;;;;;-1:-1:-1;32776:169:0;;;;;:::i;:::-;;:::i;:::-;;;5613:14:1;;5606:22;5588:41;;5576:2;5561:18;32776:169:0;5543:92:1;34187:81:0;;;;;;;;;;-1:-1:-1;34252:10:0;;34187:81;;;13265:25:1;;;13253:2;13238:18;34187:81:0;13220:76:1;30293:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5180:32:1;;;5162:51;;5150:2;5135:18;30293:51:0;5117:102:1;32140:89:0;;;;;;;;;;-1:-1:-1;32216:7:0;;32140:89;;47436:229;;;;;;;;;;-1:-1:-1;47436:229:0;;;;;:::i;:::-;;:::i;:::-;;47268:162;;;;;;;;;;-1:-1:-1;47268:162:0;;;;;:::i;:::-;;:::i;32951:374::-;;;;;;;;;;-1:-1:-1;32951:374:0;;;;;:::i;:::-;;:::i;46796:146::-;;;;;;;;;;-1:-1:-1;46796:146:0;;;;;:::i;:::-;;:::i;35107:239::-;;;;;;;;;;-1:-1:-1;35107:239:0;;;;;:::i;:::-;;:::i;46948:171::-;;;;;;;;;;-1:-1:-1;46948:171:0;;;;;:::i;:::-;;:::i;32057:77::-;;;;;;;;;;-1:-1:-1;32119:9:0;;32057:77;;32119:9;;;;14431:36:1;;14419:2;14404:18;32057:77:0;14386:87:1;33331:254:0;;;;;;;;;;-1:-1:-1;33331:254:0;;;;;:::i;:::-;;:::i;34274:384::-;;;;;;;;;;-1:-1:-1;34274:384:0;;;;;:::i;:::-;;:::i;30240:46::-;;;;;;;;;;-1:-1:-1;30240:46:0;;;;-1:-1:-1;;;;;30240:46:0;;;34664:437;;;;;;;;;;-1:-1:-1;34664:437:0;;;;;:::i;:::-;;:::i;30349:38::-;;;;;;;;;;;;;;;30192:43;;;;;;;;;;-1:-1:-1;30192:43:0;;;;-1:-1:-1;;;;;30192:43:0;;;39786:144;;;;;;;;;;;;;:::i;36515:118::-;;;;;;;;;;-1:-1:-1;36515:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;36600:27:0;36580:4;36600:27;;;:18;:27;;;;;;;;;36515:118;46650:140;;;;;;;;;;-1:-1:-1;46650:140:0;;;;;:::i;:::-;;:::i;30470:30::-;;;;;;;;;;-1:-1:-1;30470:30:0;;;;;;;;;;;32235:188;;;;;;;;;;-1:-1:-1;32235:188:0;;;;;:::i;:::-;;:::i;12778:94::-;;;;;;;;;;;;;:::i;12127:87::-;;;;;;;;;;-1:-1:-1;12173:7:0;12200:6;-1:-1:-1;;;;;12200:6:0;12127:87;;47125:137;;;;;;;;;;-1:-1:-1;47125:137:0;;;;;:::i;:::-;;:::i;31970:81::-;;;;;;;;;;;;;:::i;47671:154::-;;;;;;;;;;-1:-1:-1;47671:154:0;;;;;:::i;:::-;;:::i;33591:332::-;;;;;;;;;;-1:-1:-1;33591:332:0;;;;;:::i;:::-;;:::i;47936:103::-;;;;;;;;;;-1:-1:-1;47936:103:0;;;;;:::i;:::-;;:::i;47831:99::-;;;;;;;;;;-1:-1:-1;47831:99:0;;;;;:::i;:::-;;:::i;32429:175::-;;;;;;;;;;-1:-1:-1;32429:175:0;;;;;:::i;:::-;;:::i;34039:142::-;;;;;;;;;;-1:-1:-1;34039:142:0;;;;;:::i;:::-;;:::i;48045:257::-;;;;;;;;;;-1:-1:-1;48045:257:0;;;;;:::i;:::-;;:::i;33929:104::-;;;;;;;;;;-1:-1:-1;33929:104:0;;;;;:::i;:::-;-1:-1:-1;;;;;34007:20:0;33987:4;34007:20;;;:11;:20;;;;;;;;;33929:104;32610:160;;;;;;;;;;-1:-1:-1;32610:160:0;;;;;:::i;:::-;-1:-1:-1;;;;;32737:18:0;;;32711:7;32737:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32610:160;40086:91;;;;;;;;;;-1:-1:-1;40086:91:0;;;;;:::i;:::-;;:::i;35352:431::-;;;;;;;;;;-1:-1:-1;35352:431:0;;;;;:::i;:::-;;:::i;13027:192::-;;;;;;;;;;-1:-1:-1;13027:192:0;;;;;:::i;:::-;;:::i;39936:144::-;;;;;;;;;;;;;:::i;46539:105::-;;;;;;;;;;-1:-1:-1;46617:21:0;46539:105;;35789:410;;;;;;;;;;-1:-1:-1;35789:410:0;;;;;:::i;:::-;;:::i;31887:77::-;31924:13;31953:5;31946:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31887:77;:::o;32776:169::-;32866:4;32882:39;11083:10;32905:7;32914:6;32882:8;:39::i;:::-;-1:-1:-1;32935:4:0;32776:169;;;;;:::o;47436:229::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;;;;;;;;;47539:17:::1;47524:11;:32;;47508:118;;;::::0;-1:-1:-1;;;47508:118:0;;9375:2:1;47508:118:0::1;::::0;::::1;9357:21:1::0;9414:2;9394:18;;;9387:30;9453:34;9433:18;;;9426:62;-1:-1:-1;;;9504:18:1;;;9497:50;9564:19;;47508:118:0::1;9347:242:1::0;47508:118:0::1;47633:12;:26:::0;47436:229::o;47268:162::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;47376:23:::1;:48:::0;;-1:-1:-1;;;;;;47376:48:0::1;-1:-1:-1::0;;;;;47376:48:0;;;::::1;::::0;;;::::1;::::0;;47268:162::o;32951:374::-;33069:4;33082:36;33092:6;33100:9;33111:6;33082:9;:36::i;:::-;33125:176;33142:6;11083:10;33178:116;33226:6;33178:116;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33178:19:0;;;;;;:11;:19;;;;;;;;11083:10;33178:33;;;;;;;;;;:37;:116::i;:::-;33125:8;:176::i;:::-;-1:-1:-1;33315:4:0;32951:374;;;;;:::o;46796:146::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;46879:1:::1;46868:7;:12;;46860:51;;;::::0;-1:-1:-1;;;46860:51:0;;7443:2:1;46860:51:0::1;::::0;::::1;7425:21:1::0;7482:2;7462:18;;;7455:30;7521:28;7501:18;;;7494:56;7567:18;;46860:51:0::1;7415:176:1::0;46860:51:0::1;46918:8;:18:::0;46796:146::o;35107:239::-;35174:7;35209;;35198;:18;;35190:73;;;;-1:-1:-1;;;35190:73:0;;7798:2:1;35190:73:0;;;7780:21:1;7837:2;7817:18;;;7810:30;7876:34;7856:18;;;7849:62;-1:-1:-1;;;7927:18:1;;;7920:40;7977:19;;35190:73:0;7770:232:1;35190:73:0;35270:19;35292:10;:8;:10::i;:::-;35270:32;-1:-1:-1;35316:24:0;:7;35270:32;35316:11;:24::i;:::-;35309:31;35107:239;-1:-1:-1;;;35107:239:0:o;46948:171::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;47033:1:::1;47025:4;:9;;;;:22;;;;;47046:1;47038:4;:9;;;;47025:22;47017:64;;;::::0;-1:-1:-1;;;47017:64:0;;9796:2:1;47017:64:0::1;::::0;::::1;9778:21:1::0;9835:2;9815:18;;;9808:30;9874:31;9854:18;;;9847:59;9923:18;;47017:64:0::1;9768:179:1::0;47017:64:0::1;47088:18;:25:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;47088:25:0;;::::1;::::0;;;::::1;::::0;;46948:171::o;33331:254::-;11083:10;33434:4;33504:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33504:34:0;;;;;;;;;;33434:4;;33450:111;;33488:7;;33504:50;;33543:10;33504:38;:50::i;34274:384::-;11083:10;34322:14;34375:19;;;:11;:19;;;;;;;;34374:20;34358:98;;;;-1:-1:-1;;;34358:98:0;;12908:2:1;34358:98:0;;;12890:21:1;12947:2;12927:18;;;12920:30;12986:34;12966:18;;;12959:62;-1:-1:-1;;;13037:18:1;;;13030:42;13089:19;;34358:98:0;12880:234:1;34358:98:0;34464:15;34493:26;34504:7;34513:5;34493:10;:26::i;:::-;-1:-1:-1;;;;;;;;;34544:15:0;;;;;;:7;:15;;;;;;34463:56;;-1:-1:-1;34544:28:0;;:15;-1:-1:-1;34463:56:0;34544:19;:28::i;:::-;-1:-1:-1;;;;;34526:15:0;;;;;;:7;:15;;;;;:46;34589:7;;:20;;34601:7;34589:11;:20::i;:::-;34579:7;:30;34629:10;;:23;;34644:7;34629:14;:23::i;:::-;34616:10;:36;-1:-1:-1;;;34274:384:0:o;34664:437::-;34770:7;34808;;34797;:18;;34789:62;;;;-1:-1:-1;;;34789:62:0;;10154:2:1;34789:62:0;;;10136:21:1;10193:2;10173:18;;;10166:30;10232:33;10212:18;;;10205:61;10283:18;;34789:62:0;10126:181:1;34789:62:0;34863:17;34858:238;;34892:15;34921:26;34932:7;34941:5;34921:10;:26::i;:::-;-1:-1:-1;34891:56:0;;-1:-1:-1;34956:14:0;;-1:-1:-1;;;;;34956:14:0;34858:238;34996:23;35031:26;35042:7;35051:5;35031:10;:26::i;:::-;-1:-1:-1;34993:64:0;;-1:-1:-1;35066:22:0;;-1:-1:-1;;;;;35066:22:0;39786:144;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;39834:23:::1;39860:24;39878:4;39860:9;:24::i;:::-;39834:50;;39891:33;39908:15;39891:16;:33::i;:::-;12418:1;39786:144::o:0;46650:140::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;46730:1:::1;46720:6;:11;;46712:49;;;::::0;-1:-1:-1;;;46712:49:0;;6685:2:1;46712:49:0::1;::::0;::::1;6667:21:1::0;6724:2;6704:18;;;6697:30;6763:27;6743:18;;;6736:55;6808:18;;46712:49:0::1;6657:175:1::0;46712:49:0::1;46768:7;:16:::0;46650:140::o;32235:188::-;-1:-1:-1;;;;;32321:20:0;;32301:7;32321:20;;;:11;:20;;;;;;;;32317:49;;;-1:-1:-1;;;;;;32350:16:0;;;;;:7;:16;;;;;;;32235:188::o;32317:49::-;-1:-1:-1;;;;;32400:16:0;;;;;;:7;:16;;;;;;32380:37;;:19;:37::i;12778:94::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;12843:21:::1;12861:1;12843:9;:21::i;:::-;12778:94::o:0;47125:137::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;47214:20:::1;:42:::0;;-1:-1:-1;;;;;;47214:42:0::1;-1:-1:-1::0;;;;;47214:42:0;;;::::1;::::0;;;::::1;::::0;;47125:137::o;31970:81::-;32009:13;32038:7;32031:14;;;;;:::i;47671:154::-;47732:4;47758:13;-1:-1:-1;;;;;47749:22:0;:5;-1:-1:-1;;;;;47749:22:0;;47745:39;;;-1:-1:-1;47780:4:0;;47671:154;-1:-1:-1;47671:154:0:o;47745:39::-;-1:-1:-1;;;;;;47798:21:0;;;;;:14;:21;;;;;;;;;47671:154::o;33591:332::-;33699:4;33715:184;11083:10;33753:7;33769:123;33818:15;33769:123;;;;;;;;;;;;;;;;;11083:10;33769:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33769:34:0;;;;;;;;;;;;:38;:123::i;47936:103::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48004:21:0::1;48028:5;48004:21:::0;;;:14:::1;:21;::::0;;;;:29;;-1:-1:-1;;48004:29:0::1;::::0;;47936:103::o;47831:99::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47896:21:0::1;;::::0;;;:14:::1;:21;::::0;;;;:28;;-1:-1:-1;;47896:28:0::1;47920:4;47896:28;::::0;;47831:99::o;32429:175::-;32522:4;32538:42;11083:10;32562:9;32573:6;32538:9;:42::i;34039:142::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34137:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;34137:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34039:142::o;48045:257::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;48130:10:::1;48125:172;48151:10;:17;48146:2;:22;48125:172;;;48185:28;48216:10;48227:2;48216:14;;;;;;-1:-1:-1::0;;;48216:14:0::1;;;;;;;;;;;;;;;48185:45;;48239:50;48252:10;48264:5;:10;;;48276:5;:12;;;48239;:50::i;:::-;;48125:172;48170:4;;;;;:::i;:::-;;;;48125:172;;;;48045:257:::0;:::o;40086:91::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;40150:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;40150:21:0;;::::1;::::0;;;::::1;::::0;;40086:91::o;35352:431::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;35446:42:::1;-1:-1:-1::0;;;;;35435:53:0;::::1;;;35419:121;;;::::0;-1:-1:-1;;;35419:121:0;;12505:2:1;35419:121:0::1;::::0;::::1;12487:21:1::0;12544:2;12524:18;;;12517:30;12583:34;12563:18;;;12556:62;-1:-1:-1;;;12634:18:1;;;12627:32;12676:19;;35419:121:0::1;12477:224:1::0;35419:121:0::1;-1:-1:-1::0;;;;;35556:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35555:21;35547:61;;;::::0;-1:-1:-1;;;35547:61:0;;9019:2:1;35547:61:0::1;::::0;::::1;9001:21:1::0;9058:2;9038:18;;;9031:30;9097:29;9077:18;;;9070:57;9144:18;;35547:61:0::1;8991:177:1::0;35547:61:0::1;-1:-1:-1::0;;;;;35619:16:0;::::1;35638:1;35619:16:::0;;;:7:::1;:16;::::0;;;;;:20;35615:99:::1;;-1:-1:-1::0;;;;;35689:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35669:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35650:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35615:99:::1;-1:-1:-1::0;;;;;35720:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35720:27:0::1;35743:4;35720:27:::0;;::::1;::::0;;;35754:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;35754:23:0::1;::::0;;::::1;::::0;;35352:431::o;13027:192::-;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13116:22:0;::::1;13108:73;;;::::0;-1:-1:-1;;;13108:73:0;;8209:2:1;13108:73:0::1;::::0;::::1;8191:21:1::0;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:36;8384:19;;13108:73:0::1;8181:228:1::0;13108:73:0::1;13192:19;13202:8;13192:9;:19::i;39936:144::-:0;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;40013:21:::1;40041:33;40013:21:::0;40041:13:::1;:33::i;35789:410::-:0;12173:7;12200:6;-1:-1:-1;;;;;12200:6:0;11083:10;12347:23;12339:68;;;;-1:-1:-1;;;12339:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35864:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35856:60;;;::::0;-1:-1:-1;;;35856:60:0;;9019:2:1;35856:60:0::1;::::0;::::1;9001:21:1::0;9058:2;9038:18;;;9031:30;9097:29;9077:18;;;9070:57;9144:18;;35856:60:0::1;8991:177:1::0;35856:60:0::1;35928:9;35923:271;35947:9;:16:::0;35943:20;::::1;35923:271;;;35999:7;-1:-1:-1::0;;;;;35983:23:0::1;:9;35993:1;35983:12;;;;;;-1:-1:-1::0;;;35983:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35983:12:0::1;:23;35979:208;;;36034:9;36044:16:::0;;:20:::1;::::0;36063:1:::1;::::0;36044:20:::1;:::i;:::-;36034:31;;;;;;-1:-1:-1::0;;;36034:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;36019:9:::1;:12:::0;;-1:-1:-1;;;;;36034:31:0;;::::1;::::0;36029:1;;36019:12;::::1;;;-1:-1:-1::0;;;36019:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;36019:46:0::1;-1:-1:-1::0;;;;;36019:46:0;;::::1;;::::0;;36076:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36107:11:::1;:20:::0;;;;:28;;-1:-1:-1;;36107:28:0::1;::::0;;36146:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;36146:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;36146:15:0;;;;;-1:-1:-1;;;;;;36146:15:0::1;::::0;;;;;48125:172:::1;48045:257:::0;:::o;35979:208::-:1;35965:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35923:271;;36639:339:::0;-1:-1:-1;;;;;36748:19:0;;36740:68;;;;-1:-1:-1;;;36740:68:0;;12100:2:1;36740:68:0;;;12082:21:1;12139:2;12119:18;;;12112:30;12178:34;12158:18;;;12151:62;-1:-1:-1;;;12229:18:1;;;12222:34;12273:19;;36740:68:0;12072:226:1;36740:68:0;-1:-1:-1;;;;;36823:21:0;;36815:68;;;;-1:-1:-1;;;36815:68:0;;8616:2:1;36815:68:0;;;8598:21:1;8655:2;8635:18;;;8628:30;8694:34;8674:18;;;8667:62;-1:-1:-1;;;8745:18:1;;;8738:32;8787:19;;36815:68:0;8588:224:1;36815:68:0;-1:-1:-1;;;;;36892:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36940:32;;13265:25:1;;;36940:32:0;;13238:18:1;36940:32:0;;;;;;;36639:339;;;:::o;36984:1933::-;-1:-1:-1;;;;;37097:20:0;;37089:70;;;;-1:-1:-1;;;37089:70:0;;11694:2:1;37089:70:0;;;11676:21:1;11733:2;11713:18;;;11706:30;11772:34;11752:18;;;11745:62;-1:-1:-1;;;11823:18:1;;;11816:35;11868:19;;37089:70:0;11666:227:1;37089:70:0;-1:-1:-1;;;;;37174:23:0;;37166:71;;;;-1:-1:-1;;;37166:71:0;;7039:2:1;37166:71:0;;;7021:21:1;7078:2;7058:18;;;7051:30;7117:34;7097:18;;;7090:62;-1:-1:-1;;;7168:18:1;;;7161:33;7211:19;;37166:71:0;7011:225:1;37166:71:0;37261:1;37252:6;:10;37244:64;;;;-1:-1:-1;;;37244:64:0;;11284:2:1;37244:64:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:34;11342:18;;;11335:62;-1:-1:-1;;;11413:18:1;;;11406:39;11462:19;;37244:64:0;11256:231:1;37244:64:0;12173:7;12200:6;-1:-1:-1;;;;;37321:17:0;;;12200:6;;37321:17;;;;:41;;-1:-1:-1;12173:7:0;12200:6;-1:-1:-1;;;;;37342:20:0;;;12200:6;;37342:20;;37321:41;37317:156;;;37399:12;;37389:6;:22;;37371:102;;;;-1:-1:-1;;;37371:102:0;;10514:2:1;37371:102:0;;;10496:21:1;10553:2;10533:18;;;10526:30;10592:34;10572:18;;;10565:62;-1:-1:-1;;;10643:18:1;;;10636:38;10691:19;;37371:102:0;10486:230:1;37371:102:0;37716:28;37747:24;37765:4;37747:9;:24::i;:::-;37716:55;;37808:12;;37784:20;:36;37780:94;;-1:-1:-1;37854:12:0;;37780:94;37940:29;;37989:6;;37909:60;;;;;37989:6;;37988:7;:29;;;;-1:-1:-1;38006:11:0;;;;;;;37988:29;:59;;;;;38028:19;37988:59;:127;;;;;38072:13;-1:-1:-1;;;;;38059:26:0;:9;-1:-1:-1;;;;;38059:26:0;;:55;;;-1:-1:-1;;;;;;38089:25:0;;;;;;:14;:25;;;;;;;;38059:55;37976:436;;;38212:38;38229:20;38212:16;:38::i;:::-;38290:21;38324:22;;38320:85;;38359:36;38373:21;38359:13;:36::i;:::-;37976:436;;38478:12;38561:13;-1:-1:-1;;;;;38551:23:0;:6;-1:-1:-1;;;;;38551:23:0;;:62;;;;38600:13;-1:-1:-1;;;;;38587:26:0;:9;-1:-1:-1;;;;;38587:26:0;;38551:62;:100;;;-1:-1:-1;;;;;;38626:25:0;;;;;;:14;:25;;;;;;;;38551:100;:135;;;-1:-1:-1;;;;;;38664:22:0;;;;;;:14;:22;;;;;;;;38551:135;38550:210;;;;-1:-1:-1;;;;;;38700:26:0;;;;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;38730:29:0;;;;;;:18;:29;;;;;;;;38700:59;38698:62;38550:210;38538:261;;;-1:-1:-1;38787:4:0;38538:261;38861:50;38876:6;38884:9;38895:6;38903:7;38861:14;:50::i;:::-;36984:1933;;;;;;:::o;8578:240::-;8698:7;8759:12;8751:6;;;;8743:29;;;;-1:-1:-1;;;8743:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8794:5:0;;;8578:240::o;45522:154::-;45564:7;45581:15;45598;45617:19;:17;:19::i;:::-;45580:56;;-1:-1:-1;45580:56:0;-1:-1:-1;45650:20:0;45580:56;;45650:11;:20::i;:::-;45643:27;;;;45522:154;:::o;7436:98::-;7494:7;7521:5;7525:1;7521;:5;:::i;6299:98::-;6357:7;6384:5;6388:1;6384;:5;:::i;43850:613::-;43948:7;43964;43980;43996;44012;44028;44054:23;44079:12;44093:13;44110:85;44130:7;44146;;44162:8;;44179:9;44110:11;:85::i;:::-;44053:142;;;;;;44202:19;44224:10;:8;:10::i;:::-;44202:32;;44242:15;44259:23;44284:12;44300:81;44320:7;44336:4;44349:5;44363:11;44300;:81::i;:::-;44241:140;;-1:-1:-1;44241:140:0;-1:-1:-1;44241:140:0;-1:-1:-1;44428:15:0;;-1:-1:-1;44445:4:0;;-1:-1:-1;44451:5:0;;-1:-1:-1;;;;;43850:613:0;;;;;;;;:::o;6680:98::-;6738:7;6765:5;6769:1;6765;:5;:::i;38923:537::-;30943:6;:13;;-1:-1:-1;;30943:13:0;30952:4;30943:13;;;39077:16:::1;::::0;;39091:1:::1;39077:16:::0;;;;;::::1;::::0;;-1:-1:-1;;39077:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39077:16:0::1;39053:40;;39118:4;39100;39105:1;39100:7;;;;;;-1:-1:-1::0;;;39100:7:0::1;;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;39100:23:0::1;;;-1:-1:-1::0;;;;;39100:23:0::1;;;::::0;::::1;39140:15;-1:-1:-1::0;;;;;39140:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39130:4;39135:1;39130:7;;;;;;-1:-1:-1::0;;;39130:7:0::1;;;;;;;;;;;;;;:32;-1:-1:-1::0;;;;;39130:32:0::1;;;-1:-1:-1::0;;;;;39130:32:0::1;;;::::0;::::1;39171:62;39188:4;39203:15;39221:11;39171:8;:62::i;:::-;39264:190;::::0;-1:-1:-1;;;39264:190:0;;-1:-1:-1;;;;;39264:15:0::1;:66;::::0;::::1;::::0;:190:::1;::::0;39339:11;;39359:1:::1;::::0;39397:4;;39418::::1;::::0;39432:15:::1;::::0;39264:190:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;30971:6:0;:14;;-1:-1:-1;;30971:14:0;;;-1:-1:-1;;;;38923:537:0:o;13227:173::-;13283:16;13302:6;;-1:-1:-1;;;;;13319:17:0;;;-1:-1:-1;;;;;;13319:17:0;;;;;;13352:40;;13302:6;;;;;;;13352:40;;13283:16;13352:40;13227:173;;:::o;39466:176::-;39520:20;;-1:-1:-1;;;;;39520:20:0;39554:13;:6;39565:1;39554:10;:13::i;:::-;39520:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39580:23:0;;-1:-1:-1;;;;;39580:23:0;;-1:-1:-1;39617:13:0;:6;39628:1;39617:10;:13::i;:::-;39580:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39466:176;:::o;40183:636::-;40317:7;40312:28;;40326:14;:12;:14::i;:::-;-1:-1:-1;;;;;40353:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40377:22:0;;;;;;:11;:22;;;;;;;;40376:23;40353:46;40349:427;;;40410:48;40432:6;40440:9;40451:6;40410:21;:48::i;:::-;40349:427;;;-1:-1:-1;;;;;40477:19:0;;;;;;:11;:19;;;;;;;;40476:20;:46;;;;-1:-1:-1;;;;;;40500:22:0;;;;;;:11;:22;;;;;;;;40476:46;40472:304;;;40533:46;40553:6;40561:9;40572:6;40533:19;:46::i;40472:304::-;-1:-1:-1;;;;;40597:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40620:22:0;;;;;;:11;:22;;;;;;;;40597:45;40593:183;;;40653:48;40675:6;40683:9;40694:6;40653:21;:48::i;40593:183::-;40724:44;40742:6;40750:9;40761:6;40724:17;:44::i;:::-;40789:7;40784:29;;40798:15;36454;;36444:7;:25;36487:16;;36476:8;:27;36404:105;45682:521;45776:7;;45808;;45733;;;;;45822:276;45846:9;:16;45842:20;;45822:276;;;45906:7;45882;:21;45890:9;45900:1;45890:12;;;;;;-1:-1:-1;;;45890:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45890:12:0;45882:21;;;;;;;;;;;;;:31;;:66;;;45941:7;45917;:21;45925:9;45935:1;45925:12;;;;;;-1:-1:-1;;;45925:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45925:12:0;45917:21;;;;;;;;;;;;;:31;45882:66;45878:106;;;45967:7;;45976;;45959:25;;;;;;;45682:521;;:::o;45878:106::-;46003:34;46015:7;:21;46023:9;46033:1;46023:12;;;;;;-1:-1:-1;;;46023:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46023:12:0;46015:21;;;;;;;;;;;;;46003:7;;:11;:34::i;:::-;45993:44;;46056:34;46068:7;:21;46076:9;46086:1;46076:12;;;;;;-1:-1:-1;;;46076:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46076:12:0;46068:21;;;;;;;;;;;;;46056:7;;:11;:34::i;:::-;46046:44;-1:-1:-1;45864:3:0;;;;:::i;:::-;;;;45822:276;;;-1:-1:-1;46130:7:0;;46118;;:20;;:11;:20::i;:::-;46108:7;:30;46104:61;;;46148:7;;46157;;46140:25;;;;;;45682:521;;:::o;46104:61::-;46180:7;;46189;;-1:-1:-1;45682:521:0;-1:-1:-1;45682:521:0:o;44469:583::-;44626:7;44642;44658;44683:16;44702:9;:51;;44747:6;44702:51;;;44725:18;;44714:30;;:6;;44725:18;;;;;44714:10;:30::i;:::-;44683:70;;44760:17;44780:9;:53;;44826:7;44780:53;;;44804:18;;44792:31;;:7;;44804:18;;;;;44792:11;:31::i;:::-;44760:73;-1:-1:-1;44842:12:0;44857:30;44883:3;44857:21;:7;44869:8;44857:11;:21::i;:::-;:25;;:30::i;:::-;44842:45;-1:-1:-1;44894:13:0;44910:31;44937:3;44910:22;:7;44922:9;44910:11;:22::i;:31::-;44894:47;-1:-1:-1;44948:23:0;44974:28;44894:47;44974:17;:7;44986:4;44974:11;:17::i;:::-;:21;;:28::i;:::-;44948:54;45034:4;;-1:-1:-1;45040:5:0;;-1:-1:-1;44469:583:0;;-1:-1:-1;;;;;;;;44469:583:0:o;45058:458::-;45216:7;;;;45291:24;:7;45303:11;45291;:24::i;:::-;45273:42;-1:-1:-1;45322:12:0;45337:21;:4;45346:11;45337:8;:21::i;:::-;45322:36;-1:-1:-1;45365:13:0;45381:22;:5;45391:11;45381:9;:22::i;:::-;45365:38;-1:-1:-1;45410:23:0;45436:28;45365:38;45436:17;:7;45448:4;45436:11;:17::i;:28::-;45479:7;;;;-1:-1:-1;45505:4:0;;-1:-1:-1;45058:458:0;;-1:-1:-1;;;;;;;45058:458:0:o;36205:193::-;36248:7;;:12;:29;;;;-1:-1:-1;36264:8:0;;:13;36248:29;36244:42;;;36205:193::o;36244:42::-;36312:7;;;36294:15;:25;36345:8;;;36326:16;:27;-1:-1:-1;36362:11:0;;;;36380:12;36205:193::o;42012:610::-;42139:15;42163:23;42195:12;42216:23;42248:12;42269:13;42292:42;42303:7;42312:21;42323:9;42312:10;:21::i;:::-;42292:10;:42::i;:::-;-1:-1:-1;;;;;42359:15:0;;;;;;:7;:15;;;;;;42130:204;;-1:-1:-1;42130:204:0;;-1:-1:-1;42130:204:0;;-1:-1:-1;42130:204:0;-1:-1:-1;42130:204:0;-1:-1:-1;42130:204:0;-1:-1:-1;42359:28:0;;42379:7;42359:19;:28::i;:::-;-1:-1:-1;;;;;42341:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42412:7;:15;;;;:28;;42432:7;42412:19;:28::i;:::-;-1:-1:-1;;;;;42394:15:0;;;;;;;:7;:15;;;;;;:46;;;;42468:18;;;;;;;:39;;42491:15;42468:22;:39::i;:::-;-1:-1:-1;;;;;42447:18:0;;;;;;:7;:18;;;;;:60;42514:16;42524:5;42514:9;:16::i;:::-;42537:23;42549:4;42555;42537:11;:23::i;:::-;42589:9;-1:-1:-1;;;;;42572:44:0;42581:6;-1:-1:-1;;;;;42572:44:0;;42600:15;42572:44;;;;13265:25:1;;13253:2;13238:18;;13220:76;42572:44:0;;;;;;;;42012:610;;;;;;;;;:::o;41384:622::-;41509:15;41533:23;41565:12;41586:23;41618:12;41639:13;41662:42;41673:7;41682:21;41693:9;41682:10;:21::i;41662:42::-;-1:-1:-1;;;;;41729:15:0;;;;;;:7;:15;;;;;;41500:204;;-1:-1:-1;41500:204:0;;-1:-1:-1;41500:204:0;;-1:-1:-1;41500:204:0;-1:-1:-1;41500:204:0;-1:-1:-1;41500:204:0;-1:-1:-1;41729:28:0;;41500:204;41729:19;:28::i;:::-;-1:-1:-1;;;;;41711:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41785:18;;;;;:7;:18;;;;;:39;;41808:15;41785:22;:39::i;:::-;-1:-1:-1;;;;;41764:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41852:7;:18;;;;:39;;41875:15;41852:22;:39::i;42628:677::-;42755:15;42779:23;42811:12;42832:23;42864:12;42885:13;42908:42;42919:7;42928:21;42939:9;42928:10;:21::i;42908:42::-;-1:-1:-1;;;;;42975:15:0;;;;;;:7;:15;;;;;;42746:204;;-1:-1:-1;42746:204:0;;-1:-1:-1;42746:204:0;;-1:-1:-1;42746:204:0;-1:-1:-1;42746:204:0;-1:-1:-1;42746:204:0;-1:-1:-1;42975:28:0;;42995:7;42975:19;:28::i;:::-;-1:-1:-1;;;;;42957:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43028:7;:15;;;;:28;;43048:7;43028:19;:28::i;40825:553::-;40948:15;40972:23;41004:12;41025:23;41057:12;41078:13;41101:42;41112:7;41121:21;41132:9;41121:10;:21::i;41101:42::-;-1:-1:-1;;;;;41168:15:0;;;;;;:7;:15;;;;;;40939:204;;-1:-1:-1;40939:204:0;;-1:-1:-1;40939:204:0;;-1:-1:-1;40939:204:0;-1:-1:-1;40939:204:0;-1:-1:-1;40939:204:0;-1:-1:-1;41168:28:0;;40939:204;41168:19;:28::i;7037:98::-;7095:7;7122:5;7126:1;7122;:5;:::i;46391:142::-;46452:4;46485:13;-1:-1:-1;;;;;46472:26:0;:9;-1:-1:-1;;;;;46472:26:0;;:55;;;-1:-1:-1;;;;;;;46502:25:0;;;;;:14;:25;;;;;;;;;46391:142::o;43311:301::-;43360:19;43382:10;:8;:10::i;:::-;43360:32;-1:-1:-1;43399:13:0;43415:22;:5;43360:32;43415:9;:22::i;:::-;43485:4;43469:22;;;;:7;:22;;;;;;43399:38;;-1:-1:-1;43469:33:0;;43399:38;43469:26;:33::i;:::-;43460:4;43444:22;;;;:7;:22;;;;;;;;:58;;;;43513:11;:26;;;;;;43509:97;;;43589:4;43573:22;;;;:7;:22;;;;;;:33;;43600:5;43573:26;:33::i;:::-;43564:4;43548:22;;;;:7;:22;;;;;:58;43509:97;43311:301;;;:::o;43618:137::-;43692:7;;:17;;43704:4;43692:11;:17::i;:::-;43682:7;:27;43729:10;;:20;;43744:4;43729:14;:20::i;:::-;43716:10;:33;-1:-1:-1;;43618:137:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;977:398::-;1045:6;1053;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1171:9;1158:23;1190:31;1215:5;1190:31;:::i;:::-;1240:5;-1:-1:-1;1297:2:1;1282:18;;1269:32;1310:33;1269:32;1310:33;:::i;:::-;1362:7;1352:17;;;1064:311;;;;;:::o;1380:466::-;1457:6;1465;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1591:9;1578:23;1610:31;1635:5;1610:31;:::i;:::-;1660:5;-1:-1:-1;1717:2:1;1702:18;;1689:32;1730:33;1689:32;1730:33;:::i;:::-;1484:362;;1782:7;;-1:-1:-1;;;1836:2:1;1821:18;;;;1808:32;;1484:362::o;1851:325::-;1916:6;1924;1977:2;1965:9;1956:7;1952:23;1948:32;1945:2;;;1998:6;1990;1983:22;1945:2;2042:9;2029:23;2061:31;2086:5;2061:31;:::i;:::-;2111:5;-1:-1:-1;2135:35:1;2166:2;2151:18;;2135:35;:::i;:::-;2125:45;;1935:241;;;;;:::o;2181:325::-;2249:6;2257;2310:2;2298:9;2289:7;2285:23;2281:32;2278:2;;;2331:6;2323;2316:22;2278:2;2375:9;2362:23;2394:31;2419:5;2394:31;:::i;:::-;2444:5;2496:2;2481:18;;;;2468:32;;-1:-1:-1;;;2268:238:1:o;2511:1343::-;2628:6;2659:2;2702;2690:9;2681:7;2677:23;2673:32;2670:2;;;2723:6;2715;2708:22;2670:2;2768:9;2755:23;2797:18;2838:2;2830:6;2827:14;2824:2;;;2859:6;2851;2844:22;2824:2;2902:6;2891:9;2887:22;2877:32;;2947:7;2940:4;2936:2;2932:13;2928:27;2918:2;;2974:6;2966;2959:22;2918:2;3015;3002:16;3037:2;3033;3030:10;3027:2;;;3043:18;;:::i;:::-;3083:36;3115:2;3110;3107:1;3103:10;3099:19;3083:36;:::i;:::-;3153:15;;;3184:12;;;;-1:-1:-1;3216:11:1;;;3258:1;3254:10;;;3246:19;;3242:28;;3239:41;-1:-1:-1;3236:2:1;;;3298:6;3290;3283:22;3236:2;3325:6;3316:15;;3340:484;3354:2;3351:1;3348:9;3340:484;;;3409:4;3452:2;3446:3;3437:7;3433:17;3429:26;3426:2;;;3473:6;3465;3458:22;3426:2;3508:22;;:::i;:::-;3571:3;3558:17;3588:33;3613:7;3588:33;:::i;:::-;3634:22;;3705:12;;;3692:26;3676:14;;;3669:50;3732:18;;3372:1;3365:9;;;;;3770:12;;;;3802;3340:484;;;-1:-1:-1;3843:5:1;2639:1215;-1:-1:-1;;;;;;;2639:1215:1:o;3859:190::-;3915:6;3968:2;3956:9;3947:7;3943:23;3939:32;3936:2;;;3989:6;3981;3974:22;3936:2;4017:26;4033:9;4017:26;:::i;4054:190::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4187:6;4179;4172:22;4134:2;-1:-1:-1;4215:23:1;;4124:120;-1:-1:-1;4124:120:1:o;4249:258::-;4314:6;4322;4375:2;4363:9;4354:7;4350:23;4346:32;4343:2;;;4396:6;4388;4381:22;4343:2;4437:9;4424:23;4414:33;;4466:35;4497:2;4486:9;4482:18;4466:35;:::i;4512:289::-;4569:6;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4643:6;4635;4628:22;4590:2;4687:9;4674:23;4737:4;4730:5;4726:16;4719:5;4716:27;4706:2;;4762:6;4754;4747:22;5875:603;5987:4;6016:2;6045;6034:9;6027:21;6077:6;6071:13;6120:6;6115:2;6104:9;6100:18;6093:34;6145:4;6158:140;6172:6;6169:1;6166:13;6158:140;;;6267:14;;;6263:23;;6257:30;6233:17;;;6252:2;6229:26;6222:66;6187:10;;6158:140;;;6316:6;6313:1;6310:13;6307:2;;;6386:4;6381:2;6372:6;6361:9;6357:22;6353:31;6346:45;6307:2;-1:-1:-1;6462:2:1;6441:15;-1:-1:-1;;6437:29:1;6422:45;;;;6469:2;6418:54;;5996:482;-1:-1:-1;;;5996:482:1:o;10721:356::-;10923:2;10905:21;;;10942:18;;;10935:30;11001:34;10996:2;10981:18;;10974:62;11068:2;11053:18;;10895:182::o;13301:983::-;13563:4;13611:3;13600:9;13596:19;13642:6;13631:9;13624:25;13668:2;13706:6;13701:2;13690:9;13686:18;13679:34;13749:3;13744:2;13733:9;13729:18;13722:31;13773:6;13808;13802:13;13839:6;13831;13824:22;13877:3;13866:9;13862:19;13855:26;;13916:2;13908:6;13904:15;13890:29;;13937:4;13950:195;13964:6;13961:1;13958:13;13950:195;;;14029:13;;-1:-1:-1;;;;;14025:39:1;14013:52;;14120:15;;;;14085:12;;;;14061:1;13979:9;13950:195;;;-1:-1:-1;;;;;;;14201:32:1;;;;14196:2;14181:18;;14174:60;-1:-1:-1;;;14265:3:1;14250:19;14243:35;14162:3;13572:712;-1:-1:-1;;;13572:712:1:o;14478:257::-;14550:4;14544:11;;;14582:17;;14629:18;14614:34;;14650:22;;;14611:62;14608:2;;;14676:18;;:::i;:::-;14712:4;14705:24;14524:211;:::o;14740:275::-;14811:2;14805:9;14876:2;14857:13;;-1:-1:-1;;14853:27:1;14841:40;;14911:18;14896:34;;14932:22;;;14893:62;14890:2;;;14958:18;;:::i;:::-;14994:2;14987:22;14785:230;;-1:-1:-1;14785:230:1:o;15020:128::-;15060:3;15091:1;15087:6;15084:1;15081:13;15078:2;;;15097:18;;:::i;:::-;-1:-1:-1;15133:9:1;;15068:80::o;15153:217::-;15193:1;15219;15209:2;;-1:-1:-1;;;15244:31:1;;15298:4;15295:1;15288:15;15326:4;15251:1;15316:15;15209:2;-1:-1:-1;15355:9:1;;15199:171::o;15375:168::-;15415:7;15481:1;15477;15473:6;15469:14;15466:1;15463:21;15458:1;15451:9;15444:17;15440:45;15437:2;;;15488:18;;:::i;:::-;-1:-1:-1;15528:9:1;;15427:116::o;15548:125::-;15588:4;15616:1;15613;15610:8;15607:2;;;15621:18;;:::i;:::-;-1:-1:-1;15658:9:1;;15597:76::o;15678:380::-;15757:1;15753:12;;;;15800;;;15821:2;;15875:4;15867:6;15863:17;15853:27;;15821:2;15928;15920:6;15917:14;15897:18;15894:38;15891:2;;;15974:10;15969:3;15965:20;15962:1;15955:31;16009:4;16006:1;15999:15;16037:4;16034:1;16027:15;15891:2;;15733:325;;;:::o;16063:135::-;16102:3;-1:-1:-1;;16123:17:1;;16120:2;;;16143:18;;:::i;:::-;-1:-1:-1;16190:1:1;16179:13;;16110:88::o;16203:127::-;16264:10;16259:3;16255:20;16252:1;16245:31;16295:4;16292:1;16285:15;16319:4;16316:1;16309:15;16335:127;16396:10;16391:3;16387:20;16384:1;16377:31;16427:4;16424:1;16417:15;16451:4;16448:1;16441:15;16467:131;-1:-1:-1;;;;;16542:31:1;;16532:42;;16522:2;;16588:1;16585;16578:12

Swarm Source

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