Overview
S Balance
0 S
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
SonicxDeployer
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; // @title **Sonicx.fun - Where Tokens Grow: Create, Trade, and List on SonicXSwap** // @notice **Powered by SonicXSwap.com**, enabling fast, secure, and decentralized token creation, trading, and listing. // @notice **SonicX.fun** is a decentralized platform designed to empower users to create their own tokens, trade them securely, and list them on the **SonicXSwap** exchange once they reach the market cap threshold. The protocol is built on Sonic, enabling trustless, transparent, and efficient token management. // @notice This contract provides a seamless experience for token creators to deploy new assets and enhance liquidity on a decentralized platform. From creation to listing, the entire process is integrated with **SonicXSwap**'s liquidity and trading mechanisms, ensuring users get the most out of their tokens. // @author **SuryaprakashMalgo** // @dev This contract leverages **SonicXSwap**'s infrastructure to enable users to deploy and manage tokens, while maintaining control over token supply, liquidity, and trading fees. The functionality is designed to be flexible, secure, and user-friendly. // Import required dependencies import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; // Protects against reentrancy attacks import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // Interface for interacting with ERC20 tokens import "@openzeppelin/contracts/access/Ownable.sol"; // Provides ownership functionality // Interface for the sonicxPool contract, used for creating fun tokens and purchasing tokens interface ISonicxPool { function createFun( string[2] memory _name_symbol, // Token name and symbol uint256 _totalSupply, // Total supply of tokens to create address _creator, // Creator's address address _baseToken, // Base token for liquidity address _router, // Router address for token liquidity uint256[2] memory listThreshold_initReserveEth, // List threshold and initial reserve for ETH bool lpBurn // Liquidity pool burn flag ) external payable returns (address); function buyTokens(address funToken, uint256 minTokens) external payable; // Function to buy fun tokens } // SonicxDeployer contract: facilitates deployment of fun tokens with liquidity and anti-snipe features contract SonicxDeployer is Ownable { // Events to log the creation of fun tokens and royalty information event funCreated( address indexed creator, address indexed funContract, address indexed tokenAddress, string name, string symbol, string data, uint256 totalSupply, uint256 initialReserve, uint256 timestamp ); event royal( address indexed funContract, address indexed tokenAddress, address indexed router, address baseAddress, uint256 liquidityAmount, uint256 tokenAmount, uint256 _time, uint256 totalVolume ); // Public variables for contract configuration address public sonicxPool; // Address of the sonicxPool contract uint256 public teamFee = 5000000000000000000; // Creation fee for the team in wei (5 ETH) uint256 public ownerFeePer = 1000; // Owner's fee percentage (in basis points) uint256 public listThreshold = 26000; // Threshold for listing a token (e.g., 26000 tokens) uint256 public supplyValue = 1000000000 ether; // Total supply value for the fun token (1 billion tokens) uint256 public initialReserveEth = 3000 ether; // Initial reserve ETH for the liquidity pool uint256 public routerCount; uint256 public baseCount; bool public supplyLock = true; // Lock flag for supply to ensure valid token creation bool public lpBurn = true; // Flag to burn liquidity pool tokens // Mappings for valid routers, tokens, and base tokens mapping(address => bool) public routerValid; mapping(address => bool) public routerAdded; mapping(uint256 => address) public routerStorage; mapping(address => bool) public baseValid; mapping(address => bool) public baseAdded; mapping(uint256 => address) public baseStorage; // Constructor to initialize the contract with a valid sonicxPool address constructor(address _sonicxPool) Ownable(msg.sender) { sonicxPool = _sonicxPool; } // Structure for the parameters required to create a fun token struct FunParameters { string name; // Token name string symbol; // Token symbol string data; // Custom data (e.g., project details) uint256 totalSupply; // Total supply of the token uint256 liquidityETHAmount; // Amount of ETH for liquidity uint256 amountAntiSnipe; // Amount for anti-snipe protection address baseToken; // Base token for liquidity address router; // Router address for liquidity bool antiSnipe; // Flag to enable anti-snipe feature } // Function to create a new fun token function CreateFun(FunParameters memory params) public payable { // Validate router and base token addresses require(routerValid[params.router], "invalid router"); require(baseValid[params.baseToken], "invalid base token"); // Validate anti-snipe logic if enabled if (params.antiSnipe) { require(params.amountAntiSnipe > 0, "invalid antisnipe value"); } // Ensure enough ETH is sent for fees, liquidity, and anti-snipe (if enabled) require( msg.value >= (teamFee + params.liquidityETHAmount + params.amountAntiSnipe), "fee amount error" ); // Transfer the team fee to the contract owner (bool feeSuccess, ) = owner().call{value: teamFee}(""); require(feeSuccess, "creation fee failed"); // Create the fun token through the sonicxPool contract address funToken = ISonicxPool(sonicxPool).createFun{ value: params.liquidityETHAmount }( [params.name, params.symbol], // Token name and symbol params.totalSupply, // Total supply of the token msg.sender, // Sender address as the creator params.baseToken, // Base token address params.router, // Router address [listThreshold, initialReserveEth], // List threshold and initial reserve ETH lpBurn // Liquidity pool burn flag ); // Handle anti-snipe logic if enabled if (params.antiSnipe) { ISonicxPool(sonicxPool).buyTokens{value: params.amountAntiSnipe}( funToken, 0 ); IERC20(funToken).transfer( msg.sender, IERC20(funToken).balanceOf(address(this)) ); } // Emit event for successful token creation emit funCreated( msg.sender, // Creator address funToken, // Fun contract address funToken, // Token address params.name, // Token name params.symbol, // Token symbol params.data, // Custom data params.totalSupply, // Total supply of the token initialReserveEth + params.liquidityETHAmount, // Initial reserve ETH + liquidity ETH block.timestamp // Timestamp of creation ); } // Function to update the team fee in wei function updateTeamFee(uint256 _newTeamFeeInWei) public onlyOwner { teamFee = _newTeamFeeInWei; } // Function to update the owner's fee percentage (basis points) function updateownerFee(uint256 _newOwnerFeeBaseTenK) public onlyOwner { ownerFeePer = _newOwnerFeeBaseTenK; } // Function to get the owner's fee percentage function getOwnerPer() public view returns (uint256) { return ownerFeePer; } // Function to update the total supply value for token creation function updateSupplyValue(uint256 _newSupplyVal) public onlyOwner { supplyValue = _newSupplyVal; } // Function to update the initial reserve ETH for liquidity function updateInitResEthVal(uint256 _newVal) public onlyOwner { initialReserveEth = _newVal; } // Function to lock/unlock the token supply (if needed) function stateChangeSupplyLock(bool _lockState) public onlyOwner { supplyLock = _lockState; } // Function to add a new router address to the contract function addRouter(address _routerAddress) public onlyOwner { require(!routerAdded[_routerAddress], "already added"); routerAdded[_routerAddress] = true; routerValid[_routerAddress] = true; routerStorage[routerCount] = _routerAddress; routerCount++; } // Function to disable a router address (make it invalid) function disableRouter(address _routerAddress) public onlyOwner { require(routerAdded[_routerAddress], "not added"); require(routerValid[_routerAddress], "not valid"); routerValid[_routerAddress] = false; } // Function to enable a previously disabled router address function enableRouter(address _routerAddress) public onlyOwner { require(routerAdded[_routerAddress], "not added"); require(!routerValid[_routerAddress], "already enabled"); routerValid[_routerAddress] = true; } function addBaseToken(address _baseTokenAddress) public onlyOwner { require(!baseAdded[_baseTokenAddress], "already added"); baseAdded[_baseTokenAddress] = true; baseValid[_baseTokenAddress] = true; baseStorage[baseCount] = _baseTokenAddress; baseCount++; } // Function to disable a base token address function disableBaseToken(address _baseTokenAddress) public onlyOwner { require(baseAdded[_baseTokenAddress], "not added"); require(baseValid[_baseTokenAddress], "not valid"); baseValid[_baseTokenAddress] = false; } // Function to enable a previously disabled base token address function enableBasetoken(address _baseTokenAddress) public onlyOwner { require(baseAdded[_baseTokenAddress], "not added"); require(!baseValid[_baseTokenAddress], "already enabled"); baseValid[_baseTokenAddress] = true; } // Function to update the address of the sonicxPool contract function updateFunPool(address _newfunPool) public onlyOwner { sonicxPool = _newfunPool; } // Function to update the list threshold for token listings function updateListThreshold(uint256 _newListThreshold) public onlyOwner { listThreshold = _newListThreshold; } // Function to enable/disable liquidity pool token burning function stateChangeLPBurn(bool _state) public onlyOwner { lpBurn = _state; } // Function to emit royalty information (typically for token liquidity events) function emitRoyal( address funContract, address tokenAddress, address router, address baseAddress, uint256 liquidityAmount, uint256 tokenAmount, uint256 _time, uint256 totalVolume ) public { require(msg.sender == sonicxPool, "invalid caller"); emit royal( funContract, tokenAddress, router, baseAddress, liquidityAmount, tokenAmount, _time, totalVolume ); } // Emergency withdraw function for the contract owner to withdraw contract balance function emergencyWithdraw() public onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_sonicxPool","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"funContract","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"string","name":"data","type":"string"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"initialReserve","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"funCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"funContract","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":false,"internalType":"address","name":"baseAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidityAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalVolume","type":"uint256"}],"name":"royal","type":"event"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"data","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"liquidityETHAmount","type":"uint256"},{"internalType":"uint256","name":"amountAntiSnipe","type":"uint256"},{"internalType":"address","name":"baseToken","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"bool","name":"antiSnipe","type":"bool"}],"internalType":"struct SonicxDeployer.FunParameters","name":"params","type":"tuple"}],"name":"CreateFun","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_baseTokenAddress","type":"address"}],"name":"addBaseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"addRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"baseAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"baseStorage","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"baseValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_baseTokenAddress","type":"address"}],"name":"disableBaseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"disableRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"funContract","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"baseAddress","type":"address"},{"internalType":"uint256","name":"liquidityAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"},{"internalType":"uint256","name":"totalVolume","type":"uint256"}],"name":"emitRoyal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_baseTokenAddress","type":"address"}],"name":"enableBasetoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"enableRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwnerPer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialReserveEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerFeePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"routerStorage","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sonicxPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"stateChangeLPBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_lockState","type":"bool"}],"name":"stateChangeSupplyLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newfunPool","type":"address"}],"name":"updateFunPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newVal","type":"uint256"}],"name":"updateInitResEthVal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newListThreshold","type":"uint256"}],"name":"updateListThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupplyVal","type":"uint256"}],"name":"updateSupplyValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTeamFeeInWei","type":"uint256"}],"name":"updateTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newOwnerFeeBaseTenK","type":"uint256"}],"name":"updateownerFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052674563918244f400006002556103e86003556165906004556b033b2e3c9fd0803ce800000060055568a2a15d09519be000006006556001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055503480156200007c57600080fd5b5060405162003018380380620030188339818101604052810190620000a29190620002a0565b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001185760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010f9190620002e3565b60405180910390fd5b62000129816200017260201b60201c565b5080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000300565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000268826200023b565b9050919050565b6200027a816200025b565b81146200028657600080fd5b50565b6000815190506200029a816200026f565b92915050565b600060208284031215620002b957620002b862000236565b5b6000620002c98482850162000289565b91505092915050565b620002dd816200025b565b82525050565b6000602082019050620002fa6000830184620002d2565b92915050565b612d0880620003106000396000f3fe6080604052600436106102195760003560e01c8063817d785111610123578063c95a1916116100ab578063dc5abc751161006f578063dc5abc7514610794578063f1942e36146107bf578063f2fde38b146107e8578063f3ad43bf14610811578063fb2677e41461082d57610219565b8063c95a1916146106c3578063c9689194146106ec578063cd05a0e714610729578063d7c94efd14610752578063db2e21bc1461077d57610219565b80638e3db958116100f25780638e3db958146105dc5780638e67e04914610607578063acedf07c14610632578063b1bafc701461065b578063c45c592e1461068657610219565b8063817d78511461053457806383e280d91461055f578063886f5e8e146105885780638da5cb5b146105b157610219565b80634026f6be116101a65780635f82c53a116101755780635f82c53a1461046157806367b633f81461048c578063715018a6146104c95780637711a7c3146104e05780637e1889611461050957610219565b80634026f6be146103b95780634da9d77b146103e25780634ec7cf401461040d57806355b0f73d1461043857610219565b8063158ea64f116101ed578063158ea64f146102d657806319df5d88146102ff57806320f3e64e1461033c57806324ca984e146103655780632ad65e131461038e57610219565b80623e16921461021e5780630d220789146102475780631282a85a14610270578063149388f4146102ad575b600080fd5b34801561022a57600080fd5b5061024560048036038101906102409190611dc6565b61086a565b005b34801561025357600080fd5b5061026e60048036038101906102699190611e51565b61088f565b005b34801561027c57600080fd5b5061029760048036038101906102929190611e51565b610a0b565b6040516102a49190611e8d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611dc6565b610a2b565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190611ede565b610a50565b005b34801561030b57600080fd5b5061032660048036038101906103219190611ede565b610a62565b6040516103339190611f1a565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190611e51565b610a95565b005b34801561037157600080fd5b5061038c60048036038101906103879190611e51565b610c10565b005b34801561039a57600080fd5b506103a3610dc4565b6040516103b09190611f44565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190611e51565b610dca565b005b3480156103ee57600080fd5b506103f7610e16565b6040516104049190611f44565b60405180910390f35b34801561041957600080fd5b50610422610e1c565b60405161042f9190611f1a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190611e51565b610e42565b005b34801561046d57600080fd5b50610476610fbe565b6040516104839190611e8d565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190611e51565b610fd1565b6040516104c09190611e8d565b60405180910390f35b3480156104d557600080fd5b506104de610ff1565b005b3480156104ec57600080fd5b5061050760048036038101906105029190611ede565b611005565b005b34801561051557600080fd5b5061051e611017565b60405161052b9190611e8d565b60405180910390f35b34801561054057600080fd5b5061054961102a565b6040516105569190611f44565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190611e51565b611030565b005b34801561059457600080fd5b506105af60048036038101906105aa9190611f5f565b6111e4565b005b3480156105bd57600080fd5b506105c6611302565b6040516105d39190611f1a565b60405180910390f35b3480156105e857600080fd5b506105f161132b565b6040516105fe9190611f44565b60405180910390f35b34801561061357600080fd5b5061061c611331565b6040516106299190611f44565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190611ede565b611337565b005b34801561066757600080fd5b50610670611349565b60405161067d9190611f44565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190611e51565b611353565b6040516106ba9190611e8d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190611ede565b611373565b005b3480156106f857600080fd5b50610713600480360381019061070e9190611ede565b611385565b6040516107209190611f1a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190611e51565b6113b8565b005b34801561075e57600080fd5b50610767611533565b6040516107749190611f44565b60405180910390f35b34801561078957600080fd5b50610792611539565b005b3480156107a057600080fd5b506107a9611597565b6040516107b69190611f44565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190611ede565b61159d565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190611e51565b6115af565b005b61082b60048036038101906108269190612299565b611635565b005b34801561083957600080fd5b50610854600480360381019061084f9190611e51565b611c07565b6040516108619190611e8d565b60405180910390f35b610872611c27565b80600960006101000a81548160ff02191690831515021790555050565b610897611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061233f565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a7906123ab565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610a33611c27565b80600960016101000a81548160ff02191690831515021790555050565b610a58611c27565b8060048190555050565b600f6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a9d611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061233f565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90612417565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c18611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90612483565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c6000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060076000815480929190610dbc906124d2565b919050555050565b60035481565b610dd2611c27565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4a611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd9061233f565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a906123ab565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b610ff9611c27565b6110036000611cae565b565b61100d611c27565b8060058190555050565b600960009054906101000a900460ff1681565b60045481565b611038611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90612483565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f6000600854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860008154809291906111dc906124d2565b919050555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612566565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167ff7a17c87edea9e385949b0fe99598418a5263dc5be5d82bd5190654faa1895a888888888886040516112f0959493929190612586565b60405180910390a45050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60055481565b60075481565b61133f611c27565b8060028190555050565b6000600354905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b61137b611c27565b8060068190555050565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c0611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114439061233f565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90612417565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60025481565b611541611c27565b600047905061154e611302565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611593573d6000803e3d6000fd5b5050565b60065481565b6115a5611c27565b8060038190555050565b6115b7611c27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116209190611f1a565b60405180910390fd5b61163281611cae565b50565b600a60008260e0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612625565b60405180910390fd5b600d60008260c0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612691565b60405180910390fd5b806101000151156117a85760008160a00151116117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e906126fd565b60405180910390fd5b5b8060a0015181608001516002546117bf919061271d565b6117c9919061271d565b34101561180b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118029061279d565b60405180910390fd5b6000611815611302565b73ffffffffffffffffffffffffffffffffffffffff1660025460405161183a906127ee565b60006040518083038185875af1925050503d8060008114611877576040519150601f19603f3d011682016040523d82523d6000602084013e61187c565b606091505b50509050806118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b79061284f565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372521cc3846080015160405180604001604052808760000151815260200187602001518152508660600151338860c001518960e0015160405180604001604052806004548152602001600654815250600960019054906101000a900460ff166040518963ffffffff1660e01b815260040161197d9796959493929190612a4f565b60206040518083038185885af115801561199b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119c09190612adb565b905082610100015115611b5b57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630752881a8460a001518360006040518463ffffffff1660e01b8152600401611a30929190612b4d565b6000604051808303818588803b158015611a4957600080fd5b505af1158015611a5d573d6000803e3d6000fd5b50505050508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ab89190611f1a565b602060405180830381865afa158015611ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af99190612b8b565b6040518363ffffffff1660e01b8152600401611b16929190612bb8565b6020604051808303816000875af1158015611b35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b599190612bf6565b505b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f12cbbd953137d79707d6a95d385a6a413cbbeae6b8dea72939b6fa75982d36cd86600001518760200151886040015189606001518a60800151600654611be7919061271d565b42604051611bfa96959493929190612c5c565b60405180910390a4505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611c2f611d72565b73ffffffffffffffffffffffffffffffffffffffff16611c4d611302565b73ffffffffffffffffffffffffffffffffffffffff1614611cac57611c70611d72565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611ca39190611f1a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60008115159050919050565b611da381611d8e565b8114611dae57600080fd5b50565b600081359050611dc081611d9a565b92915050565b600060208284031215611ddc57611ddb611d84565b5b6000611dea84828501611db1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e1e82611df3565b9050919050565b611e2e81611e13565b8114611e3957600080fd5b50565b600081359050611e4b81611e25565b92915050565b600060208284031215611e6757611e66611d84565b5b6000611e7584828501611e3c565b91505092915050565b611e8781611d8e565b82525050565b6000602082019050611ea26000830184611e7e565b92915050565b6000819050919050565b611ebb81611ea8565b8114611ec657600080fd5b50565b600081359050611ed881611eb2565b92915050565b600060208284031215611ef457611ef3611d84565b5b6000611f0284828501611ec9565b91505092915050565b611f1481611e13565b82525050565b6000602082019050611f2f6000830184611f0b565b92915050565b611f3e81611ea8565b82525050565b6000602082019050611f596000830184611f35565b92915050565b600080600080600080600080610100898b031215611f8057611f7f611d84565b5b6000611f8e8b828c01611e3c565b9850506020611f9f8b828c01611e3c565b9750506040611fb08b828c01611e3c565b9650506060611fc18b828c01611e3c565b9550506080611fd28b828c01611ec9565b94505060a0611fe38b828c01611ec9565b93505060c0611ff48b828c01611ec9565b92505060e06120058b828c01611ec9565b9150509295985092959890939650565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120638261201a565b810181811067ffffffffffffffff821117156120825761208161202b565b5b80604052505050565b6000612095611d7a565b90506120a1828261205a565b919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff8211156120d0576120cf61202b565b5b6120d98261201a565b9050602081019050919050565b82818337600083830152505050565b6000612108612103846120b5565b61208b565b905082815260208101848484011115612124576121236120b0565b5b61212f8482856120e6565b509392505050565b600082601f83011261214c5761214b6120ab565b5b813561215c8482602086016120f5565b91505092915050565b6000610120828403121561217c5761217b612015565b5b61218761012061208b565b9050600082013567ffffffffffffffff8111156121a7576121a66120a6565b5b6121b384828501612137565b600083015250602082013567ffffffffffffffff8111156121d7576121d66120a6565b5b6121e384828501612137565b602083015250604082013567ffffffffffffffff811115612207576122066120a6565b5b61221384828501612137565b604083015250606061222784828501611ec9565b606083015250608061223b84828501611ec9565b60808301525060a061224f84828501611ec9565b60a08301525060c061226384828501611e3c565b60c08301525060e061227784828501611e3c565b60e08301525061010061228c84828501611db1565b6101008301525092915050565b6000602082840312156122af576122ae611d84565b5b600082013567ffffffffffffffff8111156122cd576122cc611d89565b5b6122d984828501612165565b91505092915050565b600082825260208201905092915050565b7f6e6f742061646465640000000000000000000000000000000000000000000000600082015250565b60006123296009836122e2565b9150612334826122f3565b602082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f616c726561647920656e61626c65640000000000000000000000000000000000600082015250565b6000612395600f836122e2565b91506123a08261235f565b602082019050919050565b600060208201905081810360008301526123c481612388565b9050919050565b7f6e6f742076616c69640000000000000000000000000000000000000000000000600082015250565b60006124016009836122e2565b915061240c826123cb565b602082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f616c726561647920616464656400000000000000000000000000000000000000600082015250565b600061246d600d836122e2565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124dd82611ea8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361250f5761250e6124a3565b5b600182019050919050565b7f696e76616c69642063616c6c6572000000000000000000000000000000000000600082015250565b6000612550600e836122e2565b915061255b8261251a565b602082019050919050565b6000602082019050818103600083015261257f81612543565b9050919050565b600060a08201905061259b6000830188611f0b565b6125a86020830187611f35565b6125b56040830186611f35565b6125c26060830185611f35565b6125cf6080830184611f35565b9695505050505050565b7f696e76616c696420726f75746572000000000000000000000000000000000000600082015250565b600061260f600e836122e2565b915061261a826125d9565b602082019050919050565b6000602082019050818103600083015261263e81612602565b9050919050565b7f696e76616c6964206261736520746f6b656e0000000000000000000000000000600082015250565b600061267b6012836122e2565b915061268682612645565b602082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f696e76616c696420616e7469736e6970652076616c7565000000000000000000600082015250565b60006126e76017836122e2565b91506126f2826126b1565b602082019050919050565b60006020820190508181036000830152612716816126da565b9050919050565b600061272882611ea8565b915061273383611ea8565b925082820190508082111561274b5761274a6124a3565b5b92915050565b7f66656520616d6f756e74206572726f7200000000000000000000000000000000600082015250565b60006127876010836122e2565b915061279282612751565b602082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b600081905092915050565b50565b60006127d86000836127bd565b91506127e3826127c8565b600082019050919050565b60006127f9826127cb565b9150819050919050565b7f6372656174696f6e20666565206661696c656400000000000000000000000000600082015250565b60006128396013836122e2565b915061284482612803565b602082019050919050565b600060208201905081810360008301526128688161282c565b9050919050565b600060029050919050565b600081905092915050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128c95780820151818401526020810190506128ae565b60008484015250505050565b60006128e08261288f565b6128ea818561289a565b93506128fa8185602086016128ab565b6129038161201a565b840191505092915050565b600061291a83836128d5565b905092915050565b6000602082019050919050565b600061293a8261286f565b612944818561287a565b93508360208202850161295685612885565b8060005b858110156129925784840389528151612973858261290e565b945061297e83612922565b925060208a0199505060018101905061295a565b50829750879550505050505092915050565b600060029050919050565b600081905092915050565b6000819050919050565b6129cd81611ea8565b82525050565b60006129df83836129c4565b60208301905092915050565b6000602082019050919050565b612a01816129a4565b612a0b81846129af565b9250612a16826129ba565b8060005b83811015612a47578151612a2e87826129d3565b9650612a39836129eb565b925050600181019050612a1a565b505050505050565b6000610100820190508181036000830152612a6a818a61292f565b9050612a796020830189611f35565b612a866040830188611f0b565b612a936060830187611f0b565b612aa06080830186611f0b565b612aad60a08301856129f8565b612aba60e0830184611e7e565b98975050505050505050565b600081519050612ad581611e25565b92915050565b600060208284031215612af157612af0611d84565b5b6000612aff84828501612ac6565b91505092915050565b6000819050919050565b6000819050919050565b6000612b37612b32612b2d84612b08565b612b12565b611ea8565b9050919050565b612b4781612b1c565b82525050565b6000604082019050612b626000830185611f0b565b612b6f6020830184612b3e565b9392505050565b600081519050612b8581611eb2565b92915050565b600060208284031215612ba157612ba0611d84565b5b6000612baf84828501612b76565b91505092915050565b6000604082019050612bcd6000830185611f0b565b612bda6020830184611f35565b9392505050565b600081519050612bf081611d9a565b92915050565b600060208284031215612c0c57612c0b611d84565b5b6000612c1a84828501612be1565b91505092915050565b6000612c2e8261288f565b612c3881856122e2565b9350612c488185602086016128ab565b612c518161201a565b840191505092915050565b600060c0820190508181036000830152612c768189612c23565b90508181036020830152612c8a8188612c23565b90508181036040830152612c9e8187612c23565b9050612cad6060830186611f35565b612cba6080830185611f35565b612cc760a0830184611f35565b97965050505050505056fea264697066735822122062da5fb85ed58cefc40028c526909633915588a38a07cb6ee1ff591aa6db0e7c64736f6c63430008140033000000000000000000000000bbe710b32411b83a6d5a24f296ec3813864822c8
Deployed Bytecode
0x6080604052600436106102195760003560e01c8063817d785111610123578063c95a1916116100ab578063dc5abc751161006f578063dc5abc7514610794578063f1942e36146107bf578063f2fde38b146107e8578063f3ad43bf14610811578063fb2677e41461082d57610219565b8063c95a1916146106c3578063c9689194146106ec578063cd05a0e714610729578063d7c94efd14610752578063db2e21bc1461077d57610219565b80638e3db958116100f25780638e3db958146105dc5780638e67e04914610607578063acedf07c14610632578063b1bafc701461065b578063c45c592e1461068657610219565b8063817d78511461053457806383e280d91461055f578063886f5e8e146105885780638da5cb5b146105b157610219565b80634026f6be116101a65780635f82c53a116101755780635f82c53a1461046157806367b633f81461048c578063715018a6146104c95780637711a7c3146104e05780637e1889611461050957610219565b80634026f6be146103b95780634da9d77b146103e25780634ec7cf401461040d57806355b0f73d1461043857610219565b8063158ea64f116101ed578063158ea64f146102d657806319df5d88146102ff57806320f3e64e1461033c57806324ca984e146103655780632ad65e131461038e57610219565b80623e16921461021e5780630d220789146102475780631282a85a14610270578063149388f4146102ad575b600080fd5b34801561022a57600080fd5b5061024560048036038101906102409190611dc6565b61086a565b005b34801561025357600080fd5b5061026e60048036038101906102699190611e51565b61088f565b005b34801561027c57600080fd5b5061029760048036038101906102929190611e51565b610a0b565b6040516102a49190611e8d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611dc6565b610a2b565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190611ede565b610a50565b005b34801561030b57600080fd5b5061032660048036038101906103219190611ede565b610a62565b6040516103339190611f1a565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190611e51565b610a95565b005b34801561037157600080fd5b5061038c60048036038101906103879190611e51565b610c10565b005b34801561039a57600080fd5b506103a3610dc4565b6040516103b09190611f44565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190611e51565b610dca565b005b3480156103ee57600080fd5b506103f7610e16565b6040516104049190611f44565b60405180910390f35b34801561041957600080fd5b50610422610e1c565b60405161042f9190611f1a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190611e51565b610e42565b005b34801561046d57600080fd5b50610476610fbe565b6040516104839190611e8d565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190611e51565b610fd1565b6040516104c09190611e8d565b60405180910390f35b3480156104d557600080fd5b506104de610ff1565b005b3480156104ec57600080fd5b5061050760048036038101906105029190611ede565b611005565b005b34801561051557600080fd5b5061051e611017565b60405161052b9190611e8d565b60405180910390f35b34801561054057600080fd5b5061054961102a565b6040516105569190611f44565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190611e51565b611030565b005b34801561059457600080fd5b506105af60048036038101906105aa9190611f5f565b6111e4565b005b3480156105bd57600080fd5b506105c6611302565b6040516105d39190611f1a565b60405180910390f35b3480156105e857600080fd5b506105f161132b565b6040516105fe9190611f44565b60405180910390f35b34801561061357600080fd5b5061061c611331565b6040516106299190611f44565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190611ede565b611337565b005b34801561066757600080fd5b50610670611349565b60405161067d9190611f44565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190611e51565b611353565b6040516106ba9190611e8d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190611ede565b611373565b005b3480156106f857600080fd5b50610713600480360381019061070e9190611ede565b611385565b6040516107209190611f1a565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190611e51565b6113b8565b005b34801561075e57600080fd5b50610767611533565b6040516107749190611f44565b60405180910390f35b34801561078957600080fd5b50610792611539565b005b3480156107a057600080fd5b506107a9611597565b6040516107b69190611f44565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190611ede565b61159d565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190611e51565b6115af565b005b61082b60048036038101906108269190612299565b611635565b005b34801561083957600080fd5b50610854600480360381019061084f9190611e51565b611c07565b6040516108619190611e8d565b60405180910390f35b610872611c27565b80600960006101000a81548160ff02191690831515021790555050565b610897611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061233f565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a7906123ab565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610a33611c27565b80600960016101000a81548160ff02191690831515021790555050565b610a58611c27565b8060048190555050565b600f6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a9d611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061233f565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90612417565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c18611c27565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90612483565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c6000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060076000815480929190610dbc906124d2565b919050555050565b60035481565b610dd2611c27565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4a611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd9061233f565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a906123ab565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b610ff9611c27565b6110036000611cae565b565b61100d611c27565b8060058190555050565b600960009054906101000a900460ff1681565b60045481565b611038611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90612483565b60405180910390fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f6000600854815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860008154809291906111dc906124d2565b919050555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612566565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167ff7a17c87edea9e385949b0fe99598418a5263dc5be5d82bd5190654faa1895a888888888886040516112f0959493929190612586565b60405180910390a45050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60055481565b60075481565b61133f611c27565b8060028190555050565b6000600354905090565b600e6020528060005260406000206000915054906101000a900460ff1681565b61137b611c27565b8060068190555050565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c0611c27565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114439061233f565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90612417565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60025481565b611541611c27565b600047905061154e611302565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611593573d6000803e3d6000fd5b5050565b60065481565b6115a5611c27565b8060038190555050565b6115b7611c27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116209190611f1a565b60405180910390fd5b61163281611cae565b50565b600a60008260e0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612625565b60405180910390fd5b600d60008260c0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612691565b60405180910390fd5b806101000151156117a85760008160a00151116117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e906126fd565b60405180910390fd5b5b8060a0015181608001516002546117bf919061271d565b6117c9919061271d565b34101561180b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118029061279d565b60405180910390fd5b6000611815611302565b73ffffffffffffffffffffffffffffffffffffffff1660025460405161183a906127ee565b60006040518083038185875af1925050503d8060008114611877576040519150601f19603f3d011682016040523d82523d6000602084013e61187c565b606091505b50509050806118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b79061284f565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372521cc3846080015160405180604001604052808760000151815260200187602001518152508660600151338860c001518960e0015160405180604001604052806004548152602001600654815250600960019054906101000a900460ff166040518963ffffffff1660e01b815260040161197d9796959493929190612a4f565b60206040518083038185885af115801561199b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119c09190612adb565b905082610100015115611b5b57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630752881a8460a001518360006040518463ffffffff1660e01b8152600401611a30929190612b4d565b6000604051808303818588803b158015611a4957600080fd5b505af1158015611a5d573d6000803e3d6000fd5b50505050508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ab89190611f1a565b602060405180830381865afa158015611ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af99190612b8b565b6040518363ffffffff1660e01b8152600401611b16929190612bb8565b6020604051808303816000875af1158015611b35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b599190612bf6565b505b8073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f12cbbd953137d79707d6a95d385a6a413cbbeae6b8dea72939b6fa75982d36cd86600001518760200151886040015189606001518a60800151600654611be7919061271d565b42604051611bfa96959493929190612c5c565b60405180910390a4505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611c2f611d72565b73ffffffffffffffffffffffffffffffffffffffff16611c4d611302565b73ffffffffffffffffffffffffffffffffffffffff1614611cac57611c70611d72565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611ca39190611f1a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000604051905090565b600080fd5b600080fd5b60008115159050919050565b611da381611d8e565b8114611dae57600080fd5b50565b600081359050611dc081611d9a565b92915050565b600060208284031215611ddc57611ddb611d84565b5b6000611dea84828501611db1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e1e82611df3565b9050919050565b611e2e81611e13565b8114611e3957600080fd5b50565b600081359050611e4b81611e25565b92915050565b600060208284031215611e6757611e66611d84565b5b6000611e7584828501611e3c565b91505092915050565b611e8781611d8e565b82525050565b6000602082019050611ea26000830184611e7e565b92915050565b6000819050919050565b611ebb81611ea8565b8114611ec657600080fd5b50565b600081359050611ed881611eb2565b92915050565b600060208284031215611ef457611ef3611d84565b5b6000611f0284828501611ec9565b91505092915050565b611f1481611e13565b82525050565b6000602082019050611f2f6000830184611f0b565b92915050565b611f3e81611ea8565b82525050565b6000602082019050611f596000830184611f35565b92915050565b600080600080600080600080610100898b031215611f8057611f7f611d84565b5b6000611f8e8b828c01611e3c565b9850506020611f9f8b828c01611e3c565b9750506040611fb08b828c01611e3c565b9650506060611fc18b828c01611e3c565b9550506080611fd28b828c01611ec9565b94505060a0611fe38b828c01611ec9565b93505060c0611ff48b828c01611ec9565b92505060e06120058b828c01611ec9565b9150509295985092959890939650565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120638261201a565b810181811067ffffffffffffffff821117156120825761208161202b565b5b80604052505050565b6000612095611d7a565b90506120a1828261205a565b919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff8211156120d0576120cf61202b565b5b6120d98261201a565b9050602081019050919050565b82818337600083830152505050565b6000612108612103846120b5565b61208b565b905082815260208101848484011115612124576121236120b0565b5b61212f8482856120e6565b509392505050565b600082601f83011261214c5761214b6120ab565b5b813561215c8482602086016120f5565b91505092915050565b6000610120828403121561217c5761217b612015565b5b61218761012061208b565b9050600082013567ffffffffffffffff8111156121a7576121a66120a6565b5b6121b384828501612137565b600083015250602082013567ffffffffffffffff8111156121d7576121d66120a6565b5b6121e384828501612137565b602083015250604082013567ffffffffffffffff811115612207576122066120a6565b5b61221384828501612137565b604083015250606061222784828501611ec9565b606083015250608061223b84828501611ec9565b60808301525060a061224f84828501611ec9565b60a08301525060c061226384828501611e3c565b60c08301525060e061227784828501611e3c565b60e08301525061010061228c84828501611db1565b6101008301525092915050565b6000602082840312156122af576122ae611d84565b5b600082013567ffffffffffffffff8111156122cd576122cc611d89565b5b6122d984828501612165565b91505092915050565b600082825260208201905092915050565b7f6e6f742061646465640000000000000000000000000000000000000000000000600082015250565b60006123296009836122e2565b9150612334826122f3565b602082019050919050565b600060208201905081810360008301526123588161231c565b9050919050565b7f616c726561647920656e61626c65640000000000000000000000000000000000600082015250565b6000612395600f836122e2565b91506123a08261235f565b602082019050919050565b600060208201905081810360008301526123c481612388565b9050919050565b7f6e6f742076616c69640000000000000000000000000000000000000000000000600082015250565b60006124016009836122e2565b915061240c826123cb565b602082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f616c726561647920616464656400000000000000000000000000000000000000600082015250565b600061246d600d836122e2565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124dd82611ea8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361250f5761250e6124a3565b5b600182019050919050565b7f696e76616c69642063616c6c6572000000000000000000000000000000000000600082015250565b6000612550600e836122e2565b915061255b8261251a565b602082019050919050565b6000602082019050818103600083015261257f81612543565b9050919050565b600060a08201905061259b6000830188611f0b565b6125a86020830187611f35565b6125b56040830186611f35565b6125c26060830185611f35565b6125cf6080830184611f35565b9695505050505050565b7f696e76616c696420726f75746572000000000000000000000000000000000000600082015250565b600061260f600e836122e2565b915061261a826125d9565b602082019050919050565b6000602082019050818103600083015261263e81612602565b9050919050565b7f696e76616c6964206261736520746f6b656e0000000000000000000000000000600082015250565b600061267b6012836122e2565b915061268682612645565b602082019050919050565b600060208201905081810360008301526126aa8161266e565b9050919050565b7f696e76616c696420616e7469736e6970652076616c7565000000000000000000600082015250565b60006126e76017836122e2565b91506126f2826126b1565b602082019050919050565b60006020820190508181036000830152612716816126da565b9050919050565b600061272882611ea8565b915061273383611ea8565b925082820190508082111561274b5761274a6124a3565b5b92915050565b7f66656520616d6f756e74206572726f7200000000000000000000000000000000600082015250565b60006127876010836122e2565b915061279282612751565b602082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b600081905092915050565b50565b60006127d86000836127bd565b91506127e3826127c8565b600082019050919050565b60006127f9826127cb565b9150819050919050565b7f6372656174696f6e20666565206661696c656400000000000000000000000000600082015250565b60006128396013836122e2565b915061284482612803565b602082019050919050565b600060208201905081810360008301526128688161282c565b9050919050565b600060029050919050565b600081905092915050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128c95780820151818401526020810190506128ae565b60008484015250505050565b60006128e08261288f565b6128ea818561289a565b93506128fa8185602086016128ab565b6129038161201a565b840191505092915050565b600061291a83836128d5565b905092915050565b6000602082019050919050565b600061293a8261286f565b612944818561287a565b93508360208202850161295685612885565b8060005b858110156129925784840389528151612973858261290e565b945061297e83612922565b925060208a0199505060018101905061295a565b50829750879550505050505092915050565b600060029050919050565b600081905092915050565b6000819050919050565b6129cd81611ea8565b82525050565b60006129df83836129c4565b60208301905092915050565b6000602082019050919050565b612a01816129a4565b612a0b81846129af565b9250612a16826129ba565b8060005b83811015612a47578151612a2e87826129d3565b9650612a39836129eb565b925050600181019050612a1a565b505050505050565b6000610100820190508181036000830152612a6a818a61292f565b9050612a796020830189611f35565b612a866040830188611f0b565b612a936060830187611f0b565b612aa06080830186611f0b565b612aad60a08301856129f8565b612aba60e0830184611e7e565b98975050505050505050565b600081519050612ad581611e25565b92915050565b600060208284031215612af157612af0611d84565b5b6000612aff84828501612ac6565b91505092915050565b6000819050919050565b6000819050919050565b6000612b37612b32612b2d84612b08565b612b12565b611ea8565b9050919050565b612b4781612b1c565b82525050565b6000604082019050612b626000830185611f0b565b612b6f6020830184612b3e565b9392505050565b600081519050612b8581611eb2565b92915050565b600060208284031215612ba157612ba0611d84565b5b6000612baf84828501612b76565b91505092915050565b6000604082019050612bcd6000830185611f0b565b612bda6020830184611f35565b9392505050565b600081519050612bf081611d9a565b92915050565b600060208284031215612c0c57612c0b611d84565b5b6000612c1a84828501612be1565b91505092915050565b6000612c2e8261288f565b612c3881856122e2565b9350612c488185602086016128ab565b612c518161201a565b840191505092915050565b600060c0820190508181036000830152612c768189612c23565b90508181036020830152612c8a8188612c23565b90508181036040830152612c9e8187612c23565b9050612cad6060830186611f35565b612cba6080830185611f35565b612cc760a0830184611f35565b97965050505050505056fea264697066735822122062da5fb85ed58cefc40028c526909633915588a38a07cb6ee1ff591aa6db0e7c64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bbe710b32411b83a6d5a24f296ec3813864822c8
-----Decoded View---------------
Arg [0] : _sonicxPool (address): 0xBbe710B32411b83A6D5A24F296EC3813864822C8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bbe710b32411b83a6d5a24f296ec3813864822c8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.