ERC-20
Overview
Max Total Supply
1,000,000,000,000 MODS
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
125,774,607.87 MODSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ModulusDomainService
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.9; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.8/contracts/access/Ownable.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.8/contracts/token/ERC20/ERC20.sol"; import "./Liquidity.sol"; contract ModulusDomainService is ERC20, Ownable { uint private _feesOnContract; uint private _slippage; address public cult; uint public cultAllocation; address public development; uint public developmentAllocation; address public marketing; uint public marketingAllocation; uint public buyTax = 400; uint public sellTax = 800; uint public perWalletHoldingPercent; error InvalidAddress(); error InvalidAllocation(); error InvalidPercent(); error InvalidTax(); error TransferLimitExceeded(); event AllocationsUpdated( uint cultAllocation, uint developmentAllocation, uint marketingAllocation ); event BuyTax(uint buyTax); event SellTax(uint sellTax); event Cult(address cult); event Development(address development); event Marketing(address marketing); event PerWalletHoldingPercent(uint perWalletHoldingPercent); constructor( string memory _name, string memory _symbol, uint _supply, address _cult, uint _cultAllocation, address _development, uint _developmentAllocation, address _marketing, uint _marketingAllocation, uint _perWalletHoldingPercent ) ERC20(_name, _symbol) { if ( _cult == address(0) || _development == address(0) || _marketing == address(0) ) revert InvalidAddress(); if ( _cultAllocation == 0 || _developmentAllocation == 0 || _marketingAllocation == 0 || _cultAllocation + _developmentAllocation + _marketingAllocation != Liquidity.MAX_PRECENT ) revert InvalidAllocation(); if ( _perWalletHoldingPercent == 0 || _perWalletHoldingPercent > Liquidity.MAX_PRECENT ) { revert InvalidPercent(); } _mint(msg.sender, _supply); cult = _cult; cultAllocation = _cultAllocation; marketing = _marketing; marketingAllocation = _marketingAllocation; development = _development; developmentAllocation = _developmentAllocation; _slippage = sellTax + Liquidity.MIN_PERCENT; perWalletHoldingPercent = _perWalletHoldingPercent; } function isValidTransfer(uint _amount, address _to) private view returns (bool) { uint validTokenTransfer = ((totalSupply() * perWalletHoldingPercent) / Liquidity.MAX_PRECENT) - balanceOf(_to); return _amount <= validTokenTransfer; } function _transfer( address from, address to, uint amount ) internal virtual override { address pair = Liquidity.getPair(address(this), Liquidity.DAI); if ( to != pair && to != address(this) && to != owner() && to != development && to != marketing && to != Liquidity.DEAD_ADDRESS ) if (!isValidTransfer(amount, to)) revert TransferLimitExceeded(); if ( (pair == to && from != address(this) && from != owner()) || (pair == from && to != address(this) && to != owner()) ) { uint tax = from == pair ? buyTax : sellTax; uint feeAmount = (amount * tax) / Liquidity.MAX_PRECENT; super._transfer(from, address(this), feeAmount); _feesOnContract += feeAmount; if (from != pair) { uint _totalAllocation = cultAllocation + developmentAllocation + marketingAllocation; uint _cultAllocation = (_feesOnContract * cultAllocation) / _totalAllocation; uint _developmentAllocation = (_feesOnContract * developmentAllocation) / _totalAllocation; uint _marketingAllocation = _feesOnContract - (_cultAllocation + _developmentAllocation); _buyBack(cult, Liquidity.DEAD_ADDRESS, _cultAllocation); _buyBack(Liquidity.DAI, development, _developmentAllocation); _buyBack(Liquidity.DAI, marketing, _marketingAllocation); _feesOnContract = 0; } else { if (!isValidTransfer(amount, to)) revert TransferLimitExceeded(); } return super._transfer(from, to, amount - feeAmount); } else return super._transfer(from, to, amount); } function _buyBack( address _tokenOut, address _to, uint _amountIn ) private { if (_amountIn > 0) { Liquidity.swap(address(this), _tokenOut, _amountIn, _slippage, _to); } } function updateBuyTax(uint _tax) external onlyOwner { if (_tax == 0 || _tax > Liquidity.MAX_PRECENT) revert InvalidTax(); buyTax = _tax; emit BuyTax(_tax); } function updateSellTax(uint _tax) external onlyOwner { if (_tax == 0 || _tax > Liquidity.MAX_PRECENT) revert InvalidTax(); sellTax = _tax; _slippage = _tax + Liquidity.MIN_PERCENT; emit SellTax(_tax); } function updateCult(address _token) external onlyOwner { if (_token == address(0)) revert InvalidAddress(); cult = _token; emit Cult(_token); } function updateDevelopment(address _account) external onlyOwner { if (_account == address(0)) revert InvalidAddress(); development = _account; emit Development(_account); } function updateMarketing(address _account) external onlyOwner { if (_account == address(0)) revert InvalidAddress(); marketing = _account; emit Marketing(_account); } function updateAllocations( uint _cultAllocation, uint _developmentAllocation, uint _marketingAllocation ) external onlyOwner { if ( _cultAllocation == 0 || _developmentAllocation == 0 || _marketingAllocation == 0 || _cultAllocation + _developmentAllocation + _marketingAllocation != Liquidity.MAX_PRECENT ) revert InvalidAllocation(); cultAllocation = _cultAllocation; developmentAllocation = _developmentAllocation; marketingAllocation = _marketingAllocation; emit AllocationsUpdated( cultAllocation, developmentAllocation, marketingAllocation ); } function updatePerWalletHoldingPercent(uint _perWalletHoldingPercent) external onlyOwner { if ( _perWalletHoldingPercent == 0 || _perWalletHoldingPercent > Liquidity.MAX_PRECENT ) revert InvalidPercent(); perWalletHoldingPercent = _perWalletHoldingPercent; emit PerWalletHoldingPercent(perWalletHoldingPercent); } }
// SPDX-License-Identifier: MIT pragma solidity =0.8.9; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.8/contracts/token/ERC20/IERC20.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.8/contracts/token/ERC20/ERC20.sol"; import "https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol"; import "https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router02.sol"; library Liquidity { address public constant FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; address public constant ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address public constant DAI = 0x6B175474E89094C44Da98b954EedeAC495271d0F; address public constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD; uint public constant MIN_PERCENT = 100; uint public constant MAX_PRECENT = 10000; function swap( address _tokenIn, address _tokenOut, uint _amountIn, uint _slippage, address _to ) internal returns (uint) { approveIERC20(_tokenIn, ROUTER, _amountIn); address[] memory path; if (_tokenIn == DAI || _tokenOut == DAI) { path = new address[](2); path[0] = _tokenIn; path[1] = _tokenOut; } else { path = new address[](4); path[0] = _tokenIn; path[1] = DAI; path[2] = WETH; path[3] = _tokenOut; } uint _amountOutMin = (IUniswapV2Router02(ROUTER).getAmountsOut( _amountIn, path )[path.length - 1] * (MAX_PRECENT - _slippage)) / MAX_PRECENT; uint balanceBefore = balanceOfIERC20(_tokenOut, _to); IUniswapV2Router02(ROUTER) .swapExactTokensForTokensSupportingFeeOnTransferTokens( _amountIn, _amountOutMin, path, _to, block.timestamp ); uint balanceAfter = balanceOfIERC20(_tokenOut, _to); return balanceAfter - balanceBefore; } function getPair(address _tokenA, address _tokenB) internal view returns (address) { return IUniswapV2Factory(FACTORY).getPair(_tokenA, _tokenB); } function approveIERC20( address _token, address _to, uint _amount ) internal returns (bool) { return IERC20(_token).approve(_to, _amount); } function balanceOfIERC20(address _token, address _user) internal view returns (uint) { return IERC20(_token).balanceOf(_user); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
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.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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"address","name":"_cult","type":"address"},{"internalType":"uint256","name":"_cultAllocation","type":"uint256"},{"internalType":"address","name":"_development","type":"address"},{"internalType":"uint256","name":"_developmentAllocation","type":"uint256"},{"internalType":"address","name":"_marketing","type":"address"},{"internalType":"uint256","name":"_marketingAllocation","type":"uint256"},{"internalType":"uint256","name":"_perWalletHoldingPercent","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAllocation","type":"error"},{"inputs":[],"name":"InvalidPercent","type":"error"},{"inputs":[],"name":"InvalidTax","type":"error"},{"inputs":[],"name":"TransferLimitExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cultAllocation","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"developmentAllocation","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingAllocation","type":"uint256"}],"name":"AllocationsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTax","type":"uint256"}],"name":"BuyTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"cult","type":"address"}],"name":"Cult","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"development","type":"address"}],"name":"Development","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketing","type":"address"}],"name":"Marketing","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":"uint256","name":"perWalletHoldingPercent","type":"uint256"}],"name":"PerWalletHoldingPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"SellTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cult","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cultAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perWalletHoldingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cultAllocation","type":"uint256"},{"internalType":"uint256","name":"_developmentAllocation","type":"uint256"},{"internalType":"uint256","name":"_marketingAllocation","type":"uint256"}],"name":"updateAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"updateCult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"updateDevelopment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"updateMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_perWalletHoldingPercent","type":"uint256"}],"name":"updatePerWalletHoldingPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610190600e55610320600f553480156200001d57600080fd5b5060405162003d1338038062003d13833981810160405281019062000043919062000881565b898981600390805190602001906200005d92919062000594565b5080600490805190602001906200007692919062000594565b505050620000996200008d6200034e60201b60201c565b6200035660201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480620001015750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80620001395750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000171576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000861480620001815750600084145b806200018d5750600082145b80620001b55750612710828588620001a69190620009e4565b620001b29190620009e4565b14155b15620001ed576040517f0baf743200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811480620001fe575061271081115b1562000236576040517fb92e9c7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200024833896200041c60201b60201c565b86600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560098190555082600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d8190555084600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600b819055506064600f54620003319190620009e4565b600781905550806010819055505050505050505050505062000b57565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200048f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004869062000aa2565b60405180910390fd5b620004a3600083836200058a60201b60201c565b8060026000828254620004b79190620009e4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200056a919062000ad5565b60405180910390a362000586600083836200058f60201b60201c565b5050565b505050565b505050565b828054620005a29062000b21565b90600052602060002090601f016020900481019282620005c6576000855562000612565b82601f10620005e157805160ff191683800117855562000612565b8280016001018555821562000612579182015b8281111562000611578251825591602001919060010190620005f4565b5b50905062000621919062000625565b5090565b5b808211156200064057600081600090555060010162000626565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ad8262000662565b810181811067ffffffffffffffff82111715620006cf57620006ce62000673565b5b80604052505050565b6000620006e462000644565b9050620006f28282620006a2565b919050565b600067ffffffffffffffff82111562000715576200071462000673565b5b620007208262000662565b9050602081019050919050565b60005b838110156200074d57808201518184015260208101905062000730565b838111156200075d576000848401525b50505050565b60006200077a6200077484620006f7565b620006d8565b9050828152602081018484840111156200079957620007986200065d565b5b620007a68482856200072d565b509392505050565b600082601f830112620007c657620007c562000658565b5b8151620007d884826020860162000763565b91505092915050565b6000819050919050565b620007f681620007e1565b81146200080257600080fd5b50565b6000815190506200081681620007eb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000849826200081c565b9050919050565b6200085b816200083c565b81146200086757600080fd5b50565b6000815190506200087b8162000850565b92915050565b6000806000806000806000806000806101408b8d031215620008a857620008a76200064e565b5b60008b015167ffffffffffffffff811115620008c957620008c862000653565b5b620008d78d828e01620007ae565b9a505060208b015167ffffffffffffffff811115620008fb57620008fa62000653565b5b620009098d828e01620007ae565b99505060406200091c8d828e0162000805565b98505060606200092f8d828e016200086a565b9750506080620009428d828e0162000805565b96505060a0620009558d828e016200086a565b95505060c0620009688d828e0162000805565b94505060e06200097b8d828e016200086a565b9350506101006200098f8d828e0162000805565b925050610120620009a38d828e0162000805565b9150509295989b9194979a5092959850565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009f182620007e1565b9150620009fe83620007e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a365762000a35620009b5565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a8a601f8362000a41565b915062000a978262000a52565b602082019050919050565b6000602082019050818103600083015262000abd8162000a7b565b9050919050565b62000acf81620007e1565b82525050565b600060208201905062000aec600083018462000ac4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b3a57607f821691505b6020821081141562000b515762000b5062000af2565b5b50919050565b6131ac8062000b676000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637a57dda711610104578063a457c2d7116100a2578063cc1776d311610071578063cc1776d314610535578063dd62ed3e14610553578063f16e3aab14610583578063f2fde38b146105a1576101da565b8063a457c2d71461049d578063a9059cbb146104cd578063b91ebc88146104fd578063bee3551c14610519576101da565b80638da5cb5b116100de5780638da5cb5b1461042757806395d89b41146104455780639a7fa2b414610463578063a1bd81051461047f576101da565b80637a57dda7146103d15780637b929c27146103ed5780638855652a1461040b576101da565b80632c80a89c1161017c578063436d33401161014b578063436d33401461035d5780634f7041a51461037957806370a0823114610397578063715018a6146103c7576101da565b80632c80a89c146102d35780632d3e474a146102f1578063313ce5671461030f578063395093511461032d576101da565b806312185a39116101b857806312185a391461024b57806315f0c2201461026757806318160ddd1461028557806323b872dd146102a3576101da565b806306fdde03146101df578063095ea7b3146101fd5780630996007e1461022d575b600080fd5b6101e76105bd565b6040516101f49190612353565b60405180910390f35b6102176004803603810190610212919061241d565b61064f565b6040516102249190612478565b60405180910390f35b610235610672565b60405161024291906124a2565b60405180910390f35b610265600480360381019061026091906124bd565b610678565b005b61026f61071b565b60405161027c91906124a2565b60405180910390f35b61028d610721565b60405161029a91906124a2565b60405180910390f35b6102bd60048036038101906102b891906124ea565b61072b565b6040516102ca9190612478565b60405180910390f35b6102db61075a565b6040516102e891906124a2565b60405180910390f35b6102f9610760565b604051610306919061254c565b60405180910390f35b610317610786565b6040516103249190612583565b60405180910390f35b6103476004803603810190610342919061241d565b61078f565b6040516103549190612478565b60405180910390f35b610377600480360381019061037291906124bd565b6107c6565b005b610381610856565b60405161038e91906124a2565b60405180910390f35b6103b160048036038101906103ac919061259e565b61085c565b6040516103be91906124a2565b60405180910390f35b6103cf6108a4565b005b6103eb60048036038101906103e691906125cb565b6108b8565b005b6103f561098f565b604051610402919061254c565b60405180910390f35b610425600480360381019061042091906124bd565b6109b5565b005b61042f610a47565b60405161043c919061254c565b60405180910390f35b61044d610a71565b60405161045a9190612353565b60405180910390f35b61047d6004803603810190610478919061259e565b610b03565b005b610487610bed565b604051610494919061254c565b60405180910390f35b6104b760048036038101906104b2919061241d565b610c13565b6040516104c49190612478565b60405180910390f35b6104e760048036038101906104e2919061241d565b610c8a565b6040516104f49190612478565b60405180910390f35b6105176004803603810190610512919061259e565b610cad565b005b610533600480360381019061052e919061259e565b610d97565b005b61053d610e81565b60405161054a91906124a2565b60405180910390f35b61056d6004803603810190610568919061261e565b610e87565b60405161057a91906124a2565b60405180910390f35b61058b610f0e565b60405161059891906124a2565b60405180910390f35b6105bb60048036038101906105b6919061259e565b610f14565b005b6060600380546105cc9061268d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f89061268d565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a610f98565b9050610667818585610fa0565b600191505092915050565b60095481565b61068061116b565b6000811480610690575061271081115b156106c7576040517f37d4ed5b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055506064816106db91906126ee565b6007819055507fd93c3e7c6d4532f91eaf1249b7cfc5c5a241a22f8a001a14e3f57ecbfcfe2c368160405161071091906124a2565b60405180910390a150565b600d5481565b6000600254905090565b600080610736610f98565b90506107438582856111e9565b61074e858585611275565b60019150509392505050565b600b5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061079a610f98565b90506107bb8185856107ac8589610e87565b6107b691906126ee565b610fa0565b600191505092915050565b6107ce61116b565b60008114806107de575061271081115b15610815576040517f37d4ed5b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e819055507f61ba7bbfb38ea8441858ab0fb215bc3deb9242b578740f4899a246ec6d161c888160405161084b91906124a2565b60405180910390a150565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ac61116b565b6108b66000611830565b565b6108c061116b565b60008314806108cf5750600082145b806108da5750600081145b806108fd57506127108183856108f091906126ee565b6108fa91906126ee565b14155b15610934576040517f0baf743200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260098190555081600b8190555080600d819055507f7ac4f85230181c33e38028a62708509dcfe21b74e6305253b01d63ca3c28602d600954600b54600d5460405161098293929190612744565b60405180910390a1505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109bd61116b565b60008114806109cd575061271081115b15610a04576040517fb92e9c7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806010819055507f8b15ac7abd44ca6c242a141afaffc9333fdb9d578f737b6abeaebb12b5b8059e601054604051610a3c91906124a2565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a809061268d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac9061268d565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b610b0b61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b72576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1ca756a26feb37a6fe0642f67e535eb80c5f74bafcc47b90cba1891adeb2554a81604051610be2919061254c565b60405180910390a150565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c1e610f98565b90506000610c2c8286610e87565b905083811015610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906127ed565b60405180910390fd5b610c7e8286868403610fa0565b60019250505092915050565b600080610c95610f98565b9050610ca2818585611275565b600191505092915050565b610cb561116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1c576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f18e820fed86f10a7fe33ec4e0b9e48e98849433c21fb865f62e91b9671eb473381604051610d8c919061254c565b60405180910390a150565b610d9f61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e06576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa51a82fdfb85461c31919a8ea052fa660adcbcdcc910001990957cccdecce80f81604051610e76919061254c565b60405180910390a150565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b610f1c61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061287f565b60405180910390fd5b610f9581611830565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906129a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115e91906124a2565b60405180910390a3505050565b611173610f98565b73ffffffffffffffffffffffffffffffffffffffff16611191610a47565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612a0f565b60405180910390fd5b565b60006111f58484610e87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612a7b565b60405180910390fd5b61126e8484848403610fa0565b5b50505050565b600061129530736b175474e89094c44da98b954eedeac495271d0f6118f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112ff57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561133e575061130e610a47565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113985750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113f25750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561142c575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156114725761143b828461199f565b611471576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480156114d957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561151857506114e8610a47565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b806115c557508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561158557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115c45750611594610a47565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b1561181e5760008173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461160757600f5461160b565b600e545b90506000612710828561161e9190612a9b565b6116289190612b24565b90506116358630836119e6565b806006600082825461164791906126ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146117bf576000600d54600b5460095461169691906126ee565b6116a091906126ee565b90506000816009546006546116b59190612a9b565b6116bf9190612b24565b9050600082600b546006546116d49190612a9b565b6116de9190612b24565b9050600081836116ee91906126ee565b6006546116fb9190612b55565b905061172c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead85611c5e565b61176d736b175474e89094c44da98b954eedeac495271d0f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c5e565b6117ae736b175474e89094c44da98b954eedeac495271d0f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611c5e565b600060068190555050505050611800565b6117c9848661199f565b6117ff576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611816868683876118119190612b55565b6119e6565b50505061182b565b6118298484846119e6565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401611947929190612b89565b60206040518083038186803b15801561195f57600080fd5b505afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190612bc7565b905092915050565b6000806119ab8361085c565b6127106010546119b9610721565b6119c39190612a9b565b6119cd9190612b24565b6119d79190612b55565b90508084111591505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90612c66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612cf8565b60405180910390fd5b611ad1838383611c7d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90612d8a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4591906124a2565b60405180910390a3611c58848484611c82565b50505050565b6000811115611c7857611c7630848360075486611c87565b505b505050565b505050565b505050565b6000611ca886737a250d5630b4cf539739df2c5dacb4c659f2488d8661218f565b506060736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480611d385750736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15611e2c57600267ffffffffffffffff811115611d5857611d57612daa565b5b604051908082528060200260200182016040528015611d865781602001602082028036833780820191505090505b5090508681600081518110611d9e57611d9d612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600181518110611ded57611dec612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611fdd565b600467ffffffffffffffff811115611e4757611e46612daa565b5b604051908082528060200260200182016040528015611e755781602001602082028036833780820191505090505b5090508681600081518110611e8d57611e8c612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050736b175474e89094c44da98b954eedeac495271d0f81600181518110611ef057611eef612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600281518110611f5357611f52612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600381518110611fa257611fa1612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b600061271085612710611ff09190612b55565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663d06ca61f89866040518363ffffffff1660e01b815260040161203f929190612ec6565b60006040518083038186803b15801561205757600080fd5b505afa15801561206b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906120949190613024565b600185516120a29190612b55565b815181106120b3576120b2612dd9565b5b60200260200101516120c59190612a9b565b6120cf9190612b24565b905060006120dd8886612227565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79588848689426040518663ffffffff1660e01b815260040161213495949392919061306d565b600060405180830381600087803b15801561214e57600080fd5b505af1158015612162573d6000803e3d6000fd5b5050505060006121728987612227565b905081816121809190612b55565b94505050505095945050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b81526004016121cc9291906130c7565b602060405180830381600087803b1580156121e657600080fd5b505af11580156121fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221e919061311c565b90509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401612262919061254c565b60206040518083038186803b15801561227a57600080fd5b505afa15801561228e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b29190613149565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f45780820151818401526020810190506122d9565b83811115612303576000848401525b50505050565b6000601f19601f8301169050919050565b6000612325826122ba565b61232f81856122c5565b935061233f8185602086016122d6565b61234881612309565b840191505092915050565b6000602082019050818103600083015261236d818461231a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123b482612389565b9050919050565b6123c4816123a9565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b6000819050919050565b6123fa816123e7565b811461240557600080fd5b50565b600081359050612417816123f1565b92915050565b600080604083850312156124345761243361237f565b5b6000612442858286016123d2565b925050602061245385828601612408565b9150509250929050565b60008115159050919050565b6124728161245d565b82525050565b600060208201905061248d6000830184612469565b92915050565b61249c816123e7565b82525050565b60006020820190506124b76000830184612493565b92915050565b6000602082840312156124d3576124d261237f565b5b60006124e184828501612408565b91505092915050565b6000806000606084860312156125035761250261237f565b5b6000612511868287016123d2565b9350506020612522868287016123d2565b925050604061253386828701612408565b9150509250925092565b612546816123a9565b82525050565b6000602082019050612561600083018461253d565b92915050565b600060ff82169050919050565b61257d81612567565b82525050565b60006020820190506125986000830184612574565b92915050565b6000602082840312156125b4576125b361237f565b5b60006125c2848285016123d2565b91505092915050565b6000806000606084860312156125e4576125e361237f565b5b60006125f286828701612408565b935050602061260386828701612408565b925050604061261486828701612408565b9150509250925092565b600080604083850312156126355761263461237f565b5b6000612643858286016123d2565b9250506020612654858286016123d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a557607f821691505b602082108114156126b9576126b861265e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f9826123e7565b9150612704836123e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612739576127386126bf565b5b828201905092915050565b60006060820190506127596000830186612493565b6127666020830185612493565b6127736040830184612493565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127d76025836122c5565b91506127e28261277b565b604082019050919050565b60006020820190508181036000830152612806816127ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128696026836122c5565b91506128748261280d565b604082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128fb6024836122c5565b91506129068261289f565b604082019050919050565b6000602082019050818103600083015261292a816128ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061298d6022836122c5565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129f96020836122c5565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a65601d836122c5565b9150612a7082612a2f565b602082019050919050565b60006020820190508181036000830152612a9481612a58565b9050919050565b6000612aa6826123e7565b9150612ab1836123e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aea57612ae96126bf565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b2f826123e7565b9150612b3a836123e7565b925082612b4a57612b49612af5565b5b828204905092915050565b6000612b60826123e7565b9150612b6b836123e7565b925082821015612b7e57612b7d6126bf565b5b828203905092915050565b6000604082019050612b9e600083018561253d565b612bab602083018461253d565b9392505050565b600081519050612bc1816123bb565b92915050565b600060208284031215612bdd57612bdc61237f565b5b6000612beb84828501612bb2565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c506025836122c5565b9150612c5b82612bf4565b604082019050919050565b60006020820190508181036000830152612c7f81612c43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ce26023836122c5565b9150612ced82612c86565b604082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d746026836122c5565b9150612d7f82612d18565b604082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e3d816123a9565b82525050565b6000612e4f8383612e34565b60208301905092915050565b6000602082019050919050565b6000612e7382612e08565b612e7d8185612e13565b9350612e8883612e24565b8060005b83811015612eb9578151612ea08882612e43565b9750612eab83612e5b565b925050600181019050612e8c565b5085935050505092915050565b6000604082019050612edb6000830185612493565b8181036020830152612eed8184612e68565b90509392505050565b600080fd5b612f0482612309565b810181811067ffffffffffffffff82111715612f2357612f22612daa565b5b80604052505050565b6000612f36612375565b9050612f428282612efb565b919050565b600067ffffffffffffffff821115612f6257612f61612daa565b5b602082029050602081019050919050565b600080fd5b600081519050612f87816123f1565b92915050565b6000612fa0612f9b84612f47565b612f2c565b90508083825260208201905060208402830185811115612fc357612fc2612f73565b5b835b81811015612fec5780612fd88882612f78565b845260208401935050602081019050612fc5565b5050509392505050565b600082601f83011261300b5761300a612ef6565b5b815161301b848260208601612f8d565b91505092915050565b60006020828403121561303a5761303961237f565b5b600082015167ffffffffffffffff81111561305857613057612384565b5b61306484828501612ff6565b91505092915050565b600060a0820190506130826000830188612493565b61308f6020830187612493565b81810360408301526130a18186612e68565b90506130b0606083018561253d565b6130bd6080830184612493565b9695505050505050565b60006040820190506130dc600083018561253d565b6130e96020830184612493565b9392505050565b6130f98161245d565b811461310457600080fd5b50565b600081519050613116816130f0565b92915050565b6000602082840312156131325761313161237f565b5b600061314084828501613107565b91505092915050565b60006020828403121561315f5761315e61237f565b5b600061316d84828501612f78565b9150509291505056fea2646970667358221220a35ceb65ebbe331a04d0b239e130f26852d359b7fff68c883061c4ab6c77c05d64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000c9f2c9cd04674edea40000000000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a1300000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000f49b99b87623d022c871fd4485adba98095332800000000000000000000000000000000000000000000000000000000000001388000000000000000000000000f49b99b87623d022c871fd4485adba980953328000000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000164d6f64756c757320446f6d61696e20536572766963650000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f445300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637a57dda711610104578063a457c2d7116100a2578063cc1776d311610071578063cc1776d314610535578063dd62ed3e14610553578063f16e3aab14610583578063f2fde38b146105a1576101da565b8063a457c2d71461049d578063a9059cbb146104cd578063b91ebc88146104fd578063bee3551c14610519576101da565b80638da5cb5b116100de5780638da5cb5b1461042757806395d89b41146104455780639a7fa2b414610463578063a1bd81051461047f576101da565b80637a57dda7146103d15780637b929c27146103ed5780638855652a1461040b576101da565b80632c80a89c1161017c578063436d33401161014b578063436d33401461035d5780634f7041a51461037957806370a0823114610397578063715018a6146103c7576101da565b80632c80a89c146102d35780632d3e474a146102f1578063313ce5671461030f578063395093511461032d576101da565b806312185a39116101b857806312185a391461024b57806315f0c2201461026757806318160ddd1461028557806323b872dd146102a3576101da565b806306fdde03146101df578063095ea7b3146101fd5780630996007e1461022d575b600080fd5b6101e76105bd565b6040516101f49190612353565b60405180910390f35b6102176004803603810190610212919061241d565b61064f565b6040516102249190612478565b60405180910390f35b610235610672565b60405161024291906124a2565b60405180910390f35b610265600480360381019061026091906124bd565b610678565b005b61026f61071b565b60405161027c91906124a2565b60405180910390f35b61028d610721565b60405161029a91906124a2565b60405180910390f35b6102bd60048036038101906102b891906124ea565b61072b565b6040516102ca9190612478565b60405180910390f35b6102db61075a565b6040516102e891906124a2565b60405180910390f35b6102f9610760565b604051610306919061254c565b60405180910390f35b610317610786565b6040516103249190612583565b60405180910390f35b6103476004803603810190610342919061241d565b61078f565b6040516103549190612478565b60405180910390f35b610377600480360381019061037291906124bd565b6107c6565b005b610381610856565b60405161038e91906124a2565b60405180910390f35b6103b160048036038101906103ac919061259e565b61085c565b6040516103be91906124a2565b60405180910390f35b6103cf6108a4565b005b6103eb60048036038101906103e691906125cb565b6108b8565b005b6103f561098f565b604051610402919061254c565b60405180910390f35b610425600480360381019061042091906124bd565b6109b5565b005b61042f610a47565b60405161043c919061254c565b60405180910390f35b61044d610a71565b60405161045a9190612353565b60405180910390f35b61047d6004803603810190610478919061259e565b610b03565b005b610487610bed565b604051610494919061254c565b60405180910390f35b6104b760048036038101906104b2919061241d565b610c13565b6040516104c49190612478565b60405180910390f35b6104e760048036038101906104e2919061241d565b610c8a565b6040516104f49190612478565b60405180910390f35b6105176004803603810190610512919061259e565b610cad565b005b610533600480360381019061052e919061259e565b610d97565b005b61053d610e81565b60405161054a91906124a2565b60405180910390f35b61056d6004803603810190610568919061261e565b610e87565b60405161057a91906124a2565b60405180910390f35b61058b610f0e565b60405161059891906124a2565b60405180910390f35b6105bb60048036038101906105b6919061259e565b610f14565b005b6060600380546105cc9061268d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f89061268d565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a610f98565b9050610667818585610fa0565b600191505092915050565b60095481565b61068061116b565b6000811480610690575061271081115b156106c7576040517f37d4ed5b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f819055506064816106db91906126ee565b6007819055507fd93c3e7c6d4532f91eaf1249b7cfc5c5a241a22f8a001a14e3f57ecbfcfe2c368160405161071091906124a2565b60405180910390a150565b600d5481565b6000600254905090565b600080610736610f98565b90506107438582856111e9565b61074e858585611275565b60019150509392505050565b600b5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061079a610f98565b90506107bb8185856107ac8589610e87565b6107b691906126ee565b610fa0565b600191505092915050565b6107ce61116b565b60008114806107de575061271081115b15610815576040517f37d4ed5b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e819055507f61ba7bbfb38ea8441858ab0fb215bc3deb9242b578740f4899a246ec6d161c888160405161084b91906124a2565b60405180910390a150565b600e5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ac61116b565b6108b66000611830565b565b6108c061116b565b60008314806108cf5750600082145b806108da5750600081145b806108fd57506127108183856108f091906126ee565b6108fa91906126ee565b14155b15610934576040517f0baf743200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8260098190555081600b8190555080600d819055507f7ac4f85230181c33e38028a62708509dcfe21b74e6305253b01d63ca3c28602d600954600b54600d5460405161098293929190612744565b60405180910390a1505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109bd61116b565b60008114806109cd575061271081115b15610a04576040517fb92e9c7a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806010819055507f8b15ac7abd44ca6c242a141afaffc9333fdb9d578f737b6abeaebb12b5b8059e601054604051610a3c91906124a2565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a809061268d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac9061268d565b8015610af95780601f10610ace57610100808354040283529160200191610af9565b820191906000526020600020905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b610b0b61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b72576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1ca756a26feb37a6fe0642f67e535eb80c5f74bafcc47b90cba1891adeb2554a81604051610be2919061254c565b60405180910390a150565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610c1e610f98565b90506000610c2c8286610e87565b905083811015610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906127ed565b60405180910390fd5b610c7e8286868403610fa0565b60019250505092915050565b600080610c95610f98565b9050610ca2818585611275565b600191505092915050565b610cb561116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d1c576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f18e820fed86f10a7fe33ec4e0b9e48e98849433c21fb865f62e91b9671eb473381604051610d8c919061254c565b60405180910390a150565b610d9f61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e06576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa51a82fdfb85461c31919a8ea052fa660adcbcdcc910001990957cccdecce80f81604051610e76919061254c565b60405180910390a150565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b610f1c61116b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061287f565b60405180910390fd5b610f9581611830565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906129a3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115e91906124a2565b60405180910390a3505050565b611173610f98565b73ffffffffffffffffffffffffffffffffffffffff16611191610a47565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612a0f565b60405180910390fd5b565b60006111f58484610e87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612a7b565b60405180910390fd5b61126e8484848403610fa0565b5b50505050565b600061129530736b175474e89094c44da98b954eedeac495271d0f6118f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112ff57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561133e575061130e610a47565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113985750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113f25750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561142c575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156114725761143b828461199f565b611471576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480156114d957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561151857506114e8610a47565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b806115c557508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561158557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115c45750611594610a47565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b1561181e5760008173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461160757600f5461160b565b600e545b90506000612710828561161e9190612a9b565b6116289190612b24565b90506116358630836119e6565b806006600082825461164791906126ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146117bf576000600d54600b5460095461169691906126ee565b6116a091906126ee565b90506000816009546006546116b59190612a9b565b6116bf9190612b24565b9050600082600b546006546116d49190612a9b565b6116de9190612b24565b9050600081836116ee91906126ee565b6006546116fb9190612b55565b905061172c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead85611c5e565b61176d736b175474e89094c44da98b954eedeac495271d0f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611c5e565b6117ae736b175474e89094c44da98b954eedeac495271d0f600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611c5e565b600060068190555050505050611800565b6117c9848661199f565b6117ff576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611816868683876118119190612b55565b6119e6565b50505061182b565b6118298484846119e6565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401611947929190612b89565b60206040518083038186803b15801561195f57600080fd5b505afa158015611973573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119979190612bc7565b905092915050565b6000806119ab8361085c565b6127106010546119b9610721565b6119c39190612a9b565b6119cd9190612b24565b6119d79190612b55565b90508084111591505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90612c66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612cf8565b60405180910390fd5b611ad1838383611c7d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90612d8a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4591906124a2565b60405180910390a3611c58848484611c82565b50505050565b6000811115611c7857611c7630848360075486611c87565b505b505050565b505050565b505050565b6000611ca886737a250d5630b4cf539739df2c5dacb4c659f2488d8661218f565b506060736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480611d385750736b175474e89094c44da98b954eedeac495271d0f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15611e2c57600267ffffffffffffffff811115611d5857611d57612daa565b5b604051908082528060200260200182016040528015611d865781602001602082028036833780820191505090505b5090508681600081518110611d9e57611d9d612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600181518110611ded57611dec612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611fdd565b600467ffffffffffffffff811115611e4757611e46612daa565b5b604051908082528060200260200182016040528015611e755781602001602082028036833780820191505090505b5090508681600081518110611e8d57611e8c612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050736b175474e89094c44da98b954eedeac495271d0f81600181518110611ef057611eef612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600281518110611f5357611f52612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600381518110611fa257611fa1612dd9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b600061271085612710611ff09190612b55565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663d06ca61f89866040518363ffffffff1660e01b815260040161203f929190612ec6565b60006040518083038186803b15801561205757600080fd5b505afa15801561206b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906120949190613024565b600185516120a29190612b55565b815181106120b3576120b2612dd9565b5b60200260200101516120c59190612a9b565b6120cf9190612b24565b905060006120dd8886612227565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79588848689426040518663ffffffff1660e01b815260040161213495949392919061306d565b600060405180830381600087803b15801561214e57600080fd5b505af1158015612162573d6000803e3d6000fd5b5050505060006121728987612227565b905081816121809190612b55565b94505050505095945050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b384846040518363ffffffff1660e01b81526004016121cc9291906130c7565b602060405180830381600087803b1580156121e657600080fd5b505af11580156121fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221e919061311c565b90509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401612262919061254c565b60206040518083038186803b15801561227a57600080fd5b505afa15801561228e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b29190613149565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f45780820151818401526020810190506122d9565b83811115612303576000848401525b50505050565b6000601f19601f8301169050919050565b6000612325826122ba565b61232f81856122c5565b935061233f8185602086016122d6565b61234881612309565b840191505092915050565b6000602082019050818103600083015261236d818461231a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123b482612389565b9050919050565b6123c4816123a9565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b6000819050919050565b6123fa816123e7565b811461240557600080fd5b50565b600081359050612417816123f1565b92915050565b600080604083850312156124345761243361237f565b5b6000612442858286016123d2565b925050602061245385828601612408565b9150509250929050565b60008115159050919050565b6124728161245d565b82525050565b600060208201905061248d6000830184612469565b92915050565b61249c816123e7565b82525050565b60006020820190506124b76000830184612493565b92915050565b6000602082840312156124d3576124d261237f565b5b60006124e184828501612408565b91505092915050565b6000806000606084860312156125035761250261237f565b5b6000612511868287016123d2565b9350506020612522868287016123d2565b925050604061253386828701612408565b9150509250925092565b612546816123a9565b82525050565b6000602082019050612561600083018461253d565b92915050565b600060ff82169050919050565b61257d81612567565b82525050565b60006020820190506125986000830184612574565b92915050565b6000602082840312156125b4576125b361237f565b5b60006125c2848285016123d2565b91505092915050565b6000806000606084860312156125e4576125e361237f565b5b60006125f286828701612408565b935050602061260386828701612408565b925050604061261486828701612408565b9150509250925092565b600080604083850312156126355761263461237f565b5b6000612643858286016123d2565b9250506020612654858286016123d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126a557607f821691505b602082108114156126b9576126b861265e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f9826123e7565b9150612704836123e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612739576127386126bf565b5b828201905092915050565b60006060820190506127596000830186612493565b6127666020830185612493565b6127736040830184612493565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127d76025836122c5565b91506127e28261277b565b604082019050919050565b60006020820190508181036000830152612806816127ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128696026836122c5565b91506128748261280d565b604082019050919050565b600060208201905081810360008301526128988161285c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128fb6024836122c5565b91506129068261289f565b604082019050919050565b6000602082019050818103600083015261292a816128ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061298d6022836122c5565b915061299882612931565b604082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129f96020836122c5565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a65601d836122c5565b9150612a7082612a2f565b602082019050919050565b60006020820190508181036000830152612a9481612a58565b9050919050565b6000612aa6826123e7565b9150612ab1836123e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612aea57612ae96126bf565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b2f826123e7565b9150612b3a836123e7565b925082612b4a57612b49612af5565b5b828204905092915050565b6000612b60826123e7565b9150612b6b836123e7565b925082821015612b7e57612b7d6126bf565b5b828203905092915050565b6000604082019050612b9e600083018561253d565b612bab602083018461253d565b9392505050565b600081519050612bc1816123bb565b92915050565b600060208284031215612bdd57612bdc61237f565b5b6000612beb84828501612bb2565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c506025836122c5565b9150612c5b82612bf4565b604082019050919050565b60006020820190508181036000830152612c7f81612c43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ce26023836122c5565b9150612ced82612c86565b604082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d746026836122c5565b9150612d7f82612d18565b604082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e3d816123a9565b82525050565b6000612e4f8383612e34565b60208301905092915050565b6000602082019050919050565b6000612e7382612e08565b612e7d8185612e13565b9350612e8883612e24565b8060005b83811015612eb9578151612ea08882612e43565b9750612eab83612e5b565b925050600181019050612e8c565b5085935050505092915050565b6000604082019050612edb6000830185612493565b8181036020830152612eed8184612e68565b90509392505050565b600080fd5b612f0482612309565b810181811067ffffffffffffffff82111715612f2357612f22612daa565b5b80604052505050565b6000612f36612375565b9050612f428282612efb565b919050565b600067ffffffffffffffff821115612f6257612f61612daa565b5b602082029050602081019050919050565b600080fd5b600081519050612f87816123f1565b92915050565b6000612fa0612f9b84612f47565b612f2c565b90508083825260208201905060208402830185811115612fc357612fc2612f73565b5b835b81811015612fec5780612fd88882612f78565b845260208401935050602081019050612fc5565b5050509392505050565b600082601f83011261300b5761300a612ef6565b5b815161301b848260208601612f8d565b91505092915050565b60006020828403121561303a5761303961237f565b5b600082015167ffffffffffffffff81111561305857613057612384565b5b61306484828501612ff6565b91505092915050565b600060a0820190506130826000830188612493565b61308f6020830187612493565b81810360408301526130a18186612e68565b90506130b0606083018561253d565b6130bd6080830184612493565b9695505050505050565b60006040820190506130dc600083018561253d565b6130e96020830184612493565b9392505050565b6130f98161245d565b811461310457600080fd5b50565b600081519050613116816130f0565b92915050565b6000602082840312156131325761313161237f565b5b600061314084828501613107565b91505092915050565b60006020828403121561315f5761315e61237f565b5b600061316d84828501612f78565b9150509291505056fea2646970667358221220a35ceb65ebbe331a04d0b239e130f26852d359b7fff68c883061c4ab6c77c05d64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000c9f2c9cd04674edea40000000000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a1300000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000f49b99b87623d022c871fd4485adba98095332800000000000000000000000000000000000000000000000000000000000001388000000000000000000000000f49b99b87623d022c871fd4485adba980953328000000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000164d6f64756c757320446f6d61696e20536572766963650000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f445300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Modulus Domain Service
Arg [1] : _symbol (string): MODS
Arg [2] : _supply (uint256): 1000000000000000000000000000000
Arg [3] : _cult (address): 0xf0f9D895aCa5c8678f706FB8216fa22957685A13
Arg [4] : _cultAllocation (uint256): 2500
Arg [5] : _development (address): 0xF49B99b87623D022C871FD4485aDBa9809533280
Arg [6] : _developmentAllocation (uint256): 5000
Arg [7] : _marketing (address): 0xF49B99b87623D022C871FD4485aDBa9809533280
Arg [8] : _marketingAllocation (uint256): 2500
Arg [9] : _perWalletHoldingPercent (uint256): 200
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 000000000000000000000000000000000000000c9f2c9cd04674edea40000000
Arg [3] : 000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a13
Arg [4] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [5] : 000000000000000000000000f49b99b87623d022c871fd4485adba9809533280
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [7] : 000000000000000000000000f49b99b87623d022c871fd4485adba9809533280
Arg [8] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [9] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [11] : 4d6f64756c757320446f6d61696e205365727669636500000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 4d4f445300000000000000000000000000000000000000000000000000000000
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.